
        body {
            font-family: 'Inter', sans-serif;
            background-color: #f3f4f6;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 40px 20px;
        }
        .main-card {
            background: white;
            width: 100%;
            max-width: 850px;
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            padding: 60px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
            margin-bottom: 30px;
        }
        @media (max-width: 640px) {
            .main-card {
                padding: 30px 20px;
            }
        }
        .meme-box {
            position: relative;
            width: 100%;
            background: #000;
            border-radius: 4px;
            overflow: hidden;
            margin: 40px 0;
        }
        .meme-text {
            position: absolute;
            bottom: 10px;
            left: 0;
            right: 0;
            text-align: center;
            color: white;
            font-weight: 900;
            font-size: clamp(1.2rem, 3vw, 2.5rem);
            text-transform: uppercase;
            line-height: 1.1;
            padding: 0 20px;
            text-shadow: 
                -2px -2px 0 #000,  
                 2px -2px 0 #000,
                -2px  2px 0 #000,
                 2px  2px 0 #000;
            letter-spacing: 0.5px;
        }
        .avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #1e293b;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        .step-circle {
            width: 48px;
            height: 48px;
            background: #1e293b;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .section-image {
            width: 100%;
            border-radius: 8px;
            margin: 24px 0;
            object-fit: cover;
            max-height: 400px;
        }
        .video-container {
            position: relative;
            padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
            height: 0;
            overflow: hidden;
            border-radius: 8px;
            margin: 30px 0;
            background: #000;
        }
        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 0;
        }
        .social-link {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 16px 24px;
            background: #f9fafb;
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            transition: all 0.2s;
            font-weight: 600;
            color: #374151;
            width: 100%;
        }
        .social-link:hover {
            background: #f3f4f6;
            border-color: #d1d5db;
            transform: translateY(-2px);
        }
        .stat-card {
            background: #f8fafc;
            border: 1px solid #f1f5f9;
            padding: 24px;
            border-radius: 12px;
            height: 100%;
        }
        .proof-image {
            width: 100%;
            border-radius: 12px;
            border: 1px solid #e5e7eb;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }
        .proof-image:hover {
            transform: scale(1.02);
        }
        .highlight-section {
            background-color: #204c8e;
            color: white;
            width: 100%;
            max-width: 850px;
            border-radius: 8px;
            padding: 40px;
            text-align: center;
            margin-bottom: 30px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        }
        .killer-point {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            padding: 20px;
            background: #fff5f5;
            border: 1px solid #fee2e2;
            border-radius: 12px;
            transition: transform 0.2s;
        }
        .killer-point:hover {
            transform: translateX(8px);
        }
        .solution-card {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            padding: 20px;
            background: #f0f9ff;
            border: 1px solid #e0f2fe;
            border-radius: 12px;
            transition: transform 0.2s;
        }
        .solution-card:hover {
            transform: scale(1.02);
        }
        .skill-item {
            display: flex;
            gap: 16px;
            padding: 20px;
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            border-radius: 12px;
        }
        .learning-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 12px;
            background: #f9fafb;
            border-radius: 8px;
            border-left: 4px solid #204c8e;
        }
        .expert-card {
            background: #ffffff;
            border: 1px solid #f1f5f9;
            padding: 20px;
            border-radius: 16px;
            box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
        }
        .cta-button {
            display: block;
            width: 100%;
            text-align: center;
            background-color: #204c8e;
            color: white;
            font-weight: 800;
            font-size: 1.25rem;
            padding: 20px;
            border-radius: 12px;
            transition: all 0.3s;
            box-shadow: 0 10px 15px -3px rgba(32, 76, 142, 0.3);
            text-decoration: none;
        }
        .cta-button:hover {
            background-color: #1a3d73;
            transform: translateY(-2px);
            box-shadow: 0 20px 25px -5px rgba(32, 76, 142, 0.4);
        }
        .testimonial-card {
            background: white;
            border: 1px solid #e5e7eb;
            border-radius: 16px;
            overflow: hidden;
            margin-bottom: 30px;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
        }
        .testimonial-header {
            padding: 20px 24px;
            background: #f8fafc;
            border-bottom: 1px solid #e5e7eb;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .testimonial-body {
            padding: 0;
        }
        .testimonial-image {
            width: 100%;
            height: auto;
            display: block;
        }
        .faq-item {
            border-bottom: 1px solid #f1f5f9;
            padding: 24px 0;
        }
        .faq-item:last-child {
            border-bottom: none;
        }
        .faq-question {
            font-size: 1.125rem;
            font-weight: 700;
            color: #0f172a;
            margin-bottom: 12px;
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }
        .faq-answer {
            color: #475569;
            line-height: 1.6;
            padding-left: 36px;
        }