
        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
            min-height: 100vh;
            padding: 20px;
        }
        
        .infographic {
            max-width: 1000px;
            margin: 0 auto;
            background: white;
            border-radius: 25px;
            box-shadow: 0 25px 70px rgba(0,0,0,0.15);
            overflow: hidden;
            position: relative;
        }
        
        .header {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 50px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .header::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: conic-gradient(from 0deg, rgba(255,255,255,0.1), transparent, rgba(255,255,255,0.1));
            animation: spin 30s linear infinite;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        .header h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 15px;
            position: relative;
            z-index: 1;
        }
        
        .header .subtitle {
            font-size: 1.3rem;
            opacity: 0.9;
            position: relative;
            z-index: 1;
            font-weight: 300;
        }
        
        .overview {
            padding: 50px 40px;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            position: relative;
        }
        
        .overview-content {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .overview h2 {
            font-size: 2rem;
            color: #2c3e50;
            margin-bottom: 20px;
            font-weight: 600;
        }
        
        .overview p {
            font-size: 1.2rem;
            line-height: 1.7;
            color: #34495e;
            margin-bottom: 30px;
        }
        
        .stats-container {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 30px;
        }
        
        .stat-box {
            background: white;
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            text-align: center;
            min-width: 150px;
            flex: 1;
        }
        
        .stat-box h3 {
            font-size: 1.1rem;
            color: #7f8c8d;
            margin-bottom: 10px;
            font-weight: 600;
        }
        
        .stat-box .value {
            font-size: 1.8rem;
            font-weight: 700;
            color: #3498db;
        }
        
        .process-section {
            padding: 60px 40px;
            background: white;
        }
        
        .process-title {
            text-align: center;
            font-size: 2.5rem;
            color: #2c3e50;
            margin-bottom: 50px;
            font-weight: 600;
        }
        
        .process-steps {
            display: grid;
            gap: 30px;
            max-width: 900px;
            margin: 0 auto;
        }
        
        .step {
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 30px;
            border-radius: 20px;
            color: white;
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .step:nth-child(2) {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            margin-left: 40px;
        }
        
        .step:nth-child(3) {
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
            margin-left: 80px;
        }
        
        .step:nth-child(4) {
            background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
            margin-left: 120px;
        }
        
        .step:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
        }
        
        .step::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 20%, rgba(255,255,255,0.3) 0%, transparent 50%);
            pointer-events: none;
        }
        
        .step-number {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            background: rgba(255,255,255,0.2);
            border-radius: 50%;
            font-size: 1.8rem;
            font-weight: 700;
            margin-right: 25px;
            flex-shrink: 0;
            position: relative;
            z-index: 1;
        }
        
        .step-content {
            position: relative;
            z-index: 1;
        }
        
        .step h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 12px;
        }
        
        .step p {
            font-size: 1rem;
            line-height: 1.6;
            opacity: 0.95;
        }
        
        .benefits-section {
            background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
            padding: 60px 40px;
        }
        
        .benefits-title {
            text-align: center;
            font-size: 2.2rem;
            color: #2c3e50;
            margin-bottom: 40px;
            font-weight: 600;
        }
        
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            max-width: 900px;
            margin: 0 auto;
        }
        
        .benefit-card {
            background: white;
            padding: 35px;
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            text-align: center;
            transition: transform 0.3s ease;
        }
        
        .benefit-card:hover {
            transform: translateY(-10px);
        }
        
        .benefit-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 20px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
        }
        
        .benefit-card h4 {
            font-size: 1.3rem;
            color: #2c3e50;
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        .benefit-card p {
            color: #7f8c8d;
            line-height: 1.6;
        }
        
        .warning-section {
            background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
            padding: 50px 40px;
            text-align: center;
        }
        
        .warning-content {
            max-width: 800px;
            margin: 0 auto;
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .warning-title {
            font-size: 1.8rem;
            color: #e74c3c;
            margin-bottom: 20px;
            font-weight: 600;
        }
        
        .warning-text {
            font-size: 1.1rem;
            line-height: 1.6;
            color: #2c3e50;
            margin-bottom: 25px;
            font-style: italic;
        }
        
        .key-points {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }
        
        .key-point {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 25px;
            border-radius: 15px;
            text-align: left;
        }
        
        .key-point h5 {
            font-size: 1.1rem;
            margin-bottom: 10px;
            font-weight: 600;
        }
        
        .key-point p {
            font-size: 0.95rem;
            line-height: 1.5;
            opacity: 0.9;
        }
        
        .references {
            background: #2c3e50;
            color: white;
            padding: 40px;
        }
        
        .references h4 {
            font-size: 1.4rem;
            margin-bottom: 20px;
            color: #3498db;
            text-align: center;
        }
        
        .references ul {
            list-style: none;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .references li {
            margin-bottom: 12px;
            font-size: 0.9rem;
            line-height: 1.4;
            opacity: 0.9;
            padding-left: 20px;
            position: relative;
        }
        
        .references li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: #3498db;
            font-weight: bold;
        }
        
        .footer {
            background: #34495e;
            color: white;
            padding: 30px;
            text-align: center;
        }
        
        .footer h4 {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: #3498db;
        }
        
        .footer p {
            opacity: 0.8;
            font-size: 0.9rem;
            line-height: 1.4;
        }
        
        @media (max-width: 768px) {
            .header h1 {
                font-size: 2.2rem;
            }
            
            .process-steps .step {
                margin-left: 0 !important;
            }
            
            .step {
                flex-direction: column;
                text-align: center;
            }
            
            .step-number {
                margin-right: 0;
                margin-bottom: 20px;
            }
            
            .stats-container {
                flex-direction: column;
            }
        }
        
        @media print {
            body {
                background: white;
                padding: 0;
            }
            
            .infographic {
                box-shadow: none;
                border-radius: 0;
            }
            
            .step:hover, .benefit-card:hover {
                transform: none;
            }
        }
    