            /* Global Styles */
:root {
    --primary: #2c6e49;
    --secondary: #4c956c;
    --accent: #fefee3;
    --light: #f8f9fa;
    --dark: #212529;
    --success: #28a745;
    --warning: #ffc107;
    --danger: #dc3545;
    --info: #17a2b8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--light);
    padding-top: 80px; /* Match this with your navbar height */
}

/* Navigation Styles */
nav {
    background-color: #ffffff;
    padding: 0 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: 80px; /* Fixed height for consistency */
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    z-index: 1001;
}

.logo img {
    height: 50px; /* Slightly smaller for mobile */
    margin-right: 10px;
}

.logo-text h1 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 0;
}

.logo-text p {
    font-size: 0.8rem;
    color: var(--secondary);
    margin-bottom: 0;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--dark);
    text-decoration: none;
    padding: 1.5rem 1rem;
    display: block;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-link:hover {
    background-color: var(--primary);
    color: var(--accent);
}

/* Dropdown Menu Styles */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--light);
    width: 200px;
    opacity: 0;
    visibility: hidden;
    list-style: none;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1001;
    border-radius: 0 0 4px 4px;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown-link {
    color: var(--dark);
    text-decoration: none;
    padding: 0.75rem 1rem;
    display: block;
    transition: all 0.3s ease;
}

.dropdown-link:hover {
    background-color: var(--secondary);
    color: var(--accent);
}

/* Nested Dropdown Styles */
.dropdown-menu .dropdown-menu {
    top: 0;
    left: 100%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--primary);
    font-size: 1.8rem;
    cursor: pointer;
    padding: 1rem;
    z-index: 1001;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .nav-link {
        padding: 1.5rem 0.75rem;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 60px; /* Smaller padding for mobile */
    }
    
    nav {
        height: 60px; /* Smaller navbar on mobile */
        padding: 0 1rem;
    }
    
    .logo img {
        height: 40px; /* Smaller logo on mobile */
    }
    
    .mobile-menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background-color: var(--primary);
        flex-direction: column;
        align-items: center;
        padding: 1rem 0;
        transition: all 0.4s ease;
        overflow-y: auto;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-item {
        width: 100%;
        text-align: center;
    }

    .nav-link {
        padding: 1rem;
        color: var(--accent);
    }

    .nav-link:hover {
        background-color: var(--secondary);
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        background-color: rgba(0, 0, 0, 0.1);
        box-shadow: none;
        transition: max-height 0.4s ease;
    }

    .dropdown-menu.active {
        max-height: 500px; /* Adjust based on your content */
    }

    .dropdown-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .dropdown-link {
        color: var(--accent);
        padding: 0.75rem 1rem;
    }

    .dropdown-link:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }
}

@media (max-width: 480px) {
    .logo-text h1 {
        font-size: 1.2rem;
    }
    
    .logo-text p {
        display: none; /* Hide tagline on very small screens */
    }
}