.faq-section {
    margin: 15px 10% !important;
    padding: 40px 20px;
}

.faq-main-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
    text-align: center;
}
.faq-main-title::after {
    content: '';
    display: block;
    width: 150px;
    height: 3px;
    background: #fa6d0c;
    margin: 12px auto 0;
    border-radius: 2px;
}
.faq-item {
    padding: 0;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 12px;
    background: none !important;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    text-align: right;
    transition: color 0.2s;
    border-bottom: 1px solid #fa6d0c;
    margin-bottom: 0 !important;
}
.faq-question:hover,
.faq-item.active .faq-question {
    color: #fa6d0c !important;
}

.faq-icon {
    flex-shrink: 0;
    font-size: 22px;
    font-weight: 300;
    color: #888;
    transition: color 0.2s;
    width: 24px;
    text-align: center;
}
.faq-item.active .faq-icon {
    color: #fa6d0c;
}

.faq-title-text {
    flex: 1;
}

.faq-answer {
    display: none;
    flex-direction: row;
    padding: 15px 12px;
    border-bottom: 1px solid #fa6d0c;
    border-top: none;
}
.faq-answer-inner {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
}