*,
*::before,
*::after {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
    font-family: 'Lora', serif;
    background-color: #F8F5E9; /* Crisp ivory */
    color: #2E2E2E; /* Charcoal gray */
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4rem;
    background-color: #1A3C34; /* Deep emerald green */
    color: #F8F5E9;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.navbar .logo {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #D4A017; /* Golden amber */
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
}

.nav-links a {
    color: #F8F5E9;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #D4A017; /* Golden amber */
}

.hero {
    background: linear-gradient(to bottom, #1A3C34, #2F5A50); /* Emerald green gradient */
    color: #F8F5E9;
    text-align: center;
    padding: 8rem 2rem;
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-family: 'Cinzel', serif;
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #F8F5E9;
}

.hero p {
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #E0D9C9; /* Lightened ivory for contrast */
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #D4A017; /* Golden amber */
    color: #1A3C34;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease, color 0.3s ease;
}

.btn:hover {
    background-color: #B88C14;
    color: #F8F5E9;
    transform: translateY(-3px);
}

.btn.secondary {
    background-color: transparent;
    border: 2px solid #D4A017;
    color: #D4A017;
}

.btn.secondary:hover {
    background-color: #D4A017;
    color: #1A3C34;
}

.about {
    padding: 5rem 2rem;
    text-align: center;
    background-color: #FFF;
}

.about h2 {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #A63A2F; /* Rich terracotta */
    margin-bottom: 1.5rem;
}

.about p {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 2rem;
    color: #2E2E2E;
}

.reports {
    padding: 5rem 2rem;
    background-color: #F8F5E9; /* Crisp ivory */
}

.reports h2 {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #A63A2F; /* Rich terracotta */
    text-align: center;
    margin-bottom: 3rem;
}

.report-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.report-card {
    background-color: #FFF;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.report-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.report-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: #A63A2F; /* Rich terracotta */
    margin-bottom: 1rem;
}

.report-card p {
    font-size: 1rem;
    font-weight: 400;
    color: #2E2E2E;
    margin-bottom: 1.5rem;
}

.cta {
    background-color: #A63A2F; /* Rich terracotta */
    color: #F8F5E9;
    text-align: center;
    padding: 4rem 2rem;
}

.cta h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta p {
    font-size: 1.2rem;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.footer {
    background-color: #1A3C34; /* Deep emerald green */
    color: #F8F5E9;
    padding: 4rem 2rem;
    text-align: center;
}

.footer h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer p {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.social-links a {
    color: #D4A017; /* Golden amber */
    text-decoration: none;
    font-size: 1.1rem;
    margin: 0 1rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #B88C14; /* Darker golden amber */
}

.subfooter {
    background-color: #123029; /* Darker emerald green */
    color: #F8F5E9;
    padding: 1.5rem;
    text-align: center;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1rem 2rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 1rem;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .about h2, .reports h2, .cta h2 {
        font-size: 2rem;
    }

    .report-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 5rem 1rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}