.help-page {
    background: #f8f9fa;
    min-height: calc(100vh - 200px);
}

/* Hero секция */
.help-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    text-align: center;
    padding: 60px 20px;
    margin-bottom: 40px;
}

.help-hero-content h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.help-hero-content p {
    font-size: 18px;
    opacity: 0.9;
}

.help-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

/* Поиск */
.help-search {
    margin-bottom: 40px;
}

.search-input {
    width: 100%;
    max-width: 500px;
    display: block;
    margin: 0 auto;
    padding: 12px 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    background: white;
    transition: all 0.3s;
}

.search-input:focus {
    outline: none;
    border-color: #1a1a2e;
    box-shadow: 0 0 0 3px rgba(26,26,46,0.1);
}

/* Сетка */
.help-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
}

/* Категории */
.help-categories {
    background: white;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    height: fit-content;
    position: sticky;
    top: 20px;
}

.help-categories h2 {
    font-size: 20px;
    color: #1a1a2e;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.categories-list li {
    margin-bottom: 10px;
}

.category-link {
    display: block;
    padding: 8px 12px;
    color: #555;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s;
    font-size: 14px;
}

.category-link:hover {
    background: #f0f0f0;
    color: #1a1a2e;
}

.category-link.active {
    background: #1a1a2e;
    color: white;
}

/* Контент */
.help-content {
    background: white;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    overflow: hidden;
}

.faq-category {
    padding: 30px;
    border-bottom: 1px solid #f0f0f0;
}

.faq-category:last-child {
    border-bottom: none;
}

.faq-category h2 {
    font-size: 24px;
    color: #1a1a2e;
    margin-bottom: 20px;
}

/* Вопросы */
.faq-item {
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #f8f9fa;
    cursor: pointer;
    transition: background 0.2s;
}

.faq-question:hover {
    background: #f0f0f0;
}

.faq-question span {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

.faq-toggle {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: none;
    background: #1a1a2e;
    color: white;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 300px;
}

.faq-answer p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Поддержка */
.support-contacts {
    padding: 30px;
    text-align: center;
    background: #f8f9fa;
    border-top: 1px solid #e0e0e0;
}

.support-contacts h3 {
    font-size: 20px;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.support-contacts p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.support-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.support-btn {
    display: inline-block;
    padding: 10px 25px;
    background: #1a1a2e;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.3s;
    font-size: 14px;
}

.support-btn:hover {
    background: #2a2a4e;
}

/* Адаптивность */
@media (max-width: 768px) {
    .help-hero {
        padding: 40px 20px;
    }

    .help-hero-content h1 {
        font-size: 32px;
    }

    .help-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .help-categories {
        position: static;
    }

    .categories-list {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .categories-list li {
        margin-bottom: 0;
    }

    .category-link {
        padding: 6px 12px;
        font-size: 13px;
    }

    .faq-category {
        padding: 20px;
    }

    .faq-category h2 {
        font-size: 20px;
    }

    .faq-question span {
        font-size: 14px;
    }

    .support-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .support-btn {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .help-hero {
        padding: 30px 20px;
    }

    .faq-question {
        padding: 12px 15px;
    }

    .faq-item.active .faq-answer {
        padding: 15px;
    }
}