/* FAQ Accordion Styles */
.faq-accordion {
    max-width: 800px;
    margin: 2rem auto;
}

.faq-item {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: white;
    border: none;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f7fafc;
}

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

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--pink-primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
    line-height: 1;
}

.faq-icon::before {
    content: '▼';
    display: inline-block;
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="false"] .faq-icon::before {
    transform: rotate(-90deg);
}

.faq-question[aria-expanded="true"] .faq-icon::before {
    transform: rotate(0deg);
}

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

.faq-answer > div {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.faq-answer.active {
    max-height: 500px;
}