.faq-container {
        width: 100%;
    }

    .faq-item {
        background-color: var(--card); /* #1e293b */
        border-radius: 16px;
        margin-bottom: 16px;
        border: 1px solid transparent;
        transition: all 0.3s ease;
        overflow: hidden; /* Wichtig für die Animation der Höhe */
    }

    .faq-item:hover {
        border-color: var(--primary);
        box-shadow: 0 10px 25px rgba(124, 58, 237, 0.2);
        transform: translateY(-2px);
    }

    .faq-question {
        padding: 20px 25px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        font-weight: 600;
        color: white;
        font-size: 1.1rem;
        transition: background-color 0.2s;
        background-color: var(--card);
    }

    .faq-question i {
        color: var(--primary);
        font-size: 1.2rem;
        transition: transform 0.4s ease; /* Sanftere Rotation */
    }

    .faq-item.active .faq-question i {
        transform: rotate(180deg);
    }

    .faq-answer {
        max-height: 0;
        padding: 0 25px;
        background-color: rgba(0, 0, 0, 0.2); /* Leichter Kontrast zum Item */
        color: #cbd5e1;
        color: #487d49;
        line-height: 1.7;
        overflow: hidden;
        transition: max-height 0.4s ease-out, padding 0.3s ease;
        border-bottom-left-radius: 16px;
        border-bottom-right-radius: 16px;
    }

    .faq-item.active .faq-answer {
        max-height: 500px; /* Großzügiger Wert für längere Antworten */
        padding: 20px 25px 25px 25px; /* Padding nur, wenn sichtbar */
    }

    /* Responsive Anpassungen */
    @media (max-width: 768px) {
        .faq-question {
            padding: 18px 20px;
            font-size: 1rem;
        }
        .faq-item.active .faq-answer {
            padding: 15px 20px 20px 20px;
        }
    }