.faq-section {
    padding: 140px 0;
    background-color: #F8FAFC; /* Softest gray background */
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-badge {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 700;
    color: #7C3AED;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
}

.faq-header h2 {
    font-family: 'League Spartan', sans-serif;
    font-size: 42px;
    color: #0F172A;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.faq-header p {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #64748B;
}

/* ACCORDION ITEMS */
.faq-item {
    background: #FFFFFF;
    border-radius: 16px;
    margin-bottom: 15px;
    border: 1px solid #E2E8F0;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #CBD5E1;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-family: 'League Spartan', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #0F172A;
    transition: color 0.3s ease;
}

.faq-icon {
    font-size: 14px;
    color: #94A3B8;
    transition: transform 0.3s ease;
}

/* ACTIVE STATE */
.faq-item.active {
    border-color: #7C3AED;
}

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

.faq-item.active .faq-icon {
    transform: rotate(45deg); /* Turns Plus into an X */
    color: #7C3AED;
}

/* THE ANSWER DRAWER */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
    padding: 0 30px 30px 30px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #475569;
}

.faq-list {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
}

.faq-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 15px;
}

.faq-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #7C3AED;
    font-weight: bold;
}

.faq-list li strong {
    color: #0F172A;
    font-family: 'League Spartan', sans-serif;
}