/* FAQ Accordion */

.faq-section {
    padding: 80px 0;
    background: var(--white);
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 2px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: var(--white);
    border: none;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-question:hover {
    background: var(--light);
}

.faq-icon {
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 20px 25px;
    margin: 0;
    color: var(--text-light);
    line-height: 1.7;
    border-top: 1px solid var(--border);
}

/* Kontakt-Section */
.kontakt-section {
    padding: 80px 0;
    background: var(--light);
}

.kontakt-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 15px;
}

.kontakt-wrapper {
    max-width: 700px;
    margin: 0 auto;
}
