/* FAQ Accordion Styles */
.faq-item {
    background: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-dark);
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: rgba(255, 107, 157, 0.02);
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--primary-pink);
}

.faq-item.active .faq-question {
    color: var(--primary-pink);
    border-bottom: 1px solid rgba(255, 107, 157, 0.1);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background-color: var(--white);
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 1.5rem 2rem;
}

.faq-answer p {
    margin-bottom: 1rem;
    color: var(--text-light);
    line-height: 1.6;
    text-align: left;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}
