﻿.hero-quiz-requests {
    background: linear-gradient(135deg, #6a39b7 0%, #8e44ad 50%, #9b59b6 100%);
    padding: 100px 20px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

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

.hero-quiz-requests 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-quiz-requests .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: 1100px;
        margin: 40px auto;
        padding: 0 20px;
}

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

.section-header {
    margin-bottom: 35px;
}

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

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #6a39b7 0%, #8e44ad 100%);
    border-radius: 2px;
}

.intro-text {
    display: grid;
    gap: 20px;
    margin-bottom: 40px;
}

.intro-box {
    padding: 20px 25px;
    background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
    border-radius: 12px;
    border-left: 5px solid #6a39b7;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.intro-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: linear-gradient(135deg, #6a39b7 0%, #8e44ad 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
}

.intro-text-content {
    color: #2c3e50;
    font-size: 1.05rem;
    line-height: 1.7;
}

.form-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    padding: 40px;
    margin: 40px 0;
}

.btn-return {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #6a39b7 0%, #8e44ad 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(106, 57, 183, 0.3);
    border: none;
    cursor: pointer;
}

.btn-return:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(106, 57, 183, 0.4);
    background: linear-gradient(135deg, #8e44ad 0%, #9b59b6 100%);
}

.center-2 {
    text-align: center;
    margin: 30px 0;
}

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

    .requests-card {
        padding: 35px 25px;
    }

    .form-section {
        padding: 30px 20px;
    }
}

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

    .intro-box {
        padding: 15px 20px;
    }

    .btn-return {
        padding: 12px 30px;
        font-size: 1rem;
    }
}