.mh-2272-header {
    width: 100%;
    z-index: 999;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    position: absolute !important; /* Force absolute */
    top: 0;
    left: 0;
    background-color: transparent !important; /* Force transparency */
    background: transparent !important;
}

.mh-2272-sticky-enabled {
    /* removed relative positioning so absolute works */
}

.mh-2272-header.is-sticky {
    position: fixed !important;
    top: 0;
    left: 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    animation: slideDown2272 0.5s ease forwards;
    background-color: #ffffff !important; /* Force solid when sticky */
}

@keyframes slideDown2272 {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.mh-2272-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    background-color: transparent !important; /* Ensure inner container is transparent */
}

.mh-2272-logo img {
    max-height: 60px;
    width: 200px;
    transition: all 0.3s ease;
    background-color: transparent !important; /* Fix for Astra logo background */
}

.mh-2272-header.is-sticky .mh-2272-logo img {
    max-height: 50px;
}

.mh-2272-nav-wrapper {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

.mh-2272-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px;
}

.mh-2272-menu li {
    margin: 0;
    position: relative;
}

.mh-2272-menu a {
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    padding: 10px 0;
    display: block;
}

.mh-2272-menu a:after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: currentColor;
    transition: width 0.3s ease;
}

.mh-2272-menu a:hover:after {
    width: 100%;
}

.mh-2272-cta {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.mh-2272-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.mh-2272-mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.mh-2272-mobile-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #333;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.mh-2272-mobile-toggle span:last-child {
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .mh-2272-container {
        justify-content: space-between;
    }
    
    .mh-2272-mobile-toggle {
        display: block;
        order: 3;
    }
    
    .mh-2272-cta-wrapper {
        display: none; /* Hide CTA on mobile for space, or move to menu */
    }
    
    .mh-2272-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 20px;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        display: none;
        border-top: 1px solid #eee;
    }
    
    .mh-2272-nav.is-open {
        display: block;
    }
    
    .mh-2272-menu {
        flex-direction: column;
        gap: 15px;
    }
    
    .mh-2272-menu a:after {
        display: none;
    }
}