
        body {
            font-family: 'Helvetica Neue', Arial, sans-serif;
            line-height: 1.7;
            color: #333;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            background-color: #f9f9f9;
        }
        .header {
            text-align: center;
            margin-bottom: 40px;
        }
        .cover-image {
            width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 20px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        h1 {
            color: #2c3e50;
            font-size: 2.2rem;
            margin-bottom: 10px;
            line-height: 1.3;
        }
        h2 {
            color: #34495e;
            font-size: 1.8rem;
            margin-top: 40px;
            padding-bottom: 10px;
            border-bottom: 2px solid #3498db;
        }
        h3 {
            color: #2980b9;
            font-size: 1.4rem;
        }
        .content-section {
            background: white;
            padding: 30px;
            border-radius: 8px;
            margin-bottom: 30px;
            box-shadow: 0 1px 5px rgba(0,0,0,0.05);
        }
        .image-container {
            margin: 30px 0;
            text-align: center;
        }
        .inline-image {
            max-width: 100%;
            height: auto;
            border-radius: 6px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        }
        .image-caption {
            color: #7f8c8d;
            font-size: 0.9rem;
            margin-top: 8px;
        }
        .callout {
            background-color: #e8f4f8;
            border-left: 4px solid #3498db;
            padding: 15px 20px;
            margin: 20px 0;
            border-radius: 0 4px 4px 0;
        }
        .grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin: 20px 0;
        }
        .grid-column {
            background: #f0f7ff;
            padding: 20px;
            border-radius: 6px;
        }
        /* New CSS for Step 2 Layout */
        .step2-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            align-items: center;
        }
        .step2-image {
            width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .step2-content {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }
        .step2-card {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 6px;
            border-left: 4px solid #3498db;
            transition: transform 0.3s ease;
        }
        .step2-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        .step2-card h3 {
            margin-top: 0;
            color: #2c3e50;
        }
        /* End of New CSS */
        ul, ol {
            margin-left: 20px;
            margin-bottom: 20px;
        }
        li {
            margin-bottom: 10px;
        }
        .checkbox {
            margin: 10px 0;
            display: flex;
            align-items: center;
        }
        .checkbox input {
            margin-right: 10px;
            width: 18px;
            height: 18px;
        }
        blockquote {
            border-left: 3px solid #2ecc71;
            padding-left: 15px;
            margin: 20px 0;
            color: #27ae60;
            font-style: italic;
        }
        hr {
            border: none;
            border-top: 1px solid #ddd;
            margin: 40px 0;
        }
        .light-joke {
            color: #2980b9;
            font-weight: 500;
        }
        @media (max-width: 768px) {
            h1 {
                font-size: 1.8rem;
            }
            h2 {
                font-size: 1.5rem;
            }
            .content-section {
                padding: 20px;
            }
            /* Responsive adjustment for Step 2 */
            .step2-layout {
                grid-template-columns: 1fr;
            }
        }
    