
        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: #333;
            line-height: 1.6;
            padding: 20px;
        }
        
        .infographic {
            max-width: 8.5in;
            width: 100%;
            margin: 0 auto;
            background: white;
            border-radius: 20px;
            box-shadow: 0 25px 80px rgba(0,0,0,0.15);
            overflow: hidden;
            position: relative;
        }
        
        .header {
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 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: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="feedback" x="0" y="0" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="rgba(255,255,255,0.1)"/><path d="M10 15 L20 15 M15 10 L15 20 M8 8 L22 22 M22 8 L8 22" stroke="rgba(255,255,255,0.08)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23feedback)"/></svg>');
            animation: rotate 30s linear infinite;
        }
        
        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        .header h1 {
            font-size: 3.2em;
            font-weight: 800;
            margin-bottom: 15px;
            position: relative;
            z-index: 1;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        
        .header .subtitle {
            font-size: 1.3em;
            opacity: 0.95;
            font-weight: 400;
            position: relative;
            z-index: 1;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .overview-stats {
            background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
            padding: 35px 40px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            position: relative;
        }
        
        .stat-item {
            text-align: center;
            position: relative;
            padding: 20px;
            background: rgba(255,255,255,0.3);
            border-radius: 15px;
            backdrop-filter: blur(10px);
        }
        
        .stat-item .stat-number {
            font-size: 2.5em;
            font-weight: 700;
            color: #2d3748;
            display: block;
            margin-bottom: 8px;
        }
        
        .stat-item .stat-label {
            font-size: 1.1em;
            color: #4a5568;
            font-weight: 500;
        }
        
        .content {
            padding: 40px;
        }
        
        .intro-section {
            background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
            padding: 35px;
            border-radius: 15px;
            margin-bottom: 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .intro-section::before {
            content: '📝';
            font-size: 5em;
            position: absolute;
            top: -30px;
            right: -30px;
            opacity: 0.1;
            transform: rotate(15deg);
        }
        
        .intro-section h2 {
            font-size: 2em;
            font-weight: 700;
            color: #2d3748;
            margin-bottom: 18px;
        }
        
        .intro-section p {
            font-size: 1.15em;
            color: #4a5568;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.7;
        }
        
        .process-flow {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 40px;
            border-radius: 15px;
            margin-bottom: 40px;
        }
        
        .process-flow h3 {
            font-size: 1.8em;
            font-weight: 700;
            text-align: center;
            margin-bottom: 30px;
        }
        
        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 25px;
            margin-bottom: 20px;
        }
        
        .process-step {
            background: rgba(255,255,255,0.15);
            padding: 25px;
            border-radius: 15px;
            text-align: center;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
            position: relative;
        }
        
        .process-step .step-number {
            background: rgba(255,255,255,0.9);
            color: #667eea;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.2em;
            margin: 0 auto 15px;
        }
        
        .process-step h4 {
            font-weight: 600;
            margin-bottom: 10px;
            font-size: 1.1em;
        }
        
        .process-step p {
            font-size: 0.95em;
            opacity: 0.9;
            line-height: 1.6;
        }
        
        .benefits-section {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .benefit-card {
            background: white;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            border-left: 5px solid #4facfe;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .benefit-card::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 80px;
            height: 80px;
            background: radial-gradient(circle, rgba(79, 172, 254, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            transform: translate(20px, -20px);
        }
        
        .benefit-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
        }
        
        .benefit-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }
        
        .benefit-icon {
            font-size: 2.5em;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
        }
        
        .benefit-title {
            font-size: 1.4em;
            font-weight: 700;
            color: #2d3748;
        }
        
        .benefit-description {
            color: #4a5568;
            font-size: 1em;
            line-height: 1.7;
        }
        
        .implementation-section {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            color: white;
            padding: 40px;
            border-radius: 15px;
            margin-bottom: 40px;
        }
        
        .implementation-section h3 {
            font-size: 1.8em;
            font-weight: 700;
            text-align: center;
            margin-bottom: 30px;
        }
        
        .implementation-methods {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
        }
        
        .implementation-method {
            background: rgba(255,255,255,0.15);
            padding: 25px;
            border-radius: 15px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
        }
        
        .implementation-method h4 {
            font-weight: 600;
            margin-bottom: 15px;
            font-size: 1.2em;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .implementation-method .method-icon {
            font-size: 1.5em;
        }
        
        .implementation-method p {
            font-size: 0.95em;
            opacity: 0.9;
            line-height: 1.6;
        }
        
        .guidelines-section {
            background: linear-gradient(135d, #d299c2 0%, #fef9d7 100%);
            padding: 35px;
            border-radius: 15px;
            margin-bottom: 30px;
        }
        
        .guidelines-section h3 {
            font-size: 1.7em;
            font-weight: 700;
            color: #2d3748;
            text-align: center;
            margin-bottom: 25px;
        }
        
        .guidelines-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
        }
        
        .guideline-item {
            background: white;
            padding: 20px;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border-left: 4px solid #f093fb;
        }
        
        .guideline-item h4 {
            color: #2d3748;
            font-weight: 600;
            margin-bottom: 10px;
            font-size: 1.1em;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .guideline-item .guideline-icon {
            font-size: 1.3em;
        }
        
        .guideline-item p {
            color: #4a5568;
            font-size: 0.95em;
            line-height: 1.6;
        }
        
        .key-outcomes {
            background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
            color: white;
            padding: 40px;
            border-radius: 15px;
            text-align: center;
            margin-bottom: 30px;
        }
        
        .key-outcomes h3 {
            font-size: 1.8em;
            font-weight: 700;
            margin-bottom: 30px;
        }
        
        .outcomes-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 25px;
        }
        
        .outcome-item {
            background: rgba(255,255,255,0.15);
            padding: 25px;
            border-radius: 15px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
        }
        
        .outcome-item .outcome-icon {
            font-size: 2.5em;
            margin-bottom: 15px;
        }
        
        .outcome-item h4 {
            font-weight: 600;
            margin-bottom: 10px;
            font-size: 1.1em;
        }
        
        .outcome-item p {
            font-size: 0.9em;
            opacity: 0.9;
        }
        
        .footer {
            background: #2d3748;
            color: white;
            padding: 25px 40px;
            text-align: center;
        }
        
        .footer p {
            font-size: 0.9em;
            opacity: 0.8;
        }
        
        @media print {
            body { 
                padding: 0; 
                background: white;
            }
            .infographic { 
                box-shadow: none; 
                border-radius: 0;
            }
            .benefit-card, .implementation-method, .guideline-item {
                break-inside: avoid;
                page-break-inside: avoid;
            }
        }
        
        @media (max-width: 768px) {
            .benefits-section {
                grid-template-columns: 1fr;
            }
            .header h1 {
                font-size: 2.5em;
            }
            .content {
                padding: 20px;
            }
        }
    