body {
    background-color: #FFFFFF;
    margin: 0;
    padding: 20px;
    font-family: Arial, sans-serif;
}

.accordion {
    max-width: 600px;
    margin: 0 auto;
}

.accordion-item {
    border-bottom: 1px solid #f39200;
}

.accordion-button {
    background-color: #FFFFFF;
    color: #000000;
    cursor: pointer;
    padding: 15px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 18px;
    transition: background-color 0.3s ease, color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-button:hover {
    background-color: #F5F5F5;
}

.accordion-button::after {
    content: '\25BC';  /* Unicode für nach unten zeigenden Pfeil */
    font-size: 12px;
    color: rgb(243, 243, 243);
    transition: transform 0.5s;
    background-color: #f39200da;  /* Hintergrundfarbe des Kreises */
    border-radius: 50%;  /* Macht den Hintergrund rund */
    padding: 5px;  /* Platz um das Symbol */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;  /* Breite des Kreises */
    height: 24px;  /* Höhe des Kreises */
    flex-shrink: 0;
}

.accordion-button.active {
    background-color: #F5F5F5;
}

.accordion-button.active::after {
    transform: rotate(180deg);
}

.accordion-content {
    padding: 15px;
    background-color: white;
    display: none;
    font-size: 16px;
    border: 1px solid #F5F5F5;
    overflow: hidden;  /* Verhindert das Überlaufen des Inhalts */
    max-height: 0;  /* Initiale max-height auf 0 setzen */
    transition: max-height 0.5s ease-out;  /* Transition für max-height */
}

.accordion-content.show {
    display: block;  /* Sicherstellen, dass der Inhalt angezeigt wird */
    max-height: 1000px;  /* Eine ausreichend große Höhe, um den gesamten Inhalt anzuzeigen */
}

.button-benni {
    background-color: #F39200;
    padding: 13px;
    text-decoration: none;
    color: white;
    text-transform: uppercase;
    border-radius: 8px;
    font-weight: bold;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    margin: 50px 0;   
}

@media (max-width: 600px) {
    .accordion {
        width: 100%;
        padding: 0 10px;
    }

    .accordion-button {
        font-size: 16px;
        padding: 12px;
    }
}
