/* ===================================================
   FAQ
   =================================================== */

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

.faq-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.faq-header {
    text-align: center;
    margin-bottom: 2rem;
}

.faq-header h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.faq-header .subtitle {
    color: #666;
    font-size: 0.95rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1rem 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
}

.faq-question svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    background-color: #f9fafb;
}

.faq-answer p {
    padding: 1rem 1.25rem;
    margin: 0;
    color: #444;
    line-height: 1.6;
}

.faq-footer {
    margin-top: 2.5rem;
    text-align: center;
}

.faq-footer p {
    margin-bottom: 1rem;
    color: #555;
}
