
        @page {
            size: A4;
            margin: 0.5in;
        }
        
        * {
            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;
        }
        
        .container {
            max-width: 8.5in;
            margin: 0 auto;
            background: white;
            border-radius: 15px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            overflow: hidden;
        }
        
        .header {
            background: linear-gradient(135deg, #8e44ad 0%, #3498db 100%);
            color: white;
            padding: 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="15" cy="25" r="1.5" fill="white" opacity="0.1"/><circle cx="85" cy="35" r="2" fill="white" opacity="0.1"/><circle cx="45" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="15" r="2.5" fill="white" opacity="0.1"/></svg>') repeat;
        }
        
        .header h1 {
            font-size: 2.5em;
            font-weight: bold;
            margin-bottom: 10px;
            position: relative;
            z-index: 1;
        }
        
        .header .subtitle {
            font-size: 1.2em;
            opacity: 0.9;
            position: relative;
            z-index: 1;
        }
        
        .content {
            padding: 40px;
        }
        
        .overview-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-radius: 15px;
            padding: 25px;
            margin-bottom: 30px;
            border-left: 5px solid #8e44ad;
        }
        
        .overview-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        
        .overview-item {
            text-align: center;
            padding: 15px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }
        
        .overview-item .icon {
            font-size: 2em;
            margin-bottom: 10px;
            display: block;
        }
        
        .overview-item h3 {
            font-size: 0.9em;
            color: #2c3e50;
            margin-bottom: 5px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .overview-item p {
            font-size: 1.1em;
            font-weight: bold;
            color: #8e44ad;
        }
        
        .section-title {
            font-size: 1.8em;
            color: #2c3e50;
            margin-bottom: 20px;
            text-align: center;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: linear-gradient(to right, #8e44ad, #3498db);
            border-radius: 2px;
        }
        
        .approaches-section {
            margin-bottom: 30px;
        }
        
        .approaches-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        
        .approach-card {
            background: white;
            border-radius: 15px;
            padding: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            border: 1px solid #e9ecef;
            position: relative;
            overflow: hidden;
            text-align: center;
        }
        
        .approach-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #8e44ad, #3498db);
        }
        
        .approach-card .approach-icon {
            font-size: 2.5em;
            margin-bottom: 15px;
            display: block;
        }
        
        .approach-card h3 {
            font-size: 1.1em;
            color: #2c3e50;
            margin-bottom: 10px;
            font-weight: bold;
        }
        
        .approach-card p {
            font-size: 0.9em;
            color: #666;
            line-height: 1.5;
        }
        
        .process-section {
            background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
            color: white;
            padding: 30px;
            border-radius: 15px;
            margin-bottom: 30px;
        }
        
        .process-title {
            font-size: 1.5em;
            text-align: center;
            margin-bottom: 25px;
        }
        
        .process-flow {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .process-step {
            flex: 1;
            min-width: 140px;
            text-align: center;
            padding: 15px;
            background: rgba(255,255,255,0.1);
            border-radius: 12px;
            position: relative;
        }
        
        .process-step:not(:last-child)::after {
            content: '→';
            position: absolute;
            right: -25px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.5em;
            font-weight: bold;
        }
        
        .process-step .step-icon {
            font-size: 2em;
            margin-bottom: 8px;
            display: block;
        }
        
        .process-step h4 {
            font-size: 0.9em;
            margin-bottom: 5px;
            font-weight: bold;
        }
        
        .process-step p {
            font-size: 0.8em;
            opacity: 0.9;
        }
        
        .benefits-section {
            margin-bottom: 30px;
        }
        
        .benefits-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 25px;
        }
        
        .benefit-card {
            background: white;
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            border: 1px solid #e9ecef;
            position: relative;
            overflow: hidden;
        }
        
        .benefit-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #2ecc71, #27ae60);
        }
        
        .benefit-card h3 {
            font-size: 1.3em;
            color: #2c3e50;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        
        .benefit-card .benefit-icon {
            margin-right: 10px;
            font-size: 1.5em;
        }
        
        .benefit-list {
            list-style: none;
            padding: 0;
        }
        
        .benefit-list li {
            padding: 8px 0;
            padding-left: 20px;
            position: relative;
            color: #555;
            line-height: 1.5;
        }
        
        .benefit-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            top: 8px;
            color: #2ecc71;
            font-weight: bold;
        }
        
        .example-section {
            background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
            color: white;
            padding: 25px;
            border-radius: 15px;
            margin-bottom: 30px;
        }
        
        .example-title {
            font-size: 1.4em;
            margin-bottom: 15px;
            text-align: center;
        }
        
        .example-content {
            background: rgba(255,255,255,0.1);
            padding: 20px;
            border-radius: 10px;
            font-style: italic;
            line-height: 1.6;
        }
        
        .example-content .quote-mark {
            font-size: 2em;
            opacity: 0.3;
            margin-right: 10px;
        }
        
        .considerations-section {
            background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
            color: white;
            padding: 25px;
            border-radius: 15px;
            margin-bottom: 30px;
        }
        
        .considerations-title {
            font-size: 1.4em;
            margin-bottom: 15px;
            text-align: center;
        }
        
        .considerations-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }
        
        .consideration-item {
            display: flex;
            align-items: center;
            padding: 12px;
            background: rgba(255,255,255,0.1);
            border-radius: 8px;
        }
        
        .consideration-item .consideration-icon {
            margin-right: 12px;
            font-size: 1.3em;
        }
        
        .footer {
            background: #2c3e50;
            color: white;
            padding: 20px;
            text-align: center;
        }
        
        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .footer-logo {
            font-weight: bold;
            font-size: 1.1em;
        }
        
        .footer-info {
            font-size: 0.9em;
            opacity: 0.8;
        }
        
        @media print {
            body {
                background: white;
                padding: 0;
            }
            
            .container {
                box-shadow: none;
                max-width: none;
            }
        }
        
        @media (max-width: 768px) {
            .overview-grid,
            .approaches-grid {
                grid-template-columns: 1fr;
            }
            
            .benefits-grid {
                grid-template-columns: 1fr;
            }
            
            .process-flow {
                flex-direction: column;
            }
            
            .process-step:not(:last-child)::after {
                content: '↓';
                right: 50%;
                top: auto;
                bottom: -25px;
                transform: translateX(50%);
            }
        }
    