/* ===================================
   FAQ FIX - MODERNE KLASSEN
   =================================== */

.faq-modern {
    margin-bottom: 1.5rem;
    background: var(--light-beige, #F5F0ED);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-modern:hover {
    box-shadow: 0 4px 15px rgba(138, 109, 93, 0.1);
}

.faq-question-modern {
    padding: 1.5rem;
    cursor: pointer;
    user-select: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
    font-size: 1.125rem;
    margin: 0;
    color: var(--primary-brown, #8A6D5D);
    position: relative;
}

.faq-question-modern::after {
    content: '+';
    font-size: 1.75rem;
    font-weight: 300;
    color: var(--primary-brown, #8A6D5D);
    transition: transform 0.3s ease;
    margin-left: 1rem;
    flex-shrink: 0;
}

.faq-question-modern:hover {
    background: rgba(138, 109, 93, 0.05);
}

.faq-answer-modern {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-modern p {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
    color: var(--text-dark, #2C2C2C);
    line-height: 1.6;
}

/* Active State */
.faq-modern.active .faq-question-modern::after {
    transform: rotate(45deg);
}

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

/* Mobile Optimierung */
@media (max-width: 768px) {
    .faq-question-modern {
        font-size: 1rem;
        padding: 1.25rem;
    }
    
    .faq-question-modern::after {
        font-size: 1.5rem;
    }
    
    .faq-answer-modern p {
        padding: 0 1.25rem 1.25rem;
        font-size: 0.9375rem;
    }
}
