
    * { margin: 0; padding: 0; box-sizing: border-box; }
    body { font-family: 'Inter', sans-serif; }
    .aone-navbar {
        padding: 0 5%;
        border-bottom: 1px solid #eee;
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 75px;
        position: sticky;
        top: 0;
        background: white;
        z-index: 1050;
    }

    .logo img { height: 45px; width: auto; vertical-align: middle; }

    .nav-links { 
        display: flex; 
        height: 100%; 
        align-items: center; 
    }

    .nav-item-link {
        text-decoration: none;
        color: #333;
        padding: 0 15px;
        font-size: 15px;
        font-weight: 500;
        height: 100%;
        display: flex;
        align-items: center;
        transition: 0.3s;
    }
    .nav-item-link:hover { color: #0082a4; }

    .mega-dropdown { 
        height: 100%; 
        display: flex; 
        align-items: center; 
        position: static; 
    }
    
    .dropdown-trigger {
        display: flex;
        align-items: center;
        height: 100%;
        padding: 0 15px;
        cursor: pointer;
        color: #333;
        font-size: 15px;
        font-weight: 500;
        gap: 5px;
    }
    .mega-menu {
        opacity: 0;
        visibility: hidden;
        position: absolute;
        top: 75px;
        left: 0; 
        width: 100%;
        background: #ffffff;
        border-top: 1px solid #eee;
        border-bottom: 2px solid #0082a4;
        padding: 40px 5%;
        display: flex;
        justify-content: space-between;
        z-index: 1060;
        box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        transition: all 0.3s ease;
        pointer-events: none;
        transform: translateY(10px);
    }

    @media (min-width: 1025px) {
        .mega-dropdown:hover .mega-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
            pointer-events: auto;
        }
        .mega-dropdown:hover .chevron { transform: rotate(180deg); }

        #resourcesMega {
            justify-content: flex-start !important;
            gap: 250px !important; 
        }
        #resourcesMega .menu-col:first-child {
            padding-left: 150px !important; 
            flex: 0 0 auto;
        }
        #resourcesMega .menu-col {
            flex: 0 0 auto;
        }
    }

    .menu-col { flex: 1; padding: 0 15px; }
    .menu-col h4 {
        font-size: 12px;
        text-transform: uppercase;
        margin-bottom: 12px;
        color: #0082a4;
        border-left: 2px solid #0082a4;
        padding-left: 8px;
    }

    .menu-item-link {
        display: flex !important;
        align-items: center !important;
        gap: 12px;
        padding: 8px 0 !important;
        text-decoration: none;
        transition: 0.3s;
    }

    .menu-item-link img {
        height: 32px; 
        width: 35px;
        object-fit: contain;
        flex-shrink: 0; 
    }

    .menu-item-link span {
        font-size: 14px;
        color: #666;
    }

    .menu-item-link:hover span { color: #0082a4; }

    .icon1 {
        /* background-color: #dfe4ff; */
        border-radius: 4px;
        padding: 2px;
    }

    .talk-expert-col p {
        font-size: 13px;
        line-height: 1.5;
        color: #777;
        margin-bottom: 15px;
    }

    .header-actions { display: flex; align-items: center; gap: 12px; height: 100%; }

    .btn-meeting, .global-btn-box {
        background: #001c3d; 
        color: white;
        padding: 10px 18px;
        border-radius: 6px;
        text-decoration: none;
        font-size: 14px;
        font-weight: 600;
        transition: 0.3s;
        white-space: nowrap;
        display: flex;
        align-items: center;
        gap: 6px;
        cursor: pointer;
        border: none;
    }
    .btn-meeting:hover, .global-btn-box:hover { background: #0082a4; transform: translateY(-2px); }

    .global-wrapper { position: relative; height: 100%; display: flex; align-items: center; }
    
    .country-dropdown {
        position: absolute;
        top: 75px;
        right: 0;
        width: 180px;
        background: white;
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        border: 1px solid #eee;
        border-radius: 4px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: 0.3s;
        padding: 10px 0;
        z-index: 1100;
    }
    
    @media (min-width: 1025px) {
        .global-wrapper:hover .country-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
    }

    .country-item {
        padding: 10px 15px;
        font-size: 14px;
        color: #333;
        display: flex;
        align-items: center;
        gap: 10px;
        text-decoration: none;
        transition: 0.2s;
    }
    .country-item:hover { background: #f8f9fa; color: #0082a4; }
    .country-item img { height: 20px; width: auto; border-radius: 2px; }

    .mobile-btn { display: none; cursor: pointer; color: #333; font-size: 24px; }
    .overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 1040; backdrop-filter: blur(2px); }

    @media (max-width: 1024px) {
        .nav-links { 
            display: block !important; 
            position: fixed;
            top: 0; 
            right: -320px; 
            width: 300px; 
            height: 100vh;
            background: #fff;
            padding: 70px 0 30px 0;
            z-index: 1045;
            box-shadow: -10px 0 25px rgba(0,0,0,0.1);
            overflow-y: auto; 
            transition: right 0.4s ease; 
        }
        .nav-links.active {
            right: 0;
        }
        .header-actions .btn-meeting, .header-actions .global-wrapper { display: none; }
        .mobile-btn { display: block; }
        .overlay.active { display: block; }
        
        .nav-item-link, .dropdown-trigger { 
            width: 100%; 
            padding: 15px 25px; 
            border-bottom: 1px solid #f8f8f8; 
            height: auto; 
            justify-content: space-between;
        }

        .mega-dropdown {
            flex-direction: column;
            align-items: flex-start;
            height: auto;
        }

        .mega-menu {
            position: relative !important;
            top: 0 !important; 
            transform: none !important;
            display: none; 
            padding: 15px 25px !important;
            box-shadow: none !important; 
            flex-direction: column !important;
            background: #f9f9f9 !important; 
            border: none !important;
            opacity: 1; 
            visibility: visible; 
            pointer-events: auto;
            width: 100%;
        }

        .menu-col {
            padding: 10px 0;
            width: 100%;
        }

        #resourcesMega { gap: 0 !important; }
        #resourcesMega .menu-col:first-child { padding-left: 0 !important; }
        
        .dropdown-trigger.active-trigger .chevron {
            transform: rotate(180deg);
        }
    }