.h3p-container-4b74ea06 {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 15px 30px;
    background-color: transparent;
    position: relative;
}

.h3p-logo-col-4b74ea06 {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.h3p-logo-img-4b74ea06 {
    max-height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
}

.h3p-logo-text-4b74ea06 {
    font-weight: 700;
    font-size: 1.5rem;
    text-decoration: none;
    color: #ffffff;
}

.h3p-menu-col-4b74ea06 {
    display: flex;
    justify-content: center;
    align-items: center;
}

.h3p-nav-4b74ea06 {
    display: flex;
    align-items: center;
    gap: 10px;
}

.h3p-link-4b74ea06 {
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    transition: background-color 0.1s steps(1);
    display: inline-block;
    border-radius: 0 !important;
    color: #ffffff;
}

.h3p-link-4b74ea06:hover,
.h3p-link-4b74ea06:focus {
    text-decoration: none !important;
    border: none !important;
    outline: none !important;
    background-color: #ffffff !important;
    color: #000000 !important;
}

.h3p-social-col-4b74ea06 {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
}

.h3p-social-link-4b74ea06 {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
    color: #ffffff;
}

.h3p-social-link-4b74ea06 svg {
    fill: #ffffff;
}

.h3p-social-link-4b74ea06:hover {
    opacity: 0.7;
}

/* Explicitly remove any inherited generated decorative slashes/elements from active menu custom themes */
.h3p-logo-text-4b74ea06::before,
.h3p-logo-text-4b74ea06::after,
.h3p-link-4b74ea06::before,
.h3p-link-4b74ea06::after,
.h3p-social-link-4b74ea06::before,
.h3p-social-link-4b74ea06::after {
    content: none !important;
    display: none !important;
}

/* Hamburger button styling (hidden on Desktop) */
.h3p-hamburger-4b74ea06 {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
    z-index: 100;
}

.h3p-hamburger-line-4b74ea06 {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #ffffff;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Responsive Styles for Screen Sizes < 768px */
@media (max-width: 767px) {
    .h3p-container-4b74ea06 {
        grid-template-columns: 1fr auto;
    }
    
    .h3p-social-col-4b74ea06 {
        display: none;
    }

    /* Show hamburger icon */
    .h3p-hamburger-4b74ea06 {
        display: flex;
    }

    /* Convert menu column to full-width dropdown */
    .h3p-menu-col-4b74ea06 {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: transparent;
        padding: 20px;
        box-shadow: none;
        z-index: 99;
        opacity: 0;
        transform: translateY(-10px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    /* Show on active toggle state */
    .h3p-container-4b74ea06.active .h3p-menu-col-4b74ea06 {
        display: flex;
        opacity: 1;
        transform: translateY(0);
    }

    /* Transform hamburger to an X */
    .h3p-container-4b74ea06.active .h3p-hamburger-line-4b74ea06:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .h3p-container-4b74ea06.active .h3p-hamburger-line-4b74ea06:nth-child(2) {
        opacity: 0;
    }
    .h3p-container-4b74ea06.active .h3p-hamburger-line-4b74ea06:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .h3p-nav-4b74ea06 {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .h3p-link-4b74ea06 {
        width: 100%;
        text-align: center;
        padding: 12px 16px;
    }
}
