.rw-faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.rw-faq-question {
    cursor: pointer;
    position: relative;
    padding-right: 20px;
    font-size: 32px;
}

.rw-faq-question::before {
    content: '+';
    transition: transform 0.3s;
    font-size: 0.85em;
    margin: 0 10px 0 0;
    display: inline-flex;
    height: 28px;
    width: 28px;
    justify-content: center;
    align-items: center;
}

.rw-faq-item.active .rw-faq-question::before {
    content: '-';
}

.rw-faq-answer {
    display: none;
    margin-top: 10px;
    font-size: 28px;
    padding: 10px 0 0 38px;
}