.mh-f08a7dde {
    padding: 15px 20px;
    background: #ffffff;
    border-bottom: 1px solid #eaeaea;
    position: relative;
    width: 100%;
}

.mh-f08a7dde .mh-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.mh-f08a7dde .mh-logo {
    font-size: 24px;
    font-weight: 700;
    color: #333333;
}

.mh-f08a7dde .mh-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #333333;
    padding: 0;
}

.mh-f08a7dde .mh-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.mh-f08a7dde .mh-nav a {
    text-decoration: none;
    color: #333333;
    font-size: 16px;
    font-weight: 500;
    transition: opacity 0.2s;
}

.mh-f08a7dde .mh-nav a:hover {
    opacity: 0.7;
}

/* Mobile Breakpoint */
@media (max-width: 768px) {
    .mh-f08a7dde .mh-container {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
    
    .mh-f08a7dde .mh-logo {
        margin-bottom: 10px;
    }

    .mh-f08a7dde .mh-toggle {
        display: block;
        margin: 0 auto;
    }
    
    .mh-f08a7dde .mh-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ffffff;
        padding: 20px;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        z-index: 999;
    }
    
    .mh-f08a7dde .mh-nav.is-open {
        display: block;
    }
    
    .mh-f08a7dde .mh-nav ul {
        flex-direction: column;
        gap: 15px;
    }
}
