.tb-faq-page {
    padding: 72px 0 88px;
    background: #fff;
}

.tb-faq-page__head {
    max-width: 860px;
    margin: 0 auto 42px;
    text-align: center;
}

.tb-faq-page__title {
    margin: 0 0 18px;
    color: #111827;
    font-size: clamp(40px, 5vw, 62px);
    line-height: 1.08;
}

.tb-faq-page__intro {
    color: #4b5563;
    font-size: 18px;
    line-height: 1.7;
}

.tb-faq-page__intro p {
    margin: 0;
}

.tb-faq-page__list {
    display: grid;
    gap: 14px;
    max-width: 960px;
    margin: 0 auto;
}

.tb-faq-page__item {
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    background: #fff;
    overflow: hidden;
}

.tb-faq-page__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 22px 26px;
    color: #111827;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.35;
    cursor: pointer;
    list-style: none;
}

.tb-faq-page__question::-webkit-details-marker {
    display: none;
}

.tb-faq-page__question::after {
    content: "+";
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: #f3f4f6;
    color: #FC7700;
    font-size: 24px;
    line-height: 1;
}

.tb-faq-page__item[open] .tb-faq-page__question::after {
    content: "−";
    background: #FC7700;
    color: #fff;
}

.tb-faq-page__answer {
    padding: 0 26px 24px;
    color: #4b5563;
    font-size: 16px;
    line-height: 1.7;
}

.tb-faq-page__answer p {
    margin: 0;
}

.tb-faq-page__answer p + p {
    margin-top: 12px;
}

@media (max-width: 768px) {
    .tb-faq-page {
        padding: 48px 0 60px;
    }

    .tb-faq-page__head {
        text-align: left;
    }

    .tb-faq-page__question {
        padding: 18px 20px;
        font-size: 16px;
    }

    .tb-faq-page__answer {
        padding: 0 20px 20px;
    }
}
