.fh-f9f068f7-wrapper {
    position: relative;
    padding-top: 20px;
    display: flex;
    justify-content: center;
    width: 100%;
    font-family: system-ui, -apple-system, sans-serif;
    z-index: 99;
}
.fh-f9f068f7-container {
    position: relative;
    background-color: rgba(255, 255, 255, 0.7); /* Default glassmorphism bg */
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
    width: 95%;
    max-width: 1200px;
    box-shadow: 0 10px 40px -10px rgba(0,0,0,0.1);
}
.fh-f9f068f7-mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.fh-f9f068f7-mobile-toggle svg {
    fill: #111827;
}

.fh-f9f068f7-logo {
    flex: 1;
    display: flex;
    justify-content: flex-start; /* Aligned left */
}
.fh-f9f068f7-logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
}
.fh-f9f068f7-logo img {
    max-height: 100%;
    max-width: 200px;
    object-fit: contain;
}
.fh-f9f068f7-site-title {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
}

.fh-f9f068f7-nav {
    flex: 2;
    display: flex;
    justify-content: center;
}
.fh-f9f068f7-menu {
    list-style: none;
    display: flex;
    gap: 24px;
    margin: 0;
    padding: 0;
}
.fh-f9f068f7-menu a {
    text-decoration: none;
    color: #4b5563;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s ease;
}
.fh-f9f068f7-menu a:hover {
    color: #111827;
}

.fh-f9f068f7-cta {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}
.fh-f9f068f7-btn {
    background: #111827;
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
}
.fh-f9f068f7-btn svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
}
.fh-f9f068f7-btn:hover {
    background: #000000;
    transform: translateY(-1px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .fh-f9f068f7-container {
        flex-wrap: wrap;
        padding: 12px 20px;
        justify-content: space-between;
    }
    .fh-f9f068f7-logo {
        flex: 0 0 auto;
        justify-content: flex-start;
    }
    .fh-f9f068f7-cta {
        display: none; /* Hide CTA on mobile */
    }
    .fh-f9f068f7-mobile-toggle {
        display: block;
        flex: 0 0 auto;
    }
    .fh-f9f068f7-nav {
        display: none;
        width: 100%;
        order: 4;
        margin-top: 15px;
        flex-basis: 100%;
    }
    .fh-f9f068f7-nav.is-open {
        display: flex;
        justify-content: center;
    }
    .fh-f9f068f7-menu {
        flex-direction: column;
        gap: 15px;
        align-items: center;
        padding-bottom: 15px;
        width: 100%;
    }
}