.ph-8b181fa8-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
    background-color: #ffffff;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    position: relative;
    width: 100%;
    box-sizing: border-box;
    transition: box-shadow 0.3s ease;
}

.ph-8b181fa8-header.has-shadow {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.ph-8b181fa8-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 12px;
}

.ph-8b181fa8-logo-wrapper {
    width: 50px;
    height: 50px;
    background-color: #2D4B22;
    padding: 5px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ph-8b181fa8-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.ph-8b181fa8-text-group {
    display: flex;
    flex-direction: column;
}

.ph-8b181fa8-title {
    font-weight: 800;
    font-size: 18px;
    line-height: 1.1;
    letter-spacing: 0.5px;
}

.ph-8b181fa8-subtitle {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    line-height: 1;
    margin-top: 2px;
}

.ph-8b181fa8-nav {
    display: flex;
    align-items: center;
}

.ph-8b181fa8-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 25px;
}

.ph-8b181fa8-menu-item {
    position: relative;
}

.ph-8b181fa8-menu-link {
    text-decoration: none;
    font-size: 15px;
    color: #4A4A4A;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    display: inline-block;
    transition: color 0.3s ease;
}

.ph-8b181fa8-menu-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: transparent;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.ph-8b181fa8-menu-link:hover {
    color: #2D4B22;
}

.ph-8b181fa8-menu-link:hover::after {
    transform: scaleX(1);
    background-color: #2D4B22;
}

.ph-8b181fa8-menu-link.is-active {
    font-weight: 600;
    color: #2D4B22;
}

.ph-8b181fa8-menu-link.is-active::after {
    transform: scaleX(1);
    background-color: #2D4B22;
}

.ph-8b181fa8-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffffff !important;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    transition: transform 0.2s, background-color 0.3s;
}

.ph-8b181fa8-btn:hover {
    transform: translateY(-1px);
    opacity: 0.95;
}

.ph-8b181fa8-btn-icon svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.ph-8b181fa8-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 22px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.ph-8b181fa8-toggle span {
    width: 100%;
    height: 2px;
    background-color: #2D4B22;
    transition: all 0.3s ease;
}

@media (max-width: 991px) {
    .ph-8b181fa8-toggle {
        display: flex;
    }

    .ph-8b181fa8-toggle.is-open span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .ph-8b181fa8-toggle.is-open span:nth-child(2) {
        opacity: 0;
    }

    .ph-8b181fa8-toggle.is-open span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .ph-8b181fa8-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        box-shadow: 0 4px 10px rgba(0,0,0,0.08);
        padding: 20px;
        z-index: 99;
    }

    .ph-8b181fa8-nav.is-open {
        display: block;
    }

    .ph-8b181fa8-menu {
        flex-direction: column;
        gap: 15px;
    }

    .ph-8b181fa8-cta-wrapper {
        display: none;
    }
}
