* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Home Page Styles */
.home-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    text-align: center;
}

.title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 2rem;
    color: #2c3e50;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.button-container {
    margin-top: 2rem;
}

.blog-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2rem;
    font-weight: bold;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-button:hover {
    background-color: #2980b9;
}

/* Blog Page Styles */
.blog-page {
    padding: 2rem 0;
}

.page-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.articles-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.article-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.2);
}

.article-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.article-info {
    padding: 1.5rem;
}

.article-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.article-description {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.article-date {
    color: #95a5a6;
    font-size: 0.9rem;
    font-style: italic;
}

/* Article Page Styles */
.article-page {
    padding: 2rem 0;
}

.article {
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin: 2rem 0;
}

.article .article-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    line-height: 1.2;
}

.article .article-date {
    color: #95a5a6;
    font-size: 1rem;
    margin-bottom: 2rem;
    font-style: italic;
}

.article-hero-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 5px;
    margin: 2rem 0;
}

.article-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

.article-content p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* Back Button Styles */
.back-button-container {
    margin-bottom: 2rem;
}

.back-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #95a5a6;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.back-button:hover {
    background-color: #7f8c8d;
}

/* Construction Page Styles */
.construction-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    text-align: center;
}

.construction-content {
    max-width: 700px;
    padding: 2rem;
}

.construction-title {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #e67e22;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.construction-message {
    margin-bottom: 2rem;
}

.main-message {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.sub-message {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.coming-soon {
    font-size: 1.3rem;
    color: #3498db;
    font-weight: bold;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }
    
    .title {
        font-size: 2rem;
    }
    
    .article {
        padding: 2rem 1.5rem;
    }
    
    .article .article-title {
        font-size: 2rem;
    }
    
    .articles-container {
        grid-template-columns: 1fr;
    }
    
    .construction-title {
        font-size: 2rem;
    }
    
    .construction-content {
        padding: 1rem;
    }
}