﻿.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;
}

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

.intro-card h2 {
    font-size: clamp(1.5rem, 2.5vw, 1.8rem);
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.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;
}

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

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

.intro-card ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.intro-card ul li {
    font-size: 1.05rem;
    color: #495057;
    line-height: 1.8;
    margin-bottom: 12px;
    padding-left: 35px;
    position: relative;
}

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

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

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

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

.policy-template p {
    font-size: 1.05rem;
    color: #495057;
    line-height: 1.8;
    margin-bottom: 20px;
}

.policy-template p:last-child {
    margin-bottom: 0;
}

.policy-template strong {
    color: #2c3e50;
}

.disclaimer-card {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-left: 5px solid #ffc107;
    margin-bottom: 30px;
}

.disclaimer-card h2 {
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    font-weight: 700;
    color: #856404;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.disclaimer-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: #ffc107;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.disclaimer-card p {
    font-size: 1.05rem;
    color: #856404;
    line-height: 1.8;
    margin: 0;
}

.disclaimer-card strong {
    font-weight: 700;
    color: #856404;
}

.usage-guide {
    background: linear-gradient(135deg, #e8f4f8 0%, #d4e9f7 100%);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-left: 5px solid #3498db;
    margin-bottom: 30px;
}

.usage-guide h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2980b9;
    margin-bottom: 15px;
}

.usage-guide p {
    font-size: 1.05rem;
    color: #2c3e50;
    line-height: 1.8;
    margin-bottom: 15px;
}

.usage-guide ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.usage-guide ul li {
    font-size: 1.05rem;
    color: #2c3e50;
    line-height: 1.8;
    margin-bottom: 12px;
    padding-left: 35px;
    position: relative;
}

.usage-guide ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
    font-size: 1.2rem;
}

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

    .intro-card,
    .policy-template,
    .disclaimer-card,
    .usage-guide {
        padding: 35px 25px;
    }

    .intro-card h2,
    .disclaimer-card h2 {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .intro-card,
    .policy-template,
    .disclaimer-card,
    .usage-guide {
        padding: 25px 20px;
        border-radius: 12px;
    }

    .intro-card ul li,
    .usage-guide ul li {
        padding-left: 30px;
    }
}