/* FAQ Accordions */
.faq-section {
    margin-bottom: 7rem;
    position: relative;
    z-index: 10;
}

.faq-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.faq-section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.faq-section-desc {
    color: hsl(var(--muted-foreground));
    font-size: 1.1rem;
    line-height: 1.5;
    text-align: center;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding: 0 1.5rem;
}

.faq-item {
    background: hsl(var(--card) / 0.3);
    border: 1px solid hsl(var(--border) / 0.5);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question-btn {
    width: 100%;
    background: transparent;
    border: none;
    padding: 1.5rem;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'Oswald', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: hsl(var(--foreground));
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: hsl(var(--muted) / 0.15);
}

.faq-answer-inner {
    padding: 1.5rem;
    color: hsl(var(--muted-foreground));
    font-size: 0.975rem;
    line-height: 1.6;
    border-top: 1px solid hsl(var(--border) / 0.3);
}

.faq-icon-arrow {
    transition: transform 0.3s ease;
    color: hsl(var(--primary));
}

.faq-item.active .faq-icon-arrow {
    transform: rotate(180deg);
}

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