.site-header {
    display: flex;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #fff;
    border-bottom: 1px solid #ddd;
}

.logo-link {
    text-decoration: none;
}

.logo {
    height: 75px;
    width: auto;
}

.hamburger {
    font-size: 24px;
    background: none;
    border: none;
    display: none;
    cursor: pointer;
}

.nav-links {
    display: flex;
    gap: 1rem;
    align-items: center;
    transition: all 0.3s ease;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.nav-links a:hover {
    background-color: #f0f0f0;
}

/* Dropdown styles */
.dropdown {
    position: relative;
}

.dropbtn {
    background-color: transparent;
    border: none;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    padding: 0.5rem 1rem;
    color: #333;
}

.dropbtn:hover {
    background-color: #f0f0f0;
    border-radius: 6px;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 160px;
    top: 100%;
    left: 0;
    z-index: 1;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border-radius: 6px;
    overflow: hidden;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    display: block;
    padding: 0.75rem 1rem;
    text-decoration: none;
    color: #333;
}

.dropdown-content a:hover {
    background-color: #f5f5f5;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
    }

    .nav-links.show {
        display: flex;
    }

    .dropdown-content {
        position: static;
    }

    .dropdown:hover .dropdown-content {
        display: none;
    }

    .dropdown .dropbtn::after {
        content: " ▼";
    }

    .dropdown.open .dropdown-content {
        display: block;
    }
}
