.schema-faq .schema-faq-section {
    border: 2px solid var(--contrast-4);
    margin-bottom: 20px;
    background-color: #fdfeff
    border-radius: 5px;
}

.schema-faq .schema-faq-question {
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    margin: 0;
    padding: 15px 40px 15px 15px;
    line-height: 1.4;
    cursor: pointer;
    position: relative;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: block
}

.schema-faq .schema-faq-question.faq-q-open {
    border-bottom: 1px solid #d1dfee
}

.schema-faq .schema-faq-question:after {
    content: "+";
    position: absolute;
    top: 0;
    right: 15px;
    text-align: center;
    font-weight: 700;
    color: #000;
    font-size: 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.schema-faq .schema-faq-question.faq-q-open:after {
    content: "-"
}

.schema-faq p.schema-faq-answer {
    margin: 0;
    padding: 15px;
    background-color: #fff;
    font-size: 16px;
    line-height: 1.4;
    border-bottom: 1px solid #dedee0;
    display: none
}