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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

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

/* Header Styles */
header {
    background-color: #2c3e50;
    color: white;
    padding: 20px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

header h1 {
    font-size: 24px;
    margin-bottom: 15px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

nav a:hover {
    background-color: #34495e;
}

nav a.active {
    background-color: #3498db;
}

/* Main Content Styles */
main {
    min-height: calc(100vh - 200px);
    padding: 40px 0;
}

.hero {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    text-align: center;
}

.hero h2 {
    color: #2c3e50;
    font-size: 32px;
    margin-bottom: 15px;
}

.hero .lead {
    font-size: 18px;
    color: #555;
    margin-bottom: 0;
}

.content {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.content h2 {
    color: #2c3e50;
    font-size: 28px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #3498db;
}

.content h3 {
    color: #2c3e50;
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.content p {
    margin-bottom: 15px;
    text-align: justify;
}

.content ul {
    margin-left: 30px;
    margin-bottom: 15px;
}

.content li {
    margin-bottom: 8px;
}

.content a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.content a:hover {
    color: #2980b9;
    text-decoration: underline;
}

.last-updated {
    font-style: italic;
    color: #777;
    font-size: 14px;
    margin-bottom: 20px !important;
}

/* Footer Styles */
footer {
    background-color: #2c3e50;
    color: white;
    padding: 20px 0;
    text-align: center;
    margin-top: 40px;
}

footer p {
    margin-bottom: 10px;
}

footer a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #5dade2;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    header h1 {
        font-size: 20px;
    }

    nav ul {
        flex-direction: column;
        gap: 10px;
    }

    .hero {
        padding: 30px 20px;
    }

    .hero h2 {
        font-size: 24px;
    }

    .hero .lead {
        font-size: 16px;
    }

    .content {
        padding: 30px 20px;
    }

    .content h2 {
        font-size: 24px;
    }

    .content h3 {
        font-size: 20px;
    }
}
