.section-faqs {
    background-color: #21251F;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 0 96px;
}

.faqs-wrapper {
    margin: 64px 90px;
    gap: 64px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.faqs-tabs {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background-color: #F8F8EE;
    border-radius: 8px;
    padding: 16px 12px;
}

.faqs-tab {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 100%;
    padding: 0 20px;
}

.faqs-tab-text {
    height: 22px;
    font-size: 18px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.faqs-tabs-divider {
    width: 1px;
    height: 16px;
    background-color: #121417;
    border-radius: 0;
    opacity: 0.5;
}

.faqs-tabs .faqs-tab {}

.faqs-tabs .faqs-tab:active {}

.faqs-sections {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    color: #F8F8EE;
    width: 100%;
}

.faqs-section {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
}

.faqs-section-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
    width: 100%;
}

.faqs-section-title {
    font-size: 24px;
    font-weight: 600;
    border: 1px gray solid;
    width: 100%;
    padding: 16px 24px;
    box-sizing: border-box;
}

.faqs-qa-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    border-bottom: 1px gray solid;
    padding: 20px 0;
}

.faqs-qa-item-question {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}

.faqs-qa-item-question-text {
    font-size: 18px;
    font-weight: 600;
}

.faqs-qa-item-question-text-toggle {

}

.faqs-qa-item-answer {
    font-size: 16px;
    font-weight: 600;
    line-height: 150%;
    color: #F8F8EE60;
}