/* Global Dropdown Navigation Structure */
nav { 
    background: #FFFFFF; 
    border-bottom: 1px solid #E5E5EA; 
    padding: 15px 40px; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    position: relative; 
    z-index: 1000; 
    font-family: 'Inter', sans-serif;
    width: 100%;
    box-sizing: border-box;
}
.nav-logo a { 
    font-weight: 700; 
    color: #1C1C1E; 
    text-decoration: none; 
    font-size: 1.25rem; 
}
.nav-links { 
    display: flex; 
    align-items: center; 
    gap: 24px; 
}
.nav-links a { 
    color: #6E6E73; 
    text-decoration: none; 
    font-weight: 500; 
    transition: 0.2s; 
    font-size: 0.95rem; 
}
.nav-links a:hover { 
    color: #1C1C1E; 
}
.dropdown { 
    position: relative; 
    display: inline-block; 
}
.dropbtn { 
    background: none; 
    border: none; 
    font-size: 0.95rem; 
    color: #6E6E73; 
    font-weight: 500; 
    cursor: pointer; 
    padding: 10px 0; 
    font-family: 'Inter', sans-serif;
}
.dropdown:hover .dropbtn { 
    color: #1C1C1E; 
}
.dropdown-content { 
    display: none; 
    position: absolute; 
    background-color: #FFFFFF; 
    min-width: 240px; 
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.1); 
    border-radius: 8px; 
    border: 1px solid #E5E5EA; 
    top: 100%; 
    left: 0; 
    padding: 10px 0; 
}
.dropdown-content a { 
    color: #1C1C1E; 
    padding: 10px 20px; 
    text-decoration: none; 
    display: block; 
    font-size: 0.9rem; 
    margin: 0;
}
.dropdown-content a:hover { 
    background-color: #f9fafb; 
    color: #0066CC; 
}
.dropdown:hover .dropdown-content { 
    display: block; 
}
#menu-toggle { 
    display: none; 
}
.menu-icon { 
    display: none; 
    font-size: 1.5rem; 
    cursor: pointer; 
    user-select: none;
}

@media(max-width: 768px){
    nav { 
        flex-direction: column; 
        align-items: flex-start; 
        padding: 20px; 
    }
    .menu-icon { 
        display: block; 
        position: absolute; 
        top: 18px; 
        right: 20px; 
    }
    .nav-links { 
        flex-direction: column; 
        align-items: flex-start; 
        width: 100%; 
        display: none; 
        margin-top: 20px; 
        gap: 10px;
    }
    #menu-toggle:checked ~ .nav-links { 
        display: flex; 
    }
    .dropdown { 
        width: 100%; 
    }
    .dropdown-content { 
        position: static; 
        box-shadow: none; 
        border: none; 
        padding-left: 15px; 
        display: block; 
        border-left: 2px solid #E5E5EA; 
        margin-top: 10px; 
        border-radius: 0; 
    }
}
