
        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&display=swap');
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
            padding: 20px;
        }
        
        .infographic {
            max-width: 1100px;
            margin: 0 auto;
            background: white;
            border-radius: 25px;
            box-shadow: 0 30px 80px rgba(0,0,0,0.15);
            overflow: hidden;
            position: relative;
        }
        
        .header {
            background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
            color: white;
            padding: 60px 40px;
            text-align: center;
            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="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="30" r="1.5" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="70" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="80" r="2.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
            animation: float 20s linear infinite;
        }
        
        @keyframes float {
            0% { transform: translateY(0); }
            100% { transform: translateY(-100px); }
        }
        
        .header h1 {
            font-size: 3.2rem;
            font-weight: 700;
            margin-bottom: 15px;
            position: relative;
            z-index: 1;
        }
        
        .header .subtitle {
            font-size: 1.4rem;
            opacity: 0.9;
            position: relative;
            z-index: 1;
            font-weight: 300;
        }
        
        .overview {
            padding: 60px 40px;
            background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
            position: relative;
        }
        
        .overview-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }
        
        .overview h2 {
            font-size: 2.3rem;
            color: #2c3e50;
            margin-bottom: 25px;
            font-weight: 600;
        }
        
        .overview p {
            font-size: 1.3rem;
            line-height: 1.8;
            color: #34495e;
            margin-bottom: 40px;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 25px;
            margin-top: 40px;
        }
        
        .stat-card {
            background: white;
            padding: 30px;
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            text-align: center;
            transition: transform 0.3s ease;
        }
        
        .stat-card:hover {
            transform: translateY(-10px);
        }
        
        .stat-card h3 {
            font-size: 1.1rem;
            color: #7f8c8d;
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        .stat-card .value {
            font-size: 2rem;
            font-weight: 700;
            color: #e74c3c;
        }
        
        .implementation-section {
            padding: 70px 40px;
            background: white;
        }
        
        .section-title {
            text-align: center;
            font-size: 2.8rem;
            color: #2c3e50;
            margin-bottom: 60px;
            font-weight: 600;
        }
        
        .implementation-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .implementation-card {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 40px;
            border-radius: 25px;
            color: white;
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .implementation-card:nth-child(2) {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
        }
        
        .implementation-card:nth-child(3) {
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
        }
        
        .implementation-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0,0,0,0.2);
        }
        
        .implementation-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 25% 25%, rgba(255,255,255,0.2) 0%, transparent 50%);
            pointer-events: none;
        }
        
        .card-icon {
            width: 80px;
            height: 80px;
            background: rgba(255,255,255,0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            margin-bottom: 25px;
            position: relative;
            z-index: 1;
        }
        
        .implementation-card h3 {
            font-size: 1.6rem;
            font-weight: 600;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }
        
        .implementation-card p {
            font-size: 1.05rem;
            line-height: 1.7;
            opacity: 0.95;
            position: relative;
            z-index: 1;
        }
        
        .roles-section {
            background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
            padding: 70px 40px;
        }
        
        .roles-container {
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .roles-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .role-card {
            background: white;
            padding: 35px;
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        
        .role-card:hover {
            transform: translateY(-8px);
        }
        
        .role-header {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
        }
        
        .role-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: white;
            margin-right: 20px;
        }
        
        .role-card h4 {
            font-size: 1.4rem;
            color: #2c3e50;
            font-weight: 600;
        }
        
        .role-list {
            list-style: none;
            padding: 0;
        }
        
        .role-list li {
            margin-bottom: 12px;
            padding-left: 25px;
            position: relative;
            font-size: 1rem;
            line-height: 1.5;
            color: #34495e;
        }
        
        .role-list li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #27ae60;
            font-weight: bold;
            font-size: 1.1rem;
        }
        
        .leadership-section {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 70px 40px;
            color: white;
        }
        
        .leadership-content {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }
        
        .leadership-title {
            font-size: 2.5rem;
            margin-bottom: 30px;
            font-weight: 600;
        }
        
        .leadership-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .leadership-card {
            background: rgba(255,255,255,0.1);
            padding: 30px;
            border-radius: 20px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255,255,255,0.2);
            transition: transform 0.3s ease;
        }
        
        .leadership-card:hover {
            transform: translateY(-5px);
        }
        
        .leadership-card h5 {
            font-size: 1.2rem;
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        .leadership-card p {
            font-size: 1rem;
            line-height: 1.6;
            opacity: 0.9;
        }
        
        .tips-section {
            background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
            padding: 70px 40px;
        }
        
        .tips-content {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .tips-title {
            text-align: center;
            font-size: 2.5rem;
            color: #2c3e50;
            margin-bottom: 50px;
            font-weight: 600;
        }
        
        .tips-grid {
            display: grid;
            gap: 25px;
        }
        
        .tip-item {
            background: white;
            padding: 30px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            display: flex;
            align-items: center;
            transition: transform 0.3s ease;
        }
        
        .tip-item:hover {
            transform: translateX(10px);
        }
        
        .tip-number {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            font-weight: 700;
            color: white;
            margin-right: 25px;
            flex-shrink: 0;
        }
        
        .tip-content h6 {
            font-size: 1.2rem;
            color: #2c3e50;
            margin-bottom: 8px;
            font-weight: 600;
        }
        
        .tip-content p {
            color: #7f8c8d;
            line-height: 1.5;
            font-size: 1rem;
        }
        
        .references {
            background: #2c3e50;
            color: white;
            padding: 50px 40px;
        }
        
        .references h4 {
            font-size: 1.6rem;
            margin-bottom: 30px;
            color: #3498db;
            text-align: center;
        }
        
        .references ul {
            list-style: none;
            max-width: 900px;
            margin: 0 auto;
        }
        
        .references li {
            margin-bottom: 15px;
            font-size: 0.95rem;
            line-height: 1.5;
            opacity: 0.9;
            padding-left: 25px;
            position: relative;
        }
        
        .references li::before {
            content: '📄';
            position: absolute;
            left: 0;
            font-size: 1rem;
        }
        
        .footer {
            background: #34495e;
            color: white;
            padding: 40px;
            text-align: center;
        }
        
        .footer h4 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: #3498db;
        }
        
        .footer p {
            opacity: 0.8;
            font-size: 1rem;
            line-height: 1.5;
        }
        
        @media (max-width: 768px) {
            .header h1 {
                font-size: 2.5rem;
            }
            
            .implementation-grid {
                grid-template-columns: 1fr;
            }
            
            .tip-item {
                flex-direction: column;
                text-align: center;
            }
            
            .tip-number {
                margin-right: 0;
                margin-bottom: 20px;
            }
        }
        
        @media print {
            body {
                background: white;
                padding: 0;
            }
            
            .infographic {
                box-shadow: none;
                border-radius: 0;
            }
            
            .implementation-card:hover, .role-card:hover, .tip-item:hover {
                transform: none;
            }
        }
