.afm-faq-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.afm-category-title {
    margin-top: 40px;
    margin-bottom: 15px;
    font-size: 28px;
    font-weight: 700;
}

.afm-faq-item {
    border: 1px solid #e5e5e5;
    margin-bottom: 12px;
    border-radius: 8px;
    overflow: hidden;
}

.afm-question {
    background: #f7f7f7;
    padding: 18px;
    cursor: pointer;
    font-weight: 600;
    position: relative;
}

.afm-question:after {
    content: "+";
    position: absolute;
    right: 20px;
    font-size: 22px;
}

.afm-question.active:after {
    content: "-";
}

.afm-answer {
    display: none;
    padding: 18px;
    background: #fff;
}