/* Grundlegende Stile für die FAQ-Seite */
.faq-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.faq-page h1 {
    text-align: center;
    color: #2d3748;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.faq-section {
    background: #ffffff;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.faq-section h2 {
    color: #4a5568;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    border-bottom: 2px solid #6750a4;
    padding-bottom: 0.5rem;
}

/* FAQ Items Styling */
.faq-section dl {
    margin-bottom: 20px;
}

.faq-section dt {
    font-weight: 600;
    margin-bottom: 8px;
    cursor: pointer;
    padding: 15px 20px;
    background-color: #f8f9fa;
    border-radius: 10px;
    transition: all 0.4s ease;
    position: relative;
    padding-left: 45px;
    color: #2d3748;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.faq-section dt::before {
    content: '+';
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2em;
    color: #6750a4;
    transition: all 0.4s ease;
}

.faq-section dt:hover {
    background-color: #f0f0f0;
    transform: translateX(5px);
}

.faq-section dd {
    margin: 0 0 15px 0;
    line-height: 1.7;
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.6s ease;
    background-color: #ffffff;
    border-radius: 0 0 10px 10px;
    color: #4a5568;
}

.faq-section dt.active {
    background-color: #6750a4;
    color: white;
    border-radius: 10px 10px 0 0;
}

.faq-section dt.active::before {
    content: '−';
    color: white;
    transform: translateY(-50%) rotate(180deg);
}

.faq-section dd.active {
    max-height: 500px;
    padding: 20px;
    margin-bottom: 15px;
    border: 1px solid #e2e8f0;
    border-top: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-page {
        padding: 1rem;
    }

    .faq-section {
        padding: 1.5rem;
    }

    .faq-page h1 {
        font-size: 2rem;
    }

    .faq-section h2 {
        font-size: 1.5rem;
    }

    .faq-section dt {
        padding: 12px 15px 12px 40px;
    }

    .faq-section dt::before {
        left: 15px;
    }
}
