/* =============================== */
/* GLOBAL NORMALIZATION (SAFE)     */
/* =============================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

ul, ol, li {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}


/* =============================== */
/* MENU WRAPPER                    */
/* =============================== */
.menu-98347 {
    width: 100%;
    background: #ffffff;
    padding: 10px 0;
    display: flex;
    justify-content: center;
}


/* =============================== */
/* TOP LEVEL MENU                  */
/* =============================== */
#top-menu {
    display: flex !important;
    justify-content: center;  /* FIX HUGE SPACES */
    align-items: center;
    width: 100%;
    gap: 40px; /* Adjust spacing between links */
}


#top-menu > li {
    text-align: center;
    width: auto !important; /* FIX stretching / broken layout */
}


/* =============================== */
/* TOP LEVEL LINKS                 */
/* =============================== */
.nav-link-98347 {
    color: #0879BC;
    font-size: 18px;
    font-weight: 400;
    white-space: nowrap !important; /* FIX broken words */
    transition: 0.25s ease;
}

.nav-link-98347:hover {
    text-decoration: underline;
    color: #055c8c;
}


/* =============================== */
/* DROPDOWN CONTAINER              */
/* =============================== */
.dropdown-98347 {
    position: relative;
}

.dropdown-menu-98347 {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%); /* Center dropdown */
    background: white;
    border: 1px solid #ddd;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    min-width: 220px;
    padding: 10px 0;
    z-index: 1000;
}


/* Show dropdown on hover */
.dropdown-98347:hover .dropdown-menu-98347 {
    display: block;
    animation: fadeIn-98347 0.25s ease forwards;
}

@keyframes fadeIn-98347 {
    from {
        opacity: 0;
        transform: translate(-50%, 10px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}


/* =============================== */
/* DROPDOWN LINKS                  */
/* =============================== */
.dropdown-item-98347 {
    display: block;
    font-size: 16px;
    color: #0879bc;
    padding: 10px 15px;
    text-align: center;
    white-space: nowrap;
    transition: 0.25s ease;
}

.dropdown-item-98347:hover {
    background: #f1f1f1;
    color: #555;
}
