
        body {
            font-family: 'Georgia', serif;
            line-height: 1.6;
            margin: 0;
            padding: 0;
            background-color: #f4f4f4;
            color: #333;
        }

        .container {
            max-width: 800px;
            margin: 20px auto;
            padding: 20px;
            background-color: #fff;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }

        h1, h2, h3 {
            font-family: 'Arial Black', sans-serif;
            color: #1a1a1a;
            margin-bottom: 0.8em;
        }

        h1 {
            font-size: 2.5em;
            text-align: center;
            border-bottom: 3px solid #333;
            padding-bottom: 10px;
            margin-bottom: 1em;
            color: #0056b3; /* Example Header Color */
        }

        h2 {
            font-size: 1.8em;
            border-left: 5px solid; /* Color will be set per section */
            padding-left: 10px;
            margin-top: 1.5em;
        }

        p {
            margin-bottom: 1em;
            text-align: justify;
        }

        ul {
            list-style: disc;
            margin-left: 20px;
            margin-bottom: 1em;
        }

        li {
            margin-bottom: 0.5em;
        }

        a {
            color: #0056b3;
            text-decoration: none;
        }

        a:hover {
            text-decoration: underline;
        }

        img.content-image {
            display: block;
            max-width: 100%; /* Makes image responsive */
            height: auto;
            margin: 20px auto; /* Center image */
            border: 1px solid #ccc;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }

        .image-caption {
            text-align: center;
            font-style: italic;
            color: #666;
            margin-top: 5px;
            margin-bottom: 20px;
            font-size: 0.9em;
        }

        .cta-button {
            display: inline-block;
            background-color: #28a745;
            color: white;
            padding: 12px 25px;
            text-align: center;
            font-size: 1.1em;
            font-weight: bold;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            text-decoration: none;
            margin-top: 10px;
            transition: background-color 0.3s ease;
        }

        .cta-button:hover {
            background-color: #218838;
            text-decoration: none;
        }

        /* Section Specific Colors - Newspaper Style (Subtle Variations) */
        /* Using HSL for easier color variations (Hue, Saturation, Lightness) */
        .section-why { border-left-color: hsl(200, 50%, 50%); /* Muted Blue */ }
        .section-genres { border-left-color: hsl(120, 30%, 55%); /* Soft Green */ }
        .section-start { border-left-color: hsl(45, 60%, 60%); /* Warm Yellow/Gold */ }
        .section-features { border-left-color: hsl(280, 35%, 65%); /* Gentle Purple */ }
        .section-movies { border-left-color: hsl(0, 40%, 60%); /* Muted Red/Pink */ }
        .section-alternatives { border-left-color: hsl(30, 50%, 55%); /* Soft Orange */ }
        .section-faq { border-left-color: hsl(180, 30%, 50%); /* Teal/Cyan */ }
        .section-conclusion { border-top: 2px solid hsl(0, 0%, 70%); margin-top: 2em; padding-top: 1em;}

        /* Responsive Design */
        @media (max-width: 768px) {
            body {
                font-size: 16px;
            }
            .container {
                margin: 10px;
                padding: 15px;
                width: auto;
            }
            h1 {
                font-size: 2em;
            }
            h2 {
                font-size: 1.5em;
            }
            img.content-image {
                 max-width: 95%; /* Slightly smaller margin on mobile */
            }
        }

        @media (max-width: 480px) {
            body {
                font-size: 15px;
            }
            h1 {
                font-size: 1.8em;
            }
            h2 {
                font-size: 1.3em;
            }
             .cta-button {
                display: block; /* Full width button on small screens */
                width: 90%;
                margin: 15px auto;
            }
        }
    