        .infographic {
            max-width: 8.5in;
            width: 100%;
            margin: 0 auto;
            background: white;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            overflow: hidden;
            position: relative;
        }

        .header {
            background: linear-gradient(135deg, #2ecc71 0%, #1abc9c 100%);
            color: white;
            text-align: center;
            padding: 30px 20px;
            position: relative;
            overflow: hidden;
        }

        .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"><polygon points="20,30 30,10 40,30" fill="rgba(255,255,255,0.1)"/><polygon points="60,20 70,5 80,20" fill="rgba(255,255,255,0.1)"/><polygon points="15,70 25,50 35,70" fill="rgba(255,255,255,0.1)"/><polygon points="70,80 80,60 90,80" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
            opacity: 0.3;
        }

        .header h1 {
            font-size: 2.5em;
            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;
        }

        .intro {
            text-align: center;
            margin-bottom: 40px;
            padding: 25px;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-radius: 15px;
            border-left: 5px solid #2ecc71;
        }

        .intro h2 {
            color: #2c3e50;
            font-size: 1.8em;
            margin-bottom: 15px;
        }

        .intro p {
            font-size: 1.1em;
            color: #555;
            line-height: 1.6;
        }

        .what-is-section {
            background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
            border-radius: 15px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            border: 2px solid #2ecc71;
        }

        .what-is-section h3 {
            color: #2c3e50;
            font-size: 1.6em;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .what-is-section h3::before {
            content: '🎬';
            font-size: 1.2em;
        }

        .how-it-works {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }

        .step-card {
            background: white;
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            border-top: 4px solid #2ecc71;
            text-align: center;
            transition: transform 0.3s ease;
        }

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

        .step-number {
            display: inline-block;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #2ecc71, #27ae60);
            color: white;
            border-radius: 50%;
            line-height: 50px;
            font-weight: bold;
            margin-bottom: 15px;
            font-size: 1.3em;
        }

        .step-card h4 {
            color: #2c3e50;
            font-size: 1.2em;
            margin-bottom: 10px;
        }

        .step-card p {
            color: #555;
            line-height: 1.5;
        }

        .benefits {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 25px;
            margin-bottom: 30px;
        }

        .benefit-card {
            background: white;
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            border-left: 5px solid #2ecc71;
            transition: transform 0.3s ease;
        }

        .benefit-card:hover {
            transform: translateY(-3px);
        }

        .benefit-card h4 {
            color: #2c3e50;
            font-size: 1.3em;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .benefit-card:first-child h4::before {
            content: '✨';
            font-size: 1.2em;
        }

        .benefit-card:last-child h4::before {
            content: '🎯';
            font-size: 1.2em;
        }

        .benefit-card p {
            color: #555;
            line-height: 1.6;
        }

        .studio-experience {
            background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
            color: white;
            padding: 30px;
            border-radius: 15px;
            margin-bottom: 30px;
            position: relative;
            overflow: hidden;
        }

        .studio-experience::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(46,204,113,0.1) 0%, transparent 70%);
            animation: pulse 6s ease-in-out infinite;
        }

        .studio-experience h3 {
            font-size: 1.6em;
            margin-bottom: 20px;
            color: #ecf0f1;
            position: relative;
            z-index: 1;
        }

        .studio-experience p {
            font-size: 1.1em;
            line-height: 1.6;
            opacity: 0.9;
            position: relative;
            z-index: 1;
        }

        .process-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin-bottom: 30px;
        }

        .process-step {
            background: white;
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            border: 2px solid #f8f9fa;
            position: relative;
            overflow: hidden;
        }

        .process-step::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #2ecc71, #1abc9c);
        }

        .process-step h4 {
            color: #2c3e50;
            font-size: 1.2em;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .process-step:nth-child(1) h4::before { content: '👕'; }
        .process-step:nth-child(2) h4::before { content: '📁'; }
        .process-step:nth-child(3) h4::before { content: '⚙️'; }
        .process-step:nth-child(4) h4::before { content: '🎥'; }
        .process-step:nth-child(5) h4::before { content: '✂️'; }
        .process-step:nth-child(6) h4::before { content: '👀'; }

        .process-step p {
            color: #555;
            line-height: 1.5;
        }

        .warning-box {
            background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
            color: white;
            padding: 20px;
            border-radius: 10px;
            margin: 20px 0;
            text-align: center;
            font-weight: bold;
            position: relative;
            overflow: hidden;
        }

        .warning-box::before {
            content: '⚠️';
            font-size: 2em;
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
        }

        .warning-box p {
            margin-left: 60px;
            font-size: 1.1em;
        }

        .contact {
            background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
            color: white;
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .contact::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: pulse 4s ease-in-out infinite;
        }

        .contact h3 {
            font-size: 1.6em;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }

        .contact-info {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-top: 20px;
            position: relative;
            z-index: 1;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.1em;
        }

        .contact-item::before {
            font-size: 1.3em;
        }

        .contact-item:first-child::before {
            content: '📧';
        }

        .contact-item:last-child::before {
            content: '📞';
        }

        .highlight {
            background: linear-gradient(135deg, #2ecc71, #1abc9c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: bold;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.1); opacity: 0.8; }
        }

        @media print {
            body {
                background: white;
                padding: 0;
            }
            
            .infographic {
                box-shadow: none;
                border-radius: 0;
            }
            
            .step-card:hover, .benefit-card:hover {
                transform: none;
            }
        }

        @media (max-width: 768px) {
            .benefits {
                grid-template-columns: 1fr;
            }
            
            .contact-info {
                flex-direction: column;
                gap: 15px;
            }
        }