.simple-menu-container {
    width: 100%;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 0px;
}

.simple-menu-wrapper {
    position: relative;
    background-color: transparent;
    border: none;
    border-radius: 0px;
    padding: 8px;
    padding-top: 15px;
    transition: background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.simple-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

.simple-menu > li {
    flex: 1;
    position: static;
    transition: all 0.3s ease;
    margin: 0 5px;
}

.simple-menu > li > a {
    color: white;
    display: flex;
    padding: 15px 20px;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border-radius: 99px;
    position: relative;
    background-color: transparent;
    font-size: 1.6rem;
    font-weight: 500;
    font-family: "Barlow", sans-serif;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.simple-menu > li > a::before {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 20px;
    right: 20px;
    height: 2px;
    background-color: white;
    transform: scaleX(0);
    transition: transform 0.3s ease;
    border-radius: 1px;
}

.simple-menu > li:hover > a {
    padding-bottom: 20px;
    margin-bottom: -5px;
}

.simple-menu > li:hover > a::before {
    transform: scaleX(1);
}

.simple-menu > li.last-item:hover > a {
    padding-bottom: 15px;
    margin-bottom: 0;
}

.simple-menu > li.last-item:hover > a::before {
    transform: scaleX(1);
}

.simple-menu > li > a:after {
    content: "";
    display: inline-block;
    width: 22px;
    height: 22px;
    background-image: url("/wp-content/uploads/2025/05/down-arrow.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
}

.simple-menu > li.last-item > a:after {
    content: "";
    display: inline-block;
    width: 22px;
    height: 22px;
    background-image: url("/wp-content/uploads/2025/05/down-arrow.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
}

.simple-menu > li > a:hover {
    color: white;
}

.simple-menu > li .simple-menu-dropdown {
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 999;
    padding-top: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-bottom: 0.2rem;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0 0 2rem 2rem;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    overflow-x: visible;
    margin-top: -5px;
    opacity: 0;
    transform: translateY(-10px);
    background-color: transparent;
}

/* Removed blur element - keeping only scroll indicator arrow */

.simple-menu > li .simple-menu-dropdown .scroll-indicator {
    position: sticky;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    background-image: url("/wp-content/uploads/2025/05/down-arrow.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 20;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: bounce-down 2s ease-in-out infinite;
    pointer-events: none;
    margin-top: auto;
}

/* Show scroll indicator when content is scrollable and NOT at bottom */
.simple-menu > li .simple-menu-dropdown.has-scroll:not(.at-bottom) .scroll-indicator {
    opacity: 0.9;
}
}

@keyframes bounce-down {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(4px);
    }
    60% {
        transform: translateX(-50%) translateY(2px);
    }
}

.dropdown-column {
    flex: 1;
    padding: 0 15px;
}

/* Custom scrollbar styling for dropdown when it overflows */
.simple-menu-dropdown::-webkit-scrollbar {
    width: 8px;
}

.simple-menu-dropdown::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.simple-menu-dropdown::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

.simple-menu-dropdown::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

.dropdown-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
    column-count: 1;
}

.dropdown-column ul li {
    margin-bottom: 0.5em;
    break-inside: avoid;
    position: relative;
    border-bottom: 2px solid #ffffff;
    padding-bottom: 0.5em;
}

.dropdown-column ul li:last-child {
    border-bottom: none;
}

.dropdown-column > ul > li > a {
    color: rgba(255, 255, 255, 1);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: .5rem 1.5rem .5rem 0rem;
    display: block;
    border-radius: 99px;
    font-weight: 500;
    font-size: 1.2rem;
    font-family: "Barlow", sans-serif;
}

.dropdown-column > ul > li {
    border-bottom: 2px solid #ffffff;
    padding-bottom: 0.5em;
    margin-bottom: 0.5em;
}

.dropdown-column > ul > li:last-child {
    border-bottom: none;
}

.dropdown-column ul li a:hover {
    background-color: rgba(255, 255, 255, 0.08);
    color: white;
    transform: translateX(5px);
    text-decoration: none;
    padding: .5rem 1.5rem .5rem 1.5rem;
}

/* Enhanced link styling specificity instead of !important */
.simple-menu-container .simple-menu li a,
.simple-menu-container .simple-menu li a:hover,
.simple-menu-container .simple-menu li a:focus,
.simple-menu-container .simple-menu li a:active,
.simple-menu-container .simple-menu > li > a,
.simple-menu-container .simple-menu > li > a:hover,
.simple-menu-container .simple-menu > li > a:focus,
.simple-menu-container .simple-menu > li > a:active,
.simple-menu-container .dropdown-column a,
.simple-menu-container .dropdown-column a:hover,
.simple-menu-container .dropdown-column a:focus,
.simple-menu-container .dropdown-column a:active {
    text-decoration: none;
    border-bottom: none;
    box-shadow: none;
    display: flex;
    color: white;
    width: 100%;
}

/* Remove default arrows from all dropdown items */
.dropdown-column ul li a:after {
    display: none;
}

/* Nested submenu styles for desktop */
.dropdown-column .has-children {
    position: relative;
}

.dropdown-column .has-children > a {
    cursor: pointer;
    position: relative;
}

/* Only show arrows for items that actually have children */
.dropdown-column .has-children > a:after {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url("/wp-content/uploads/2025/05/down-arrow.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: rotate(-90deg);
    position: absolute;
    right: 1rem;
    top: 50%;
    margin-top: -12px;
    transition: transform 0.3s ease;
}

.dropdown-column .has-children.open > a:after {
    transform: rotate(0deg);
}

.dropdown-column .submenu-level-2 {
    margin-left: 20px;
    border-left: 2px solid rgba(255, 255, 255, 0.3);
    padding-left: 10px;
    margin-top: 0.5em;
    display: none;
    transition: all 0.3s ease;
}

.dropdown-column a:hover {
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    transform: translateX(5px);
    text-decoration: none;
    padding: .5rem 1.5rem .5rem 1.5rem;
}

.dropdown-column .has-children.open .submenu-level-2 {
    display: block;
}

.dropdown-column .submenu-level-2 li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 0.3em;
    padding-bottom: 0.3em;
}

.dropdown-column .submenu-level-2 li:last-child {
    border-bottom: none;
}

.dropdown-column .submenu-level-2 a {
    font-size: 1.1rem;
    padding: .3rem 1rem .3rem 0rem;
}

/* Fix for 2nd level nested item arrows positioning */
.dropdown-column .submenu-level-2 .has-children > a {
    position: relative;
    padding-right: 3rem;
}

.dropdown-column .submenu-level-2 .has-children > a:after {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url("/wp-content/uploads/2025/05/down-arrow.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: rotate(-90deg);
    position: absolute;
    right: 1rem;
    top: 50%;
    margin-top: -8px;
    transition: transform 0.3s ease;
}

.dropdown-column .submenu-level-2 .has-children.open > a:after {
    transform: rotate(0deg);
}

/* Third level and deeper nesting */
.dropdown-column .submenu-level-3 {
    margin-left: 15px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 8px;
    margin-top: 0.3em;
    display: none;
    transition: all 0.3s ease;
}

.dropdown-column .submenu-level-2 .has-children.open .submenu-level-3 {
    display: block;
}

.dropdown-column .submenu-level-3 a {
    font-size: 1rem;
    padding: .2rem 0.8rem .2rem 0rem;
}

/* Fix for 3rd level nested item arrows positioning */
.dropdown-column .submenu-level-3 .has-children > a {
    position: relative;
    padding-right: 3rem;
}

.dropdown-column .submenu-level-3 .has-children > a:after {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url("/wp-content/uploads/2025/05/down-arrow.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: rotate(-90deg);
    position: absolute;
    right: 1rem;
    top: 50%;
    margin-top: -8px;
    transition: transform 0.3s ease;
}

.dropdown-column .submenu-level-3 .has-children.open > a:after {
    transform: rotate(0deg);
}

/* Fourth level nesting */
.dropdown-column .submenu-level-4 {
    margin-left: 15px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 8px;
    margin-top: 0.3em;
    display: none;
    transition: all 0.3s ease;
}

.dropdown-column .submenu-level-3 .has-children.open .submenu-level-4 {
    display: block;
}

/* Mobile nested submenu styles */
.mobile-submenu .has-submenu {
    position: relative;
}

.mobile-submenu .has-submenu > a {
    cursor: pointer;
}

.mobile-submenu .has-submenu > a:after {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url("/wp-content/uploads/2025/05/down-arrow.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: rotate(-90deg);
    flex-shrink: 0;
    position: absolute;
    right: 1rem;
    top: 50%;
    margin-top: -10px;
    transition: transform 0.3s ease;
}

.mobile-submenu .has-submenu.open > a:after {
    transform: rotate(0deg);
}

.mobile-submenu .submenu-level-2 {
    margin-left: 20px;
    border-left: 2px solid rgba(255, 255, 255, 0.3);
    padding-left: 10px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-submenu .has-submenu.open .submenu-level-2 {
    max-height: none;
}

.mobile-submenu .submenu-level-2 a {
    font-size: 0.9rem;
    padding: .3rem 1rem .3rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 0.3em;
}

.mobile-submenu .submenu-level-2 a:last-child {
    border-bottom: none;
}

/* Fix for mobile 2nd level nested item arrows */
.mobile-submenu .submenu-level-2 .has-submenu > a:after {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url("/wp-content/uploads/2025/05/down-arrow.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: rotate(-90deg);
    position: absolute;
    right: 1rem;
    top: 50%;
    margin-top: -8px;
    transition: transform 0.3s ease;
}

.mobile-submenu .submenu-level-2 .has-submenu.open > a:after {
    transform: rotate(0deg);
}

/* Third level mobile nesting */
.mobile-submenu .submenu-level-3 {
    margin-left: 15px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 8px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-submenu .submenu-level-2 .has-submenu.open .submenu-level-3 {
    max-height: none;
}

.mobile-submenu .submenu-level-3 a {
    font-size: 0.8rem;
    padding: .2rem 0.8rem .2rem 0.8rem;
}

/* Fix for mobile 3rd level nested item arrows */
.mobile-submenu .submenu-level-3 .has-submenu > a:after {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url("/wp-content/uploads/2025/05/down-arrow.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: rotate(-90deg);
    position: absolute;
    right: 1rem;
    top: 50%;
    margin-top: -8px;
    transition: transform 0.3s ease;
}

.mobile-submenu .submenu-level-3 .has-submenu.open > a:after {
    transform: rotate(0deg);
}

/* Mobile styles */
.mobile-menu-toggle {
    display: none;
    background: #007681;
    border: none;
    color: white;
    font-size: 1.5rem;
    padding: 12px;
    cursor: pointer;
    border-radius: 50%;
    position: relative;
    z-index: 1000;
    transition: all 0.3s ease;
    margin-top: 25px;
    width: 48px;
    height: 48px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.mobile-menu-toggle:hover {
    background: #005a63;
}

.mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: white;
    margin: 2px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.mobile-menu > li:nth-child(1).has-submenu.open > a {
    background-color: #BB5B28;
}

.mobile-menu > li:nth-child(2).has-submenu.open > a {
    background-color: #007681;
}

.mobile-menu > li:nth-child(3).has-submenu.open > a {
    background-color: #72246C;
}

.mobile-menu > li:nth-child(4).has-submenu.open > a {
    background-color: #000000;
}

/* Match mobile submenu background colors to top-level items */
.mobile-menu > li:nth-child(1).has-submenu.open .mobile-submenu {
    background-color: #BB5B28;
}

.mobile-menu > li:nth-child(2).has-submenu.open .mobile-submenu {
    background-color: #007681;
}

.mobile-menu > li:nth-child(3).has-submenu.open .mobile-submenu {
    background-color: #72246C;
}

.mobile-menu > li:nth-child(4).has-submenu.open .mobile-submenu {
    background-color: #000000;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.mobile-menu-overlay.active {
    opacity: 1;
    z-index: 999;
    pointer-events: auto;
}

.mobile-menu-container {
    display: none;
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: black;
    z-index: -1;
    transition: left 0.3s ease;
    overflow-y: auto;
    padding-top: 0;
    flex-direction: column;
    pointer-events: none;
}

.mobile-menu-container.active {
    left: 0;
    z-index: 1002;
    pointer-events: auto;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 10px;
    line-height: 1;
    z-index: 1001;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.mobile-menu-close:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.mobile-menu-close:before {
    content: "×";
    display: block;
}

.mobile-menu-logo {
    padding: 30px;
    text-align: left;
    padding-top: 0px;
    margin-top: 60px;
}

.mobile-menu > li > a:hover {
    color: white;
}

.mobile-menu-logo img {
    max-width: 230px!important;
    height: auto;
}

.mobile-menu {
    list-style: none;
    margin: 0;
    padding: 0 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: start;
}

.mobile-menu li {
    list-style: none;
    margin-bottom: 0em;
    border-bottom: 2px solid #ffffff;
    padding-bottom: 0.5em;
    padding-top: 0.5em;
    position: relative;
    margin-top: 0px;
}

.mobile-menu li:last-child {
    border-bottom: none;
}

.mobile-submenu li:last-child {
    border-bottom: none;
}

.mobile-menu > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgba(255, 255, 255, 1);
    text-decoration: none;
    padding: .5rem 1.5rem .5rem 1rem;
    border-radius: 8px 8px 0px 0px;
    font-weight: 500;
    font-size: 1.2rem;
    font-family: "Barlow", sans-serif;
    transition: background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                border-radius 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    text-align: left;
    border-bottom: none;
    box-shadow: none;
    background-color: transparent;
}

/* Make sure the mobile menu top-level items with submenus have arrows */
.mobile-menu .has-submenu > a:after {
    content: "";
    display: inline-block;
    width: 22px;
    height: 22px;
    background-image: url("/wp-content/uploads/2025/05/down-arrow.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    position: absolute;
    right: 1rem;
    top: 50%;
    margin-top: -11px;
    transform: rotate(-90deg);
}

.mobile-menu .has-submenu.open > a:after {
    transform: rotate(0deg);
}

.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.2);
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                background-color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.3s ease;
    margin-left: 0;
    padding-left: 0;
    border-radius: 0px 0px 2rem 2rem;
    opacity: 0;
}

.mobile-submenu.open {
    max-height: none;
    opacity: 1;
}

/* Mobile submenu item styles with proper arrow handling */
.mobile-submenu a {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 1)!important;
    text-decoration: none!important;
    padding: 1rem 1.5rem 1rem 1.5rem;
    border-bottom: 2px solid #ffffff;
    margin-bottom: 0em;
    font-size: 1rem;
    font-weight: 500;
    font-family: "Barlow", sans-serif;
    transition: none;
    position: relative;
    border-radius: 0px;
    text-align: left;
    box-shadow: none;
}

.mobile-submenu a:last-child {
    border-bottom: none;
}

.mobile-submenu > a:last-child,
.mobile-submenu > div:last-child > a {
    border-bottom: none;
}

.mobile-submenu > *:last-child a {
    border-bottom: none;
}

/* Hide arrows by default for ALL mobile submenu items */
.mobile-submenu a:after {
    display: none;
}

/* Show arrows ONLY for mobile submenu items with children - Level 1 */
.mobile-submenu .has-submenu > a:after {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url("/wp-content/uploads/2025/05/down-arrow.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: rotate(-90deg);
    flex-shrink: 0;
    position: absolute;
    right: 1rem;
    top: 50%;
    margin-top: -10px;
    transition: transform 0.3s ease;
    color:white!important;
}

.mobile-submenu .has-submenu.open > a {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border-bottom: 2px solid;
}

.mobile-menu a:active,
.mobile-menu a:focus,
.mobile-submenu a:active,
.mobile-submenu a:focus {
    color: white;
}

.mobile-submenu .has-submenu.open > a:after {
    transform: rotate(0deg);
}

/* Show arrows for Level 2 mobile items that have children */
.mobile-submenu .submenu-level-2 .has-submenu > a {
    position: relative;
    padding-right: 3rem;
}

.mobile-submenu .submenu-level-2 .has-submenu > a:after {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url("/wp-content/uploads/2025/05/down-arrow.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: rotate(-90deg);
    position: absolute;
    right: 1rem;
    top: 50%;
    margin-top: -8px;
    transition: transform 0.3s ease;
}

.mobile-submenu .submenu-level-2 .has-submenu.open > a:after {
    transform: rotate(0deg);
}

/* Show arrows for Level 3 mobile items that have children */
.mobile-submenu .submenu-level-3 .has-submenu > a {
    position: relative;
    padding-right: 3rem;
}

.mobile-submenu .submenu-level-3 .has-submenu > a:after {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url("/wp-content/uploads/2025/05/down-arrow.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: rotate(-90deg);
    position: absolute;
    right: 1rem;
    top: 50%;
    margin-top: -8px;
    transition: transform 0.3s ease;
}

.mobile-submenu .submenu-level-3 .has-submenu.open > a:after {
    transform: rotate(0deg);
}

@media (max-width: 1220px) {
    .mobile-menu-toggle {
        display: flex;
        margin-top: 25px;
    }

    .simple-menu-wrapper {
        display: none;
    }

    .mobile-menu-overlay,
    .mobile-menu-container {
        display: block;
    }
}

@media (min-width: 1221px) {
    .mobile-menu-toggle,
    .mobile-menu-overlay,
    .mobile-menu-container {
        display: none;
        pointer-events: none;
    }
}

/* Smooth hover effects for 2nd level dropdown items */
.dropdown-column .submenu-level-2 a:hover {
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    transform: translateX(5px);
    text-decoration: none;
    border-radius: 99px;
    padding: .3rem 1.5rem .3rem 1.5rem;
    transition: all 0.3s ease;
}

/* Smooth hover effects for 3rd level dropdown items */
.dropdown-column .submenu-level-3 a:hover {
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    transform: translateX(5px);
    text-decoration: none;
    border-radius: 99px;
    padding: .2rem 1.2rem .2rem 1.2rem;
    transition: all 0.3s ease;
}

/* Smooth hover effects for 4th level dropdown items */
.dropdown-column .submenu-level-4 a:hover {
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    transform: translateX(5px);
    text-decoration: none;
    border-radius: 99px;
    padding: .2rem 1rem .2rem 1rem;
    transition: all 0.3s ease;
}

/* Add smooth transitions to all nested dropdown links by default */
.dropdown-column .submenu-level-2 a,
.dropdown-column .submenu-level-3 a,
.dropdown-column .submenu-level-4 a {
    transition: all 0.3s ease;
    border-radius: 0px;
}

/* Make sure items with children also get hover effects but preserve arrow space */
.dropdown-column .submenu-level-2 .has-children > a:hover {
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    transform: translateX(5px);
    border-radius: 99px;
    padding: .3rem 3rem .3rem 1.5rem;
}

/* Font Awesome external link icon styles */

/* Desktop menu icons - make them 20% smaller */
.simple-menu-wrapper .fa-solid.fa-link,
.simple-menu-dropdown .fa-solid.fa-link {
    font-size: 0.8em; /* 20% smaller than default */
    margin-right: 6px; /* Small spacing between icon and text */
    vertical-align: middle;
    align-self:center;
}

/* Mobile menu icons - reduce left spacing/margin */
.mobile-menu .fa-solid.fa-link,
.mobile-submenu .fa-solid.fa-link {
    margin-right: 4px; /* Reduced spacing between icon and text */
    margin-left: 0; /* Remove any left margin */
    vertical-align: middle;
}

/* Additional specificity for mobile menu items */
.mobile-menu li a .fa-solid.fa-link,
.mobile-submenu a .fa-solid.fa-link {
    margin-left: 0 !important; /* Force remove left margin */
    padding-left: 0 !important; /* Force remove left padding */
}

/* Ensure icons don't interfere with text selection or click areas */
.fa-solid.fa-link {
    pointer-events: none; /* Allow clicks to pass through to the link */
    display: inline-block;
}

.dropdown-column .submenu-level-3 .has-children > a:hover {
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    transform: translateX(5px);
    border-radius: 99px;
    padding: .2rem 3rem .2rem 1.2rem;
}