.ats-faq-section {
    padding: 60px 0;
    background: var(--color-background, #F8F9FA);
}

.faq-header {
    text-align: center;
    margin-bottom: 48px;
}

.faq-eyebrow {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-primary, #4D6AFF);
    margin-bottom: 8px;
}

.faq-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--color-black, #111111);
}

.faq-subtitle {
    font-size: 0.9375rem;
    color: var(--color-text-light, #4A4A4A);
    max-width: 600px;
    margin: 0 auto;
}

.ats-faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.ats-faq-accordion .faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.ats-faq-accordion .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    cursor: pointer;
}
.ats-faq-accordion .faq-question h3 { font-size: 0.9375rem; font-weight: 600; margin: 0; }
.ats-faq-accordion .faq-question i {
    font-size: 14px;
    color: #8A8A8A;
    transition: transform 0.2s ease;
}
.ats-faq-accordion .faq-item.active .faq-question i { transform: rotate(180deg); color: #4D6AFF; }

.ats-faq-accordion .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
}
.ats-faq-accordion .faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 20px 20px 20px;
}
.ats-faq-accordion .faq-answer p { font-size: 0.875rem; color: #4A4A4A; margin: 0; }

@media (max-width: 767px) {
    .ats-faq-section { padding: 40px 0; }
    .faq-title { font-size: 1.5rem; }
}