body {
    font-family: Arial, sans-serif;
    background: #f4f4f4;
}

.whole-page {
    max-width: 800px;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 20px;
}

.space {
    margin: auto;
    margin-top: 20px;
}

/* Einzelnes FAQ */
.faq-item {
    background: white;
    margin-top: 2px;
    margin-bottom: 2px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.simple-bar {
  max-width: 800px;
  margin: auto;
  width: 100%;
  height: 2px;
  background-color: #b1b1b1;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;

    width: 100%;
    color: black;
    border: none;
    padding: 20px;
    text-align: left;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #ffffff;
    transition: max-height 0.4s ease;
    padding: 0 20px;
}

/* Inhalt der Antwort */

.faq-answer p {
    padding: 10px;
    margin: 0;
    color: #333;
}

/* Geöffneter Zustand */
.faq-answer.open {
    max-height: 500px;
}