/* --- SEKTION 9: FAQ --- */

.faq-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 40px;
    background: transparent;
    min-height: 100vh;
}

/* Header */
.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-label {
    color: var(--primary-orange);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 16px;
}

.faq-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin: 0 0 16px 0;
}

.faq-subtitle {
    font-size: 1.1rem;
    color: #9ca3af;
    margin: 0;
}

/* --- FAQ CONTAINER (Die Liste) --- */
.faq-container {
    width: 100%;
    max-width: 900px;
    background-color: #0c0b09; /* Sehr dunkel */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    /* Damit die Ecken auch beim ersten/letzten Item rund bleiben */
    overflow: hidden; 
}

/* Einzelnes Item */
.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: background-color 0.2s;
}

.faq-item:last-child {
    border-bottom: none;
}

/* Active State (Wenn offen) */
.faq-item.active {
    background-color: rgba(255, 255, 255, 0.02);
}

/* Der sichtbare Frage-Teil */
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    user-select: none;
}

/* Hover Effekt */
.faq-question:hover {
    background-color: rgba(255, 255, 255, 0.01);
}

.q-left {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #e4e4e7; /* Heller Text */
    font-weight: 600;
    font-size: 1rem;
}

.q-icon {
    color: var(--primary-orange);
    display: flex;
    align-items: center;
}

/* Der Pfeil rechts */
.q-chevron {
    color: #71717a;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
}

/* Pfeil drehen wenn aktiv */
.faq-item.active .q-chevron {
    transform: rotate(180deg);
    color: white;
}

/* Der Antwort-Teil (versteckt per default) */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: rgba(0,0,0,0.2); /* Etwas dunklerer Hintergrund für Antwort */
}

.answer-content {
    /* HIER GEÄNDERT: Von 0 auf 20px oben */
    padding: 20px 24px 24px 60px; 
    
    color: #9ca3af;
    font-size: 0.95rem;
    line-height: 1.6;
    
    /* Optional: Damit es oben eine feine Trennlinie gibt */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* --- FOOTER --- */
.faq-footer {
    text-align: center;
    margin-top: 60px;
    color: #71717a;
}
.faq-footer p { margin-bottom: 8px; font-size: 0.95rem; }

.support-mail {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
}
.support-mail:hover { text-decoration: underline; }

/* Responsive */
@media (max-width: 600px) {
    .faq-title { font-size: 2rem; }
    .q-left { font-size: 0.9rem; gap: 12px; }
    .answer-content { padding-left: 24px; } /* Weniger Einrückung auf Handy */
}