.title-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 40px;
}

.questions {
    max-width: 788px;
    margin: 0 auto;
}

.questions-group {
    padding-bottom: 64px;
}

.questions_group_title {
    font-family: "AcuminProCondExtraLight" !important;
    font-weight: unset;
    padding: 20px 0;
}

.qa-pair {
    padding: 35px 0;
    border-bottom: 1px solid var(--neutral30);

    .question {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .answer {
        display: none;
        padding-top: 20px;
    }

    .toggle-answer {
        min-width: unset;
        height: 46px;
        padding: 0 15px;
        cursor: pointer;
    }
}

.qa-pair.open .answer {
    display: block;
}
