.help-section {
    margin-bottom: 30px;
}

.help-section h2 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

details.help-item {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    margin-bottom: 10px;
    overflow: hidden;
}

details.help-item summary {
    padding: 15px;
    cursor: pointer;
    font-weight: 600;
    background-color: #f9f9f9;
    list-style: none; /* Dreieck ausblenden (optional) */
    transition: background 0.2s;
}

details.help-item summary:hover {
    background-color: #f0f7ff;
}

details.help-item .help-answer {
    padding: 15px;
    border-top: 1px solid #eee;
    line-height: 1.6;
}