.accordion {
    width: 100%;
}

.accordion-item {
    border-bottom: 1px solid #ddd;
}

/* Letztes Akkordeon-Element ohne unteren Strich */
.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    background-color: white;
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
    color: #072C4D;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.accordion-header span {
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header span {
    transform: rotate(180deg);
}

.accordion-content {
    display: none;
    padding: 15px;
    font-size: 14px;
    text-align: left; /* Links ausgerichteter Text */
    background-color: transparent; /* Hintergrundfarbe entfernen */
}

.accordion-item.active .accordion-content {
    display: block;
}