.help-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #FDF6E3 0%, #F5F0E6 50%, #E8DBC5 100%);
    position: relative;
    overflow: hidden;
}

.help-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.floating-icon {
    position: absolute;
    font-size: 3rem;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.floating-icon:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-icon:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-icon:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

.container {
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.help-content {
    padding: 4rem;
    border-radius: 30px;
    text-align: center;
    transform: translateY(30px);
    opacity: 0;
    animation: fadeUp 1s ease 0.5s forwards;
}

.help-header {
    margin-bottom: 3rem;
}

.help-main-icon {
    display: inline-block;
    animation: bounce 2s infinite;
}

.help-section h2 {
    font-size: 3rem;
    color: #8B4513;
    margin-bottom: 1rem;
    font-weight: 400;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.help-subtitle {
    font-size: 1.4rem;
    color: #654321;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.help-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.help-feature {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(212, 165, 116, 0.2);
    position: relative;
    overflow: hidden;
}

.help-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 165, 116, 0.1), transparent);
    transition: left 0.7s ease;
}

.help-feature:hover::before {
    left: 100%;
}

.help-feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    animation: pulse 2s infinite;
}

.help-feature h3 {
    font-size: 1.4rem;
    color: #654321;
    margin-bottom: 1rem;
    font-weight: 700;
}

.help-feature p {
    color: #8B7BAA;
    line-height: 1.6;
    font-size: 1rem;
}

.help-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #B8860B;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #B8860B, #D2691E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: #654321;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.help-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.help-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.help-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.7s ease;
}

.help-btn:hover::before {
    left: 100%;
}

.help-btn.primary {
    background: linear-gradient(45deg, #25D366, #128C7E, #25D366);
    background-size: 200% 200%;
    color: white;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    animation: gradientShift 3s ease infinite;
}

.help-btn.primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
}

.help-btn.secondary {
    background: transparent;
    color: #8B4513;
    border: 2px solid #D4A574;
    box-shadow: 0 5px 15px rgba(212, 165, 116, 0.2);
}

.help-btn.secondary:hover {
    background: rgba(212, 165, 116, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 165, 116, 0.3);
}

.btn-icon {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.help-btn:hover .btn-icon {
    transform: scale(1.2);
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.help-btn:hover .btn-arrow {
    transform: translateX(5px);
}

.help-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: rgba(212, 165, 116, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(212, 165, 116, 0.3);
    max-width: 500px;
    margin: 0 auto;
}

.note-icon {
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

.help-note p {
    color: #654321;
    font-weight: 500;
    margin: 0;
    text-align: left;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .help-section {
        padding: 4rem 1rem;
    }
    
    .help-content {
        padding: 3rem;
    }
    
    .help-section h2 {
        font-size: 2.5rem;
    }
    
    .help-subtitle {
        font-size: 1.2rem;
    }
    
    .help-features {
        grid-template-columns: 1fr;
    }
    
    .help-stats {
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .help-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .help-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .help-note {
        flex-direction: column;
        text-align: center;
    }
    
    .help-note p {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .help-section {
        padding: 3rem 1rem;
    }
    
    .help-content {
        padding: 2rem;
    }
    
    .help-section h2 {
        font-size: 2rem;
    }
    
    .help-subtitle {
        font-size: 1.1rem;
    }
    
    .help-feature {
        padding: 1.5rem;
    }
    
    .feature-icon {
        font-size: 2.5rem;
    }
    
    .help-stats {
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .help-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}