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

.faq-wrapper {
    max-width: 800px;
    margin: 60px auto;
    padding: 0 20px;
}

.faq-wrapper h1 {
    font-size: 36px;
    color: #E88CA7;
    text-align: center;
    margin-bottom: 8px;
    font-family: 'Sour Gummy', sans-serif;
}

.faq-subtitle {
    text-align: center;
    color: #999;
    font-size: 15px;
    margin-bottom: 48px;
}

.faq-category {
    margin-bottom: 36px;
}

.faq-category h2 {
    font-size: 16px;
    color: #E88CA7;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    font-weight: 600;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    margin-bottom: 10px;
    overflow: hidden;
}

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

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

.faq-question .arrow {
    font-size: 12px;
    color: #E88CA7;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 12px;
}

.faq-question.open .arrow {
    transform: rotate(180deg);
}

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

.faq-answer.open {
    max-height: 300px;
    padding: 0 24px 20px;
}

.faq-answer p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.faq-cta {
    text-align: center;
    padding: 40px 20px;
    background: #FDF1F3;
    border-radius: 16px;
    margin-top: 40px;
}

.faq-cta h2 {
    font-size: 22px;
    color: #E88CA7;
    margin-bottom: 8px;
    font-family: 'Sour Gummy', sans-serif;
}

.faq-cta p {
    color: #999;
    margin-bottom: 20px;
    font-size: 14px;
}