.yingfang-faq {
    padding: 20px 0 50px;
}

.yingfang-faq .faq-title {
    color: var(--color-primary);
    font-family: var(--title-font-family);
    font-size: var(--font-32);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.yingfang-faq .faq-content {
    margin-top: var(--gap-50);
}

.faq-wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-wrap .faq-item {
    padding: 20px 30px;
    border-radius: 10px;
    background: #F4F8F8;
    transition: all 0.3s;
}

.faq-item .faq-question {
    color: #000;
    font-family: var(--font-family);
    font-size: var(--font-20);
    font-style: normal;
    font-weight: 500;
    line-height: 1.5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    cursor: pointer;
}

.faq-item .faq-question svg {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question svg {
    transform: rotate(90deg);
}

.faq-item .faq-answer {
    color: #FFF;
    font-family: var(--font-family);
    font-size: var(--font-20);
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    padding-right: var(--gap-100);
}

.faq-item.active {
    background: linear-gradient(90deg, #F0200F 0%, #FE6F63 132.28%);
}

.faq-item.active .faq-question {
    color: #fff;
}

.faq-item.active .faq-question svg path {
    fill: #fff;
}



@media screen and (max-width: 768px) {
    .yingfang-faq .faq-content {
        margin-top: 30px;
    }
    .faq-wrap .faq-item {
        padding: 15px 20px;
    }
}
