:root {
    --primary: #667eea;
    /* Фиолетовый */
    --primary-dark: #764ba2;
    /* Более тёмный фиолетовый */
    --secondary: #f093fb;
    /* Розовый */
    --accent: #f5576c;
    /* Яркий розовый/красный */
    --bg-light: #f8f9fa;
    /* Светлый фон */
    --text-dark: #2d3748;
    /* Тёмный текст */
    --text-light: #4a5568;
    /* Более светлый текст */
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--text-dark);
    line-height: 1.6;
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.header {
    text-align: center;
    margin-bottom: 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 40px 30px;
    border-radius: 16px;
    color: #fff;
}

.header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Карточки */
.help-section {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.section-title {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
}

.section-icon {
    font-size: 2rem;
    margin-right: 15px;
}

/* Список шагов */
.step-list {
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
}

.step-item {
    padding: 10px 0;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
    padding-left: 40px;
    counter-increment: step-counter;
}

.step-item::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 10px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    color: #fff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
}

/* FAQ */
.faq-item {
    margin-bottom: 15px;
}

.faq-question {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 5px;
}

/* Контакты */
.contact-info {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
}

/* Блоки предупреждений и подсказок */
.warning-box {
    background: #fff5f5;
    border-left: 4px solid var(--accent);
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
}

.tip-box {
    background: #f0fff4;
    border-left: 4px solid var(--secondary);
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 8px;
}

/* Кнопки */
.btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    padding: 12px 24px;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}