.st-faq-wrapper {
    margin-top: 40px;
    margin-bottom: 40px;
}

.st-faq-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.st-faq-item {
    border-bottom: 1px solid #dcdcdc;
    padding: 12px 0;
}

.st-faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    font-size: 18px;
    font-weight: 600;
    padding: 12px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.st-faq-icon {
    transition: transform 0.3s ease;
}

.st-faq-question.active .st-faq-icon {
    transform: rotate(45deg);
}

.st-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
}

.st-faq-answer.open {
    max-height: 600px;
    margin-top: 8px;
}
