/* ============================================================================
   FAQ Section CSS - Clean & Simple (wie auf dem Bild)
   ============================================================================ */

.faq-section {
    padding: var(--spacing-xxl) var(--spacing-md);
    background: var(--color-white);
}

.faq-section h2 {
    text-align: center;
    color: #2E5C9A;
    font-size: clamp(1.75rem, 4vw, 2rem);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.faq-section .section-intro {
    text-align: center;
    color: #333;
    font-size: 1rem;
    margin-bottom: var(--spacing-xl);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: #f5f5f5;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    background: var(--color-white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.faq-question {
    width: 100%;
    padding: 1rem 1.25rem;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-icon {
    width: 32px;
    height: 32px;
    background: #2E5C9A;
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 400;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

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

.faq-text {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
}

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

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

.faq-answer p {
    padding: 0 1.25rem 1rem 4rem;
    color: #666;
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
}

/* Mobile */
@media (max-width: 768px) {
    .faq-section {
        padding: var(--spacing-xl) var(--spacing-md);
    }

    .faq-section h2 {
        font-size: 1.5rem;
    }

    .faq-section .section-intro {
        font-size: 0.9375rem;
        margin-bottom: var(--spacing-lg);
    }

    .faq-accordion {
        gap: 0.625rem;
    }

    .faq-question {
        padding: 0.875rem 1rem;
        gap: 0.875rem;
    }

    .faq-icon {
        width: 28px;
        height: 28px;
        font-size: 1.125rem;
    }

    .faq-text {
        font-size: 0.875rem;
    }

    .faq-answer p {
        padding: 0 1rem 0.875rem 3.5rem;
        font-size: 0.8125rem;
    }
}
