﻿.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-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-section h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ff6b35;
    margin: 25px 0 15px;
}

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

.help-section img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 20px 0;
}

.highlight-box {
    background: linear-gradient(135deg, #fff5f0 0%, #ffe8db 100%);
    padding: 25px 30px;
    border-radius: 12px;
    border-left: 5px solid #ff6b35;
    margin: 25px 0;
}

.highlight-box p {
    margin-bottom: 10px;
}

.highlight-box p:last-child {
    margin-bottom: 0;
}

.specs-grid {
    display: grid;
    gap: 20px;
    margin: 25px 0;
}

.spec-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 20px 25px;
    border-radius: 12px;
    border-left: 4px solid #ff6b35;
}

.spec-card h4 {
    color: #2c3e50;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}



.comparison-section {
    margin: 30px 0;
}

.media-example {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    margin: 20px 0;
}

.media-example img,
.media-example video {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 15px;
    cursor: pointer;
}

.media-label {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.label-before {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
}

.label-after {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: white;
}

.label-optimized {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
}

.stats {
    font-size: 1.1rem;
    color: #2c3e50;
    font-weight: 600;
    margin-top: 10px;
}

.image-showcase {
    text-align: center;
    margin: 30px 0;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
}

.image-showcase img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0);
}

.note-box {
    background: linear-gradient(135deg, #e8f4f8 0%, #d4e9f7 100%);
    padding: 20px 25px;
    border-radius: 12px;
    border-left: 5px solid #3498db;
    margin: 20px 0;
}

.note-box p {
    margin: 0;
    color: #2c3e50;
}

.note-box strong {
    color: #2980b9;
}

.mgp-outer {
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
}

.mgp-inner img {
    width: 40px;
    height: 40px;
}

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

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

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

    .media-example {
        padding: 20px;
    }
}

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

    .highlight-box,
    .note-box {
        padding: 15px 20px;
    }
}