
        .infographic {
            max-width: 8.5in;
            width: 100%;
            margin: 1em 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, #e74c3c 0%, #c0392b 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"><circle cx="20" cy="20" r="3" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="30" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="60" cy="70" r="2.5" fill="rgba(255,255,255,0.1)"/><circle cx="30" cy="80" r="3" fill="rgba(255,255,255,0.1)"/><rect x="40" y="40" width="20" height="15" fill="rgba(255,255,255,0.1)" rx="2"/></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 #e74c3c;
        }

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

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

        .timing-alert {
            background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
            color: white;
            padding: 25px;
            border-radius: 15px;
            margin-bottom: 30px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .timing-alert::before {
            content: '⏰';
            font-size: 3em;
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            opacity: 0.3;
        }

        .timing-alert h3 {
            font-size: 1.5em;
            margin-bottom: 10px;
        }

        .timing-alert p {
            font-size: 1.1em;
            margin-left: 80px;
        }

        .service-types {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 25px;
            margin-bottom: 40px;
        }

        .service-card {
            background: white;
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            border: 2px solid #f8f9fa;
            transition: transform 0.3s ease;
            position: relative;
            overflow: hidden;
        }

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

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #e74c3c, #c0392b);
        }

        .service-card.complex::before {
            background: linear-gradient(90deg, #9b59b6, #8e44ad);
        }

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

        .service-card.simple h4::before {
            content: '📹';
            font-size: 1.2em;
        }

        .service-card.complex h4::before {
            content: '🎬';
            font-size: 1.2em;
        }

        .service-card ul {
            list-style: none;
            margin-left: 0;
        }

        .service-card li {
            color: #555;
            margin-bottom: 8px;
            padding-left: 20px;
            position: relative;
        }

        .service-card li::before {
            content: '•';
            color: #e74c3c;
            font-size: 1.2em;
            position: absolute;
            left: 0;
        }

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

        .lecture-capture::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(231,76,60,0.1) 0%, transparent 70%);
            animation: pulse 6s ease-in-out infinite;
        }

        .lecture-capture h3 {
            font-size: 1.6em;
            margin-bottom: 20px;
            color: #ecf0f1;
            position: relative;
            z-index: 1;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .lecture-capture h3::before {
            content: '🎓';
            font-size: 1.2em;
        }

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

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

        .note-card {
            background: white;
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            border-left: 5px solid #e74c3c;
        }

        .note-card.marketing {
            border-left-color: #9b59b6;
        }

        .note-card.ownership {
            border-left-color: #3498db;
        }

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

        .note-card.marketing h4::before {
            content: '📢';
            font-size: 1.2em;
        }

        .note-card.ownership h4::before {
            content: '🏛️';
            font-size: 1.2em;
        }

        .note-card.copyright h4::before {
            content: '©️';
            font-size: 1.2em;
        }

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

        .permissions {
            background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
            color: white;
            padding: 30px;
            border-radius: 15px;
            margin-bottom: 30px;
        }

        .permissions h3 {
            font-size: 1.6em;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .permissions h3::before {
            content: '📋';
            font-size: 1.2em;
        }

        .permission-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }

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

        .permission-item h4 {
            font-size: 1.1em;
            margin-bottom: 10px;
            color: #ecf0f1;
        }

        .permission-item p {
            font-size: 0.95em;
            opacity: 0.9;
            line-height: 1.4;
        }

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

        .delivery h3 {
            font-size: 1.6em;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .delivery h3::before {
            content: '☁️';
            font-size: 1.2em;
        }

        .delivery p {
            font-size: 1.1em;
            opacity: 0.9;
            line-height: 1.6;
        }

        .contact {
            background: linear-gradient(135deg, #e74c3c 0%, #c0392b 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, #e74c3c, #c0392b);
            -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;
            }
            
            .service-card:hover {
                transform: none;
            }
        }

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