
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.4;
            color: #333;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
            padding: 20px;
        }

        .infographic-container {
            max-width: 1200px;
            margin: 0 auto;
            background: white;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            overflow: hidden;
        }

        .header {
            background: linear-gradient(135deg, #ff6b6b 0%, #feca57 100%);
            color: white;
            padding: 40px 30px;
            text-align: center;
            position: relative;
        }

        .header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M20,20 Q50,10 80,20 T20,80 Q50,90 80,80 T20,20" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></svg>');
        }

        .header h1 {
            font-size: 3.5em;
            font-weight: 700;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            position: relative;
            z-index: 1;
        }

        .header p {
            font-size: 1.3em;
            opacity: 0.9;
            position: relative;
            z-index: 1;
        }

        .qa-icon {
            font-size: 2em;
            margin-bottom: 15px;
            display: block;
        }

        .content {
            padding: 40px 30px;
        }

        .overview {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 30px;
            border-radius: 15px;
            margin-bottom: 30px;
            text-align: center;
        }

        .overview h2 {
            font-size: 2.2em;
            margin-bottom: 15px;
        }

        .overview p {
            font-size: 1.1em;
            line-height: 1.6;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }

        .stat-card {
            background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
            padding: 25px;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }

        .stat-card:hover {
            transform: translateY(-5px);
        }

        .stat-card h3 {
            font-size: 1.5em;
            margin-bottom: 10px;
            color: #d63384;
        }

        .stat-card p {
            font-size: 1.8em;
            font-weight: bold;
            color: #333;
        }

        .section-title {
            font-size: 2.5em;
            text-align: center;
            margin-bottom: 30px;
            color: #333;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(135deg, #ff6b6b 0%, #feca57 100%);
            border-radius: 2px;
        }

        .process-section {
            margin-bottom: 40px;
        }

        .process-flow {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin-bottom: 30px;
        }

        .process-step {
            background: white;
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            border-left: 5px solid #ff6b6b;
            transition: transform 0.3s ease;
            position: relative;
        }

        .process-step:hover {
            transform: translateY(-3px);
        }

        .step-number {
            position: absolute;
            top: -15px;
            left: 20px;
            background: linear-gradient(135deg, #ff6b6b 0%, #feca57 100%);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2em;
        }

        .process-step h3 {
            font-size: 1.4em;
            margin-bottom: 15px;
            color: #333;
            margin-top: 15px;
        }

        .process-step p {
            color: #666;
            line-height: 1.6;
        }

        .movement-diagram {
            background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
            padding: 30px;
            border-radius: 15px;
            margin-bottom: 30px;
            text-align: center;
        }

        .movement-diagram h2 {
            font-size: 2.2em;
            margin-bottom: 20px;
            color: #333;
        }

        .diagram-container {
            display: flex;
            justify-content: space-around;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 20px;
        }

        .student-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5em;
            color: white;
            font-weight: bold;
            position: relative;
        }

        .student-1 {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

        .student-2 {
            background: linear-gradient(135deg, #ff6b6b 0%, #feca57 100%);
        }

        .arrow {
            font-size: 2em;
            color: #ff6b6b;
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 100% { transform: translateX(0); }
            50% { transform: translateX(10px); }
        }

        .benefits-section {
            background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
            padding: 30px;
            border-radius: 15px;
            margin-bottom: 30px;
        }

        .benefits-section h2 {
            font-size: 2.2em;
            margin-bottom: 20px;
            color: #333;
            text-align: center;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        .benefit-card {
            background: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            text-align: center;
        }

        .benefit-icon {
            font-size: 2.5em;
            margin-bottom: 15px;
            display: block;
        }

        .benefit-card h3 {
            font-size: 1.3em;
            margin-bottom: 10px;
            color: #d63384;
        }

        .benefit-card p {
            color: #666;
            font-size: 0.95em;
        }

        .extensions-section {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 30px;
            border-radius: 15px;
            margin-bottom: 30px;
        }

        .extensions-section h2 {
            font-size: 2.2em;
            margin-bottom: 20px;
            text-align: center;
        }

        .extension-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
        }

        .extension-card {
            background: rgba(255,255,255,0.1);
            padding: 20px;
            border-radius: 10px;
            backdrop-filter: blur(10px);
        }

        .extension-card h3 {
            font-size: 1.4em;
            margin-bottom: 15px;
            color: #feca57;
        }

        .extension-card p {
            line-height: 1.6;
            opacity: 0.9;
        }

        .tips-section {
            background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
            padding: 30px;
            border-radius: 15px;
            margin-bottom: 30px;
        }

        .tips-section h2 {
            font-size: 2.2em;
            margin-bottom: 20px;
            color: #333;
            text-align: center;
        }

        .tips-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
        }

        .tip-item {
            background: white;
            padding: 15px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .tip-icon {
            font-size: 1.5em;
            color: #d63384;
        }

        .tip-text {
            font-size: 0.95em;
            color: #666;
        }

        .footer {
            background: #333;
            color: white;
            text-align: center;
            padding: 25px;
            font-size: 0.9em;
        }

        .footer a {
            color: #ff6b6b;
            text-decoration: none;
        }

        @media print {
            body {
                background: white;
                padding: 0;
            }
            
            .infographic-container {
                box-shadow: none;
                border-radius: 0;
            }
            
            .process-step:hover,
            .stat-card:hover {
                transform: none;
            }
            
            .arrow {
                animation: none;
            }
            
            * {
                -webkit-print-color-adjust: exact !important;
                color-adjust: exact !important;
            }
        }

        @media (max-width: 768px) {
            .header h1 {
                font-size: 2.5em;
            }
            
            .section-title {
                font-size: 2em;
            }
            
            .diagram-container {
                flex-direction: column;
            }
            
            .arrow {
                transform: rotate(90deg);
            }
        }
    