
        * {
            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, #4facfe 0%, #00f2fe 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"><circle cx="25" cy="25" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="25" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="75" r="2" fill="rgba(255,255,255,0.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;
        }

        .think-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, #a8edea 0%, #fed6e3 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: #667eea;
        }

        .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, #4facfe 0%, #00f2fe 100%);
            border-radius: 2px;
        }

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

        .process-flow {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 30px;
        }

        .process-step {
            background: white;
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            text-align: center;
            transition: transform 0.3s ease;
            position: relative;
            flex: 1;
            min-width: 200px;
            max-width: 300px;
        }

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

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

        .step-1 { border-top: 5px solid #ff6b6b; }
        .step-1 .step-icon { color: #ff6b6b; }

        .step-2 { border-top: 5px solid #4ecdc4; }
        .step-2 .step-icon { color: #4ecdc4; }

        .step-3 { border-top: 5px solid #45b7d1; }
        .step-3 .step-icon { color: #45b7d1; }

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

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

        .timing-note {
            background: #fff3cd;
            padding: 15px;
            border-radius: 10px;
            border-left: 4px solid #ffc107;
            margin-bottom: 20px;
            font-style: italic;
        }

        .flow-arrow {
            font-size: 2em;
            color: #4facfe;
            margin: 0 10px;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 0.7; }
            50% { opacity: 1; }
        }

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

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

        .modification-card {
            background: white;
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            margin-bottom: 20px;
        }

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

        .modification-card p {
            color: #666;
            line-height: 1.6;
            margin-bottom: 15px;
        }

        .square-process {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 20px;
        }

        .square-step {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 15px;
            border-radius: 10px;
            text-align: center;
            flex: 1;
            min-width: 120px;
            font-size: 0.9em;
        }

        .benefits-section {
            background: linear-gradient(135deg, #a8edea 0%, #fed6e3 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: #667eea;
        }

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

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

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

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

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

        .tip-card h3 {
            font-size: 1.3em;
            margin-bottom: 15px;
            color: #00f2fe;
        }

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

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

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

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

        .application-item {
            background: white;
            padding: 15px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            text-align: center;
        }

        .application-item h4 {
            font-size: 1.1em;
            margin-bottom: 8px;
            color: #d63384;
        }

        .application-item p {
            font-size: 0.9em;
            color: #666;
        }

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

        .footer a {
            color: #4facfe;
            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;
            }
            
            .flow-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;
            }
            
            .process-flow {
                flex-direction: column;
            }
            
            .flow-arrow {
                transform: rotate(90deg);
            }
            
            .square-process {
                flex-direction: column;
            }
        }
    