.kc-faq-section {
    margin: 50px 0;
}

.kc-faq-title {
    font-size: 32px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 24px;
}

.kc-faq-list {
    display: flex;
    flex-direction: column;
}

.kc-faq-item {
    border-bottom: 1px solid #e5e7eb;
    padding: 22px 0;
}

.kc-faq-item:first-child {
    border-top: 1px solid #e5e7eb;
}

.kc-faq-question-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;
}

.kc-faq-question {
    flex: 1;
    font-size: 17px;
    font-weight: 700;
    color: #111827;
    line-height: 1.4;
}

.kc-faq-toggle {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #9637b2;
    color: #9637b2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 1;
    font-weight: 400;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.kc-faq-question-wrapper.active .kc-faq-toggle {
    transform: rotate(135deg);
}

.kc-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), margin 0.35s ease;
    color: #374151;
    font-size: 15px;
    line-height: 1.7;
}

.kc-faq-answer p {
    margin: 0 0 12px;
}

.kc-faq-answer p:last-child {
    margin-bottom: 0;
}

.kc-faq-question-wrapper.active + .kc-faq-answer {
    max-height: 600px;
    margin-top: 14px;
}

@media (max-width: 767px) {
    .kc-faq-title {
        font-size: 26px;
    }
    .kc-faq-question {
        font-size: 15px;
    }
    .kc-faq-toggle {
        width: 30px;
        height: 30px;
        font-size: 16px;
    }
}
