
        body {
            font-family: 'Open Sans', sans-serif;
            color: #333;
            line-height: 1.6;
            margin: 0;
            padding: 0;
            background-color: #f4f4f4;
        }
        .container {
            max-width: 1200px;
            margin: 20px auto;
            padding: 20px;
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }
        .header {
            text-align: center;
            margin-bottom: 20px;
        }
        .header h1 {
            font-size: 3rem;
            font-weight: bold;
            color: #D80C18;
            margin: 0;
        }
        .content img {
            max-width: 100%;
            height: auto;
            display: block;
            margin: 20px 0;
            border-radius: 8px;
            box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
        }
        .content h2 {
            font-size: 2.5rem;
            font-weight: bold;
            color: #D80C18;
            margin-top: 30px;
            border-bottom: 3px solid #D80C18;
            padding-bottom: 10px;
        }
        .content p {
            font-size: 1rem;
            margin-bottom: 20px;
        }
        .content .caption {
            font-style: italic;
            color: #666;
            font-size: 0.9rem;
        }
        @media (max-width: 768px) {
            .header h1 {
                font-size: 2.5rem;
            }
            .content h2 {
                font-size: 2rem;
            }
            .content p {
                font-size: 0.9rem;
            }
        }
    