body {
    background: #0f0f10;
    font-family: Arial, sans-serif;
    color: white;
    margin: 20px;
}

h1 {
    text-align: center;
    color: #e63946;
}

form {
    text-align: center;
    margin-bottom: 20px;
}

.accordion {
    width: 600px;
    margin: 0 auto;
}

.accordion-item {
    background: #1a1b1e;
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid #2a2b2f;
}

.accordion-header {
    padding: 15px 20px;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.3s;
}

.accordion-header:hover {
    background: #232429;
}

.accordion-header span {
    color: #e63946; /* rotes Highlight */
    margin-right: 8px;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: #141518;
}

.accordion-content ul {
    list-style: none;
    padding: 10px 20px 20px 30px;
    margin: 0;
}

.accordion-content li {
    padding: 8px 0;
    border-bottom: 1px solid #25262b;
    cursor: pointer;
}

.accordion-content li:hover {
    color: #e63946; /* rotes Highlight */
}