.help-search {
    max-width: 600px;
    margin: 0 auto 32px;
}

.help-search input {
    width: 100%;
    padding: 16px 48px 16px 16px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.help-search input:focus {
    outline: none;
    border-color: var(--primary);
}

.help-category {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 24px;
    overflow: hidden;
}

.help-category-header {
    background: linear-gradient(135deg, #FEF3C7, #FDE68A);
    padding: 20px 24px;
    border-bottom: 2px solid #d97706;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    user-select: none;
}

.help-category-header:hover {
    background: linear-gradient(135deg, #FDE68A, #FCD34D);
}

.help-category-icon {
    font-size: 1.75rem;
}

.help-category-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #92400E;
    flex: 1;
    margin: 0;
}

.help-category-toggle {
    font-size: 1.5rem;
    color: #92400E;
    transition: transform 0.3s;
}

.help-category.collapsed .help-category-toggle {
    transform: rotate(-90deg);
}

.help-category-content {
    max-height: 2000px;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.help-category.collapsed .help-category-content {
    max-height: 0;
}

.help-item {
    border-bottom: 1px solid var(--border);
}

.help-item:last-child {
    border-bottom: none;
}

.help-question {
    padding: 16px 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    transition: background 0.2s;
    user-select: none;
}

.help-question:hover {
    background: var(--bg-alt);
}

.help-question-icon {
    font-size: 1.25rem;
    transition: transform 0.3s;
}

.help-item.active .help-question-icon {
    transform: rotate(90deg);
}

.help-question-text {
    flex: 1;
    font-weight: 600;
    color: var(--text);
    margin: 0;
}

.help-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.help-item.active .help-answer {
    max-height: 1000px;
}

.help-answer-content {
    padding: 0 24px 24px 56px;
    color: var(--text-muted);
    line-height: 1.7;
}

.help-answer-content p {
    margin: 0 0 12px;
}

.help-answer-content ul,
.help-answer-content ol {
    margin: 12px 0;
    padding-left: 20px;
}

.help-answer-content li {
    margin-bottom: 8px;
}

.help-answer-content strong {
    color: var(--text);
}

.help-answer-content code {
    background: var(--bg-alt);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: monospace;
    font-size: 0.9em;
}

.contact-box {
    background: linear-gradient(135deg, #DBEAFE, #BFDBFE);
    border: 2px solid #3B82F6;
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    margin-top: 48px;
}

.contact-box h3 {
    color: #1E40AF;
    margin-bottom: 12px;
    font-size: 1.5rem;
}

.contact-box p {
    color: #1E3A8A;
    margin-bottom: 20px;
}

.no-results {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.no-results-icon {
    font-size: 4rem;
    margin-bottom: 16px;
}
