/* ============================================================
   BH FAQ Section
   ============================================================ */

.bh-faq {
    padding: 60px 0;
    background-color: #f3f4fb !important;
}

.bh-faq__title {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 42px;
    line-height: 119%;
    color: var(--text);
    text-align: center;
    margin: 0 0 48px;
}

/* ── List ── */
.bh-faq__list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 960px;
    margin: 0 auto;
}

/* ── Item ── */
.bh-faq__item {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--grey-3);
border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.25s;
}

.bh-faq__item--open {
   
}

/* ── Question button ── */
.bh-faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 18px;
    line-height: 1.4;
    color: var(--text);
    font-family: var(--font-family);
font-weight: 600;
font-size: 20px;
line-height: 140%;
color: #0c0c0c;
}

.bh-faq__question:hover {
    color: var(--blue-1);
}

/* ── Icon ── */
.bh-faq__icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.bh-faq__item--open .bh-faq__icon {
    transform: rotate(45deg);
}

/* ── Answer ── */
.bh-faq__answer {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s ease;
    will-change: max-height;
}

.bh-faq__answer-inner {
    padding: 0 24px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.65;
    color: var(--grey-4);
}

.bh-faq__answer-inner p{
    font-family: var(--font-family);
font-weight: 500;
font-size: 18px;
line-height: 144%;
color: var(--grey-4);
}

.bh-faq__item--open .bh-faq__answer-inner {
    padding-bottom: 24px;
}

.bh-faq__answer-inner p {
    margin: 0 0 12px;
}

.bh-faq__answer-inner p:last-child {
    margin-bottom: 0;
}

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 768px) {
    .bh-faq {
        padding: 40px 0;
    }

    .bh-faq__title {
        font-size: 28px;
        margin-bottom: 32px;
    }

    .bh-faq__question {
        font-size: 16px;
        padding: 18px 16px;
    }

    .bh-faq__answer-inner {
        padding: 0 16px;
        font-size: 15px;
    }

    .bh-faq__item--open .bh-faq__answer-inner {
        padding-bottom: 18px;
    }
}
