
        @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, #2563eb 0%, #1e40af 100%);
            min-height: 100vh;
            padding: 20px;
            color: #333;
            line-height: 1.6;
        }
        
        .infographic {
            max-width: 1000px;
            margin: 0 auto;
            background: white;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
            overflow: hidden;
            position: relative;
        }
        
        .header {
            background: linear-gradient(135deg, #1e40af 0%, #3730a3 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: repeating-linear-gradient(
                45deg,
                transparent,
                transparent 15px,
                rgba(255,255,255,0.08) 15px,
                rgba(255,255,255,0.08) 30px
            );
            animation: slide 25s linear infinite;
        }
        
        @keyframes slide {
            0% { transform: translate(-50%, -50%) rotate(0deg); }
            100% { transform: translate(-50%, -50%) rotate(360deg); }
        }
        
        .header h1 {
            font-size: 4rem;
            font-weight: 700;
            margin-bottom: 15px;
            position: relative;
            z-index: 1;
        }
        
        .header .subtitle {
            font-size: 1.4rem;
            opacity: 0.9;
            position: relative;
            z-index: 1;
            font-weight: 300;
        }
        
        .content {
            padding: 40px;
        }
        
        .overview {
            text-align: center;
            margin-bottom: 50px;
            padding: 35px;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            border-radius: 15px;
            border: 3px solid #e2e8f0;
        }
        
        .overview h2 {
            color: #1e40af;
            font-size: 2.2rem;
            margin-bottom: 25px;
            font-weight: 600;
        }
        
        .overview p {
            font-size: 1.2rem;
            color: #64748b;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .key-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }
        
        .info-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            border: 2px solid #f1f5f9;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-align: center;
        }
        
        .info-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 50px rgba(0,0,0,0.15);
        }
        
        .info-card .icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }
        
        .info-card h3 {
            color: #1e40af;
            font-size: 1.4rem;
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        .info-card p {
            color: #64748b;
            font-size: 1.1rem;
        }
        
        .main-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-bottom: 50px;
        }
        
        .definition-section {
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
            padding: 35px;
            border-radius: 15px;
            border-left: 6px solid #0284c7;
        }
        
        .definition-section h3 {
            color: #0284c7;
            font-size: 1.8rem;
            margin-bottom: 20px;
            font-weight: 600;
        }
        
        .definition-section p {
            color: #374151;
            font-size: 1.1rem;
            margin-bottom: 15px;
        }
        
        .example-section {
            background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
            padding: 35px;
            border-radius: 15px;
            border-left: 6px solid #16a34a;
        }
        
        .example-section h3 {
            color: #16a34a;
            font-size: 1.8rem;
            margin-bottom: 20px;
            font-weight: 600;
        }
        
        .example-box {
            background: white;
            padding: 25px;
            border-radius: 10px;
            border: 2px solid #bbf7d0;
            margin-bottom: 20px;
        }
        
        .example-box h4 {
            color: #059669;
            font-size: 1.2rem;
            margin-bottom: 10px;
            font-weight: 600;
        }
        
        .example-box p {
            color: #374151;
            font-size: 1rem;
        }
        
        .process-section {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            border: 2px solid #f1f5f9;
            margin-bottom: 40px;
        }
        
        .process-section h3 {
            color: #1e40af;
            font-size: 2rem;
            margin-bottom: 30px;
            text-align: center;
            font-weight: 600;
        }
        
        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
        }
        
        .process-step {
            background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
            padding: 25px;
            border-radius: 12px;
            border: 2px solid #f59e0b;
            text-align: center;
            position: relative;
            transition: transform 0.3s ease;
        }
        
        .process-step:hover {
            transform: scale(1.05);
        }
        
        .process-step .step-number {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: #f59e0b;
            color: white;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.1rem;
        }
        
        .process-step h4 {
            color: #92400e;
            font-size: 1.3rem;
            margin-bottom: 10px;
            margin-top: 5px;
            font-weight: 600;
        }
        
        .process-step p {
            color: #451a03;
            font-size: 1rem;
        }
        
        .best-practices {
            background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
            color: white;
            padding: 40px;
            border-radius: 15px;
            margin-bottom: 30px;
        }
        
        .best-practices h3 {
            font-size: 2rem;
            margin-bottom: 25px;
            text-align: center;
            font-weight: 600;
        }
        
        .practices-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
        }
        
        .practice-item {
            background: rgba(255,255,255,0.1);
            padding: 25px;
            border-radius: 12px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
        }
        
        .practice-item h4 {
            font-size: 1.3rem;
            margin-bottom: 12px;
            font-weight: 600;
        }
        
        .practice-item p {
            font-size: 1rem;
            opacity: 0.9;
            line-height: 1.5;
        }
        
        .warning-box {
            background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
            border: 2px solid #f87171;
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 30px;
        }
        
        .warning-box h3 {
            color: #dc2626;
            font-size: 1.6rem;
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        .warning-box p {
            color: #991b1b;
            font-size: 1.1rem;
            font-weight: 500;
        }
        
        .footer {
            background: #1e293b;
            color: white;
            padding: 30px;
            text-align: center;
        }
        
        .footer h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        .footer p {
            font-size: 1rem;
            opacity: 0.8;
            margin-bottom: 8px;
        }
        
        @media (max-width: 768px) {
            .header h1 {
                font-size: 2.8rem;
            }
            
            .main-content {
                grid-template-columns: 1fr;
            }
            
            .key-info {
                grid-template-columns: 1fr;
            }
            
            .process-steps {
                grid-template-columns: 1fr;
            }
        }
        
        @media print {
            body {
                background: white;
                padding: 0;
            }
            
            .infographic {
                box-shadow: none;
                border-radius: 0;
            }
            
            .header::before {
                display: none;
            }
            
            .info-card:hover, .process-step:hover {
                transform: none;
            }
        }
