/**
 * FAQ Section Styles
 * Accordion-style frequently asked questions
 */

.faq-section {
    padding: 40px 0;
    background: linear-gradient(180deg, #fafafa 0%, #fff 100%);
    border-top: 1px solid #eee;
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #d4488e, #b03a78);
    border-radius: 2px;
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

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

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

.faq-question:hover {
    color: #d4488e;
}

.faq-question svg {
    flex-shrink: 0;
    transition: transform 0.3s;
}

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

.faq-answer {
    display: none;
    padding-bottom: 20px;
}

.faq-item.is-open .faq-answer {
    display: block;
}

.faq-answer p {
    color: #555;
    line-height: 1.7;
}

.faq-cta {
    text-align: center;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.faq-cta p {
    margin-bottom: 16px;
    color: #666;
}

/* Responsive */
@media (max-width: 1024px) {
    .faq-question {
        font-size: 0.95rem;
        padding: 16px 0;
    }

    .faq-answer p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .faq-question span {
        font-size: 0.9rem;
    }
}
