/* LendingTree-Style FAQ Section - Clean White Design */

.faq-section {
    background: #FFFFFF;
    padding: 80px 0;
}

.faq-section .section-title {
    font-size: 32px;
    font-weight: 700;
    color: #1A1A1A;
    text-align: center;
    margin-bottom: 16px;
}

.faq-section .section-subtitle {
    font-size: 18px;
    color: #6B7280;
    text-align: center;
    margin-bottom: 60px;
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
    background: #FFFFFF;
}

.faq-item {
    border-bottom: 1px solid #E5E7EB;
    margin: 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    background: #FFFFFF !important;
    border: none !important;
    padding: 24px 20px !important;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: #1A1A1A !important;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
}

.faq-question:hover {
    background: #F9FAFB !important;
}

.faq-question i {
    color: #10b981 !important;
    font-size: 20px;
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: #FFFFFF;
    padding: 0 20px;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 20px 24px 20px;
}

.faq-answer p {
    font-size: 16px;
    line-height: 1.7;
    color: #4B5563;
    margin: 0;
}

/* Override any green backgrounds */
.faq-lt,
.faq-section-lt,
.faq-accordion-lt {
    background: #FFFFFF !important;
}

.faq-q-lt,
.faq-question-lt {
    background: #FFFFFF !important;
    color: #1A1A1A !important;
}

.faq-q-lt:hover,
.faq-question-lt:hover {
    background: #F9FAFB !important;
}
