.hb-wrapper-ba705e77 {
    position: relative;
    padding: 100px 20px;
    background-color: #103925;
    background-image: radial-gradient(circle at 85% 50%, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0) 40%);
    overflow: hidden;
    font-family: var(--e-global-typography-primary-font-family, inherit);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
}

/* Subtle moon shape background */
.hb-wrapper-ba705e77::before {
    content: '';
    position: absolute;
    right: -10%;
    top: 50%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    box-shadow: inset 80px 0 0 rgba(255, 255, 255, 0.02);
    pointer-events: none;
}

.hb-content-ba705e77 {
    position: relative;
    z-index: 10;
    max-width: 900px;
    width: 100%;
    text-align: center;
}

/* Badge */
.hb-badge-wrapper-ba705e77 {
    margin-bottom: 30px;
}
.hb-badge-ba705e77 {
    display: inline-block;
    padding: 6px 16px;
    border: 1px solid #dcb25b;
    border-radius: 50px;
    color: #dcb25b;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: rgba(220, 178, 91, 0.05);
}

/* Typography */
.hb-title-ba705e77 {
    font-size: clamp(2.5rem, 5vw, 5rem);
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 24px;
    font-weight: 500;
    font-family: "Playfair Display", Georgia, serif; /* Elegant serif fallback */
}
.hb-highlight-ba705e77 {
    color: #dcb25b;
    font-style: italic;
}
.hb-desc-ba705e77 {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #a5b5a8;
    max-width: 650px;
    margin: 0 auto 40px auto;
}

/* Search Form */
.hb-search-wrapper-ba705e77 {
    margin-bottom: 40px;
    width: 100%;
}
.hb-search-form-ba705e77 {
    display: flex;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 6px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    max-width: 800px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 8px;
    align-items: stretch;
}

.hb-select-wrapper-ba705e77,
.hb-input-wrapper-ba705e77 {
    display: flex;
    align-items: center;
    position: relative;
}

.hb-select-wrapper-ba705e77 {
    flex: 0 0 auto;
    min-width: 140px;
}

/* Custom Dropdown Styling */
.hb-select-ba705e77 {
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 0.95rem;
    padding: 15px 30px 15px 15px;
    cursor: pointer;
    outline: none;
    font-weight: 500;
}
.hb-select-wrapper-ba705e77::after {
    content: '▼';
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.6rem;
    color: #a5b5a8;
    pointer-events: none;
}
.hb-select-ba705e77 option {
    background: #103925; /* Dark background for options */
    color: #fff;
    padding: 10px;
}

/* Divider */
.hb-select-wrapper-ba705e77::before {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255, 255, 255, 0.15);
}

.hb-input-wrapper-ba705e77 {
    flex: 1;
    min-width: 180px;
}
.hb-search-input-ba705e77 {
    width: 100%;
    background: transparent;
    border: none;
    color: #ffffff;
    padding: 15px 15px;
    font-size: 1rem;
    outline: none;
}
.hb-search-input-ba705e77::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.hb-search-btn-ba705e77 {
    background: #dcb25b;
    color: #103925;
    border: none;
    padding: 15px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.hb-search-btn-ba705e77:hover {
    background: #e8c373;
    transform: translateY(-1px);
}

/* Quick Links Grid */
.hb-tags-grid-ba705e77 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    max-width: 800px;
    margin: 0 auto;
}

.hb-tag-ba705e77 {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: #ffffff;
    text-decoration: none !important;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
}
.hb-tag-ba705e77:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    color: #ffffff;
}

/* Responsive Overrides */
@media (max-width: 768px) {
    .hb-wrapper-ba705e77 {
        padding: 40px 15px;
        min-height: auto;
    }
    
    .hb-wrapper-ba705e77::before {
        display: none;
    }

    .hb-title-ba705e77 {
        margin-bottom: 16px;
        font-size: 2.2rem;
    }

    .hb-desc-ba705e77 {
        font-size: 1rem;
        margin-bottom: 24px;
    }

    .hb-search-form-ba705e77 {
        flex-direction: column;
        padding: 16px;
        background: rgba(255, 255, 255, 0.05); /* Slight bg on mobile for visibility */
        border: 1px solid rgba(255, 255, 255, 0.1);
        gap: 12px;
        border-radius: 16px;
    }

    .hb-select-wrapper-ba705e77,
    .hb-input-wrapper-ba705e77,
    .hb-search-btn-ba705e77 {
        width: 100%;
        border-radius: 8px;
        flex: 1 1 auto;
    }

    .hb-select-wrapper-ba705e77,
    .hb-input-wrapper-ba705e77 {
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.15);
    }

    .hb-select-wrapper-ba705e77::before {
        display: none;
    }
    
    .hb-select-ba705e77 {
        padding: 14px 30px 14px 15px;
    }

    .hb-search-input-ba705e77 {
        padding: 14px 15px;
    }

    .hb-search-btn-ba705e77 {
        padding: 14px 20px;
        width: 100%; 
        margin-top: 4px;
    }

    .hb-tags-grid-ba705e77 {
        gap: 8px;
    }

    .hb-tag-ba705e77 {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .hb-wrapper-ba705e77 {
        padding: 30px 10px;
    }
    .hb-title-ba705e77 {
        font-size: 2rem; 
    }
    
    .hb-badge-ba705e77 {
        font-size: 0.7rem;
        padding: 5px 12px;
    }
}