
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
            padding: 20px;
        }

        .infographic {
            max-width: 1200px;
            margin: 0 auto;
            background: white;
            border-radius: 20px;
            box-shadow: 0 25px 50px rgba(0,0,0,0.1);
            overflow: hidden;
            position: relative;
        }

        .header {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 40px 30px;
            text-align: center;
            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: pulse 4s ease-in-out infinite;
        }

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

        .header h1 {
            font-size: 2.5em;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            position: relative;
            z-index: 1;
        }

        .header .subtitle {
            font-size: 1.2em;
            opacity: 0.9;
            position: relative;
            z-index: 1;
        }

        .intro {
            padding: 40px 30px;
            background: linear-gradient(to right, #f8f9fa, #e9ecef);
            border-left: 5px solid #667eea;
        }

        .intro p {
            font-size: 1.1em;
            line-height: 1.7;
            color: #333;
            text-align: justify;
        }

        .intro strong {
            color: #667eea;
            font-weight: 600;
        }

        .journey-container {
            padding: 50px 30px;
            background: white;
        }

        .journey-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .journey-title h2 {
            font-size: 2.2em;
            color: #333;
            margin-bottom: 10px;
            position: relative;
        }

        .journey-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(to right, #667eea, #764ba2);
            border-radius: 2px;
        }

        .journey-subtitle {
            font-size: 1.1em;
            color: #666;
            font-style: italic;
        }

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

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

        .resource-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(to right, #667eea, #764ba2);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .resource-card:hover::before {
            transform: scaleX(1);
        }

        .resource-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
            border-color: #667eea;
        }

        .resource-card.beginner {
            border-left: 5px solid #28a745;
        }

        .resource-card.intermediate {
            border-left: 5px solid #ffc107;
        }

        .resource-card.advanced {
            border-left: 5px solid #dc3545;
        }

        .resource-card.video {
            border-left: 5px solid #6f42c1;
        }

        .resource-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .resource-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            font-size: 1.5em;
            color: white;
            flex-shrink: 0;
        }

        .beginner .resource-icon {
            background: linear-gradient(135deg, #28a745, #20c997);
        }

        .intermediate .resource-icon {
            background: linear-gradient(135deg, #ffc107, #fd7e14);
        }

        .advanced .resource-icon {
            background: linear-gradient(135deg, #dc3545, #e83e8c);
        }

        .video .resource-icon {
            background: linear-gradient(135deg, #6f42c1, #e83e8c);
        }

        .resource-title {
            font-size: 1.3em;
            font-weight: 600;
            color: #333;
            margin-bottom: 5px;
        }

        .resource-provider {
            font-size: 0.9em;
            color: #666;
            font-style: italic;
        }

        .resource-description {
            color: #555;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .resource-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 20px;
        }

        .meta-tag {
            background: #f8f9fa;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.85em;
            color: #666;
            border: 1px solid #e9ecef;
        }

        .resource-link {
            display: inline-flex;
            align-items: center;
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            text-decoration: none;
            padding: 12px 25px;
            border-radius: 25px;
            font-weight: 500;
            transition: all 0.3s ease;
            margin-top: auto;
        }

        .resource-link:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
        }

        .resource-link::after {
            content: '→';
            margin-left: 10px;
            transition: transform 0.3s ease;
        }

        .resource-link:hover::after {
            transform: translateX(5px);
        }

        .pathway-flow {
            margin-top: 50px;
            padding: 40px;
            background: linear-gradient(to right, #f8f9fa, #e9ecef);
            border-radius: 15px;
            border: 2px dashed #667eea;
        }

        .pathway-title {
            text-align: center;
            font-size: 1.5em;
            color: #333;
            margin-bottom: 30px;
        }

        .pathway-steps {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .step {
            background: white;
            padding: 15px 20px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            font-weight: 500;
            color: #333;
            position: relative;
        }

        .step::after {
            content: '→';
            position: absolute;
            right: -30px;
            top: 50%;
            transform: translateY(-50%);
            color: #667eea;
            font-size: 1.2em;
        }

        .step:last-child::after {
            display: none;
        }

        .footer {
            background: #333;
            color: white;
            padding: 30px;
            text-align: center;
        }

        .footer h3 {
            margin-bottom: 15px;
            color: #667eea;
        }

        .footer p {
            opacity: 0.8;
        }

        @media (max-width: 768px) {
            .header h1 {
                font-size: 2em;
            }
            
            .header .subtitle {
                font-size: 1em;
            }
            
            .intro {
                padding: 30px 20px;
            }
            
            .journey-container {
                padding: 30px 20px;
            }
            
            .resources-grid {
                grid-template-columns: 1fr;
            }
            
            .pathway-steps {
                flex-direction: column;
            }
            
            .step::after {
                display: none;
            }
        }