﻿.hero-help {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #ff6b35 100%);
    padding: 100px 20px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-help::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 25% 40%, rgba(255,107,53,0.2) 0%, transparent 50%),
                            radial-gradient(circle at 75% 70%, rgba(255,107,53,0.15) 0%, transparent 50%);
    pointer-events: none;
}

.hero-help .container {
    position: relative;
    z-index: 0;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-help h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
    letter-spacing: -0.5px;
}

.hero-help .tagline {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: rgba(255,255,255,0.95);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.content-wrapper{
        max-width: 900px;
        margin: 40px auto;
        padding: 0 20px;
}

.help-intro-card {
    background: linear-gradient(135deg, #fff5f0 0%, #ffe8db 100%);
    border-radius: 16px;
    padding: 50px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    border-left: 5px solid #ff6b35;
}

.help-intro-card h2 {
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.help-intro-card h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35 0%, #ff8c42 100%);
    border-radius: 2px;
}

.help-intro-card p {
    font-size: 1.1rem;
    color: #495057;
    line-height: 1.8;
    margin-bottom: 15px;
}

.help-intro-card p:last-child {
    margin-bottom: 0;
}

.help-section {
    background: white;
    border-radius: 16px;
    padding: 50px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

.help-section h2 {
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.help-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    /*background: linear-gradient(90deg, #ff6b35 0%, #ff8c42 100%);*/
    border-radius: 2px;
}

.section-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.help-list {
    list-style: none;
    padding: 0;
    margin: 30px 0 0;
}

.help-list li {
    font-size: 1.05rem;
    color: #495057;
    line-height: 1.8;
    margin-bottom: 15px;
    padding-left: 35px;
    position: relative;
}

.help-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff6b35;
    font-weight: bold;
    font-size: 1.2rem;
}

.donts-list li::before {
    content: '✗';
    color: #e74c3c;
}

.example-box {
    background: #f8f9fa;
    border-left: 4px solid #e74c3c;
    padding: 20px 25px;
    margin: 30px 0 30px 0;
    border-radius: 8px;
}

.example-box.correct {
    border-left-color: #27ae60;
}

.example-box p {
    font-size: 1rem;
    color: #495057;
    margin: 8px 0;
    line-height: 1.6;
}

.example-label {
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.warning-text {
    color: #e74c3c;
    font-weight: 600;
}

.nested-list {
    list-style: none;
    padding-left: 0;
    margin: 10px 0 10px 35px;
}

.nested-list li {
    padding-left: 0;
    margin-bottom: 10px;
}

.nested-list li::before {
    content: '';
}

@media (max-width: 768px) {
    .hero-help {
        padding: 80px 20px 60px;
    }

    .help-intro-card,
    .help-section {
        padding: 35px 25px;
    }

    .help-section h2 {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .help-intro-card,
    .help-section {
        padding: 25px 20px;
        border-radius: 12px;
    }

    .help-list li {
        padding-left: 30px;
    }

    .example-box {
        margin-left: 20px;
        padding: 15px 20px;
    }
}