/* Container für die FAQs - Schön zentriert und begrenzt */
.faq-container {
    max-width: 800px;
    margin: 40px auto 60px auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Einzelnes FAQ Element - Jetzt als stabiler Block */
.faq-item {
    background-color: #1a1a1a;
    border: 1px solid rgba(197, 131, 93, 0.2);
    margin-bottom: 20px;
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: block; /* Zwingt das Element zur vollen Breite */
    width: 100%;
}

.faq-item:hover {
    border-color: #c5835d;
    box-shadow: 0 5px 15px rgba(197, 131, 93, 0.15);
}

/* Der Frage-Button - Gestrafft und auf 100% Breite gezwungen */
.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #1a1a1a;
    border: none;
    outline: none;
    text-align: left;
    padding: 20px 25px;
    font-size: 1.1rem;
    font-family: 'Georgia', serif;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    box-sizing: border-box;
}

/* Kleiner edler Pfeil nach unten */
.faq-question::after {
    content: '▼';
    font-size: 0.8rem;
    color: #c5835d;
    transition: transform 0.3s ease;
    margin-left: 15px;
}

.faq-item:hover .faq-question {
    color: #c5835d;
}

/* Die Antwort-Box (fließt sanft auf) */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    padding: 0 25px;
    background-color: #141414;
    box-sizing: border-box;
}

.faq-answer p {
    color: #ccc;
    line-height: 1.6;
    margin: 15px 0;
    font-size: 1rem;
}

.faq-answer strong {
    color: #fff;
}

/* --- AKTIVER ZUSTAND (wenn aufgeklappt via JS) --- */
.faq-item.active {
    border-color: #c5835d;
}

.faq-item.active .faq-question {
    color: #c5835d;
    background-color: #222222;
}

.faq-item.active .faq-question::after {
    transform: rotate(180deg); /* Pfeil dreht sich elegant um */
}

.faq-item.active .faq-answer {
    max-height: 500px; /* Genug Raum für den Text */
    padding: 15px 25px 25px 25px;
    border-top: 1px solid rgba(197, 131, 93, 0.2);
}