/* --- Help Page Layout --- */
.help-search-form {
    display: flex;
    margin-bottom: 30px;
}

.help-search-input {
    flex-grow: 1;
    padding: 12px 15px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px 0 0 4px;
}

.help-search-btn {
    padding: 0 20px;
    border: 1px solid var(--mz-two);
    background: var(--mz-two);
    color: white;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

.help-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .help-layout {
        grid-template-columns: 200px 1fr; /* Sidebar + Content */
    }
}

/* --- Navigation --- */
.help-nav {
    position: sticky;
    top: 20px;
    align-self: start;
}

.help-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.help-nav a {
    display: block;
    padding: 8px 12px;
    text-decoration: none;
    color: #333;
    border-radius: 4px;
    font-weight: 500;
}

.help-nav a:hover {
    background: #f0f0f0;
}

/* --- Content --- */
.help-section {
    margin-bottom: 40px;
}

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

.help-item {
    border-bottom: 1px solid #eee;
    padding: 15px 0;
}

.help-item summary {
    font-weight: 600;
    cursor: pointer;
    list-style: none; /* Marker entfernen */
    position: relative;
    padding-right: 25px;
}

.help-item summary::-webkit-details-marker {
    display: none;
}

.help-item summary::after {
    content: '+';
    position: absolute;
    right: 5px;
    top: 0;
    font-size: 1.2rem;
    color: #999;
}

.help-item[open] summary::after {
    content: '−';
}

.help-answer {
    padding: 15px 10px 0 10px;
    line-height: 1.6;
    color: #555;
}

.help-item-topic {
    margin-top: 15px;
    font-size: 0.8rem;
    color: #999;
}

/* --- Mobile --- */
@media (max-width: 767px) {
    .help-nav {
        display: none; /* Sidebar auf Mobile ausblenden */
    }
}
