header {
    background-color: #7E8639;
    color: #ffffff;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.8rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 55px !important;
    width: auto !important;
    max-width: 2000px;
    display: block;
    object-fit: contain;
}

nav {
    display: flex;
    align-items: center;
}

nav ul {
    display: flex !important;
    list-style: none;
    gap: 0.8rem;
    align-items: center;
    margin: 0;
    padding: 0;
    background: transparent !important;
    position: static !important;
    box-shadow: none !important;
}

nav a {
    color: #e2e8f0;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.4rem 0.5rem;
    border-radius: 4px;
    white-space: nowrap;
    transition: color 0.3s ease;
}

nav a:hover, 
nav a.active {
    color: var(--soft-yellow, #FFF3B0);
    background-color: rgba(255, 255, 255, 0.08);
}

.nav-btn-login {
    border: 1px solid var(--cadet-blue, #5B8C9A);
    background-color: var(--cadet-blue, #5B8C9A);
    color: #ffffff !important;
    padding: 0.4rem 0.8rem !important;
    border-radius: 20px !important;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 1024px) {
    .mobile-toggle {
        display: block !important;
    }

    header nav ul {
        display: none !important;
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        background-color: var(--deep-ocean-blue, #1F2937) !important;
        flex-direction: column !important;
        align-items: stretch !important;
        padding: 1.5rem !important;
        gap: 1rem !important;
        box-shadow: 0 10px 20px rgba(0,0,0,0.3) !important;
        border-top: 1px solid rgba(255,255,255,0.1) !important;
    }

    header nav ul.show {
        display: flex !important;
    }

    header nav a {
        display: block;
        font-size: 1rem;
        padding: 0.7rem;
        white-space: normal;
        text-align: center;
    }

    .nav-btn-login {
        text-align: center;
    }
}