
        @page {
            size: 8.5in 11in;
            margin: 0.5in;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.4;
            color: #2c3e50;
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
            min-height: 100vh;
        }
        
        .container {
            background: white;
            max-width: 8in;
            margin: 0 auto;
            padding: 20px;
            box-shadow: 0 0 20px rgba(0,0,0,0.1);
            border-radius: 8px;
        }
        
        .header {
            text-align: center;
            margin-bottom: 30px;
            padding: 25px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            border-radius: 10px;
            position: relative;
            overflow: hidden;
        }
        
        .header::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: shine 3s ease-in-out infinite;
        }
        
        @keyframes shine {
            0%, 100% { opacity: 0; }
            50% { opacity: 1; }
        }
        
        .header h1 {
            font-size: 2.3em;
            margin-bottom: 10px;
            font-weight: bold;
            position: relative;
            z-index: 1;
        }
        
        .header .subtitle {
            font-size: 1.1em;
            opacity: 0.9;
            position: relative;
            z-index: 1;
        }
        
        .section {
            margin-bottom: 25px;
            page-break-inside: avoid;
        }
        
        .section-title {
            background: linear-gradient(45deg, #ff6b6b, #ee5a24);
            color: white;
            padding: 15px 20px;
            border-radius: 8px;
            font-size: 1.4em;
            font-weight: bold;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            box-shadow: 0 4px 15px rgba(238, 90, 36, 0.3);
        }
        
        .section-title .icon {
            margin-right: 12px;
            font-size: 1.3em;
        }
        
        .conversion-process {
            background: linear-gradient(135deg, #f8f9fa, #e9ecef);
            border-radius: 10px;
            padding: 20px;
            border-left: 5px solid #3498db;
            margin-bottom: 20px;
        }
        
        .process-title {
            color: #2c3e50;
            font-size: 1.3em;
            font-weight: bold;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        
        .process-title::before {
            content: '🔄';
            margin-right: 10px;
            font-size: 1.2em;
        }
        
        .steps-container {
            display: grid;
            gap: 15px;
        }
        
        .step {
            background: white;
            padding: 15px;
            border-radius: 8px;
            border-left: 4px solid #3498db;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            display: flex;
            align-items: flex-start;
        }
        
        .step-number {
            background: #3498db;
            color: white;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            margin-right: 15px;
            flex-shrink: 0;
            font-size: 0.9em;
        }
        
        .step-content {
            flex: 1;
        }
        
        .step-content strong {
            color: #2c3e50;
            display: block;
            margin-bottom: 5px;
            font-size: 1.05em;
        }
        
        .step-content p {
            color: #555;
            font-size: 0.95em;
        }
        
        .accessibility-guidelines {
            background: linear-gradient(135deg, #d4edda, #c3e6cb);
            padding: 20px;
            border-radius: 10px;
            border-left: 5px solid #28a745;
            margin-bottom: 20px;
        }
        
        .accessibility-guidelines h3 {
            color: #155724;
            margin-bottom: 15px;
            font-size: 1.3em;
            display: flex;
            align-items: center;
        }
        
        .accessibility-guidelines h3::before {
            content: '♿';
            margin-right: 10px;
            font-size: 1.2em;
        }
        
        .guideline-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }
        
        .guideline-item {
            background: white;
            padding: 12px;
            border-radius: 6px;
            border-left: 3px solid #28a745;
            font-size: 0.95em;
        }
        
        .guideline-item strong {
            color: #155724;
            display: block;
            margin-bottom: 5px;
        }
        
        .best-practices {
            background: linear-gradient(135deg, #fff3cd, #ffeaa7);
            padding: 20px;
            border-radius: 10px;
            border-left: 5px solid #ffc107;
            margin-bottom: 20px;
        }
        
        .best-practices h3 {
            color: #856404;
            margin-bottom: 15px;
            font-size: 1.3em;
            display: flex;
            align-items: center;
        }
        
        .best-practices h3::before {
            content: '💡';
            margin-right: 10px;
            font-size: 1.2em;
        }
        
        .practice-item {
            background: white;
            padding: 12px;
            margin-bottom: 10px;
            border-radius: 6px;
            border-left: 3px solid #ffc107;
            font-size: 0.95em;
        }
        
        .practice-item::before {
            content: "✓";
            color: #ffc107;
            font-weight: bold;
            margin-right: 8px;
        }
        
        .warning-box {
            background: linear-gradient(135deg, #f8d7da, #f5c6cb);
            border: 2px solid #dc3545;
            padding: 15px;
            border-radius: 8px;
            margin: 20px 0;
        }
        
        .warning-box h4 {
            color: #721c24;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }
        
        .warning-box h4::before {
            content: '⚠️';
            margin-right: 8px;
        }
        
        .tools-section {
            background: linear-gradient(135deg, #d1ecf1, #b8daff);
            padding: 20px;
            border-radius: 10px;
            border-left: 5px solid #17a2b8;
            margin-bottom: 20px;
        }
        
        .tools-section h3 {
            color: #0c5460;
            margin-bottom: 15px;
            font-size: 1.3em;
            display: flex;
            align-items: center;
        }
        
        .tools-section h3::before {
            content: '🛠️';
            margin-right: 10px;
            font-size: 1.2em;
        }
        
        .tools-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }
        
        .tool-item {
            background: white;
            padding: 12px;
            border-radius: 6px;
            text-align: center;
            border-left: 3px solid #17a2b8;
        }
        
        .tool-item strong {
            color: #0c5460;
            display: block;
            margin-bottom: 5px;
        }
        
        .footer {
            margin-top: 30px;
            text-align: center;
            padding: 20px;
            background: linear-gradient(135deg, #2c3e50, #34495e);
            color: white;
            border-radius: 8px;
            font-size: 0.9em;
        }
        
        .highlight-box {
            background: linear-gradient(135deg, #e3f2fd, #bbdefb);
            border: 2px solid #2196f3;
            padding: 15px;
            border-radius: 8px;
            margin: 15px 0;
            text-align: center;
        }
        
        .highlight-box strong {
            color: #1565c0;
            font-size: 1.1em;
        }
        
        .quick-reference {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 8px;
            border: 2px solid #6c757d;
            margin: 20px 0;
        }
        
        .quick-reference h4 {
            color: #495057;
            margin-bottom: 15px;
            text-align: center;
            font-size: 1.2em;
        }
        
        .reference-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }
        
        .reference-item {
            background: white;
            padding: 10px;
            border-radius: 4px;
            border-left: 3px solid #6c757d;
            font-size: 0.9em;
        }
        
        @media print {
            body {
                background: white;
            }
            .container {
                box-shadow: none;
                max-width: none;
            }
            .header::before {
                display: none;
            }
        }
  