.faq-page {
    padding: 60px 0 80px;
}

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

.faq-header h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
}

.faq-header p {
    font-size: 15px;
    color: #6b7280;
    margin: 0;
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

.faq-item {
    border-bottom: 1px solid #e5e7eb;
}

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

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 24px;
    background: transparent;
    border: none;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    cursor: pointer;
    gap: 16px;
    transition: background .15s ease;
}

.faq-question:hover {
    background: #f9fafb;
}

.faq-question[aria-expanded="true"] {
    color: #43b02a;
}

.faq-chevron {
    flex-shrink: 0;
    color: #9ca3af;
    transition: transform .25s ease;
}

.faq-question[aria-expanded="true"] .faq-chevron {
    transform: rotate(180deg);
    color: #43b02a;
}

.faq-answer {
    padding: 0 24px;
    overflow: hidden;
}

.faq-answer.show {
    padding: 0 24px 20px;
}

.faq-answer p {
    font-size: 14px;
    line-height: 1.75;
    color: #6b7280;
    margin: 0;
    max-width: 100%;
}

.faq-empty {
    text-align: center;
    padding: 48px;
    color: #9ca3af;
    font-size: 14px;
}

@media (max-width: 767px) {
    .faq-page {
        padding: 40px 0 60px;
    }
    .faq-header h1 {
        font-size: 1.5rem;
    }
    .faq-question {
        padding: 18px 20px;
        font-size: 14px;
    }
    .faq-answer {
        padding: 0 20px;
    }
    .faq-answer.show {
        padding: 0 20px 18px;
    }
}

/* CTA Section */
.faq-cta {
    max-width: 720px;
    margin: 48px auto 0;
    text-align: center;
    padding: 32px;
    background: #f9fafb;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.faq-cta h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin: 0 0 8px 0;
}

.faq-cta p {
    font-size: 14px;
    color: #6b7280;
    margin: 0 0 20px 0;
}

.faq-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #111827;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.1s ease;
}

.faq-cta-btn:hover {
    background: #fc9135;
    color: #ffffff;
    text-decoration: none;
}

.faq-cta-btn:active {
    transform: scale(0.98);
}

@media (max-width: 767px) {
    .faq-cta {
        padding: 24px 20px;
        margin-top: 32px;
    }
}
