
        body {
            font-family: 'Open Sans', sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f5f5f5;
            color: #333;
        }
        .container {
            max-width: 1000px;
            margin: 50px auto;
            padding: 20px;
            background-color: #fff;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            border-radius: 6px;
        }
        h1 {
            text-align: center;
            font-size: 32px;
            color: #d80c18;
            margin-bottom: 40px;
        }
        h2 {
            font-size: 20px;
            color: #333;
            margin-top: 40px;
            margin-bottom: 20px;
        }
        p {
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 30px;
            text-align: justify;
        }
        ul {
            font-size: 16px;
            line-height: 1.6;
            margin-left: 20px;
        }
        .content-block {
            display: flex;
            align-items: center;
            margin-bottom: 40px;
        }
        .text-content {
            flex: 1;
            padding-right: 20px;
        }
        .image-content {
            flex: 1;
        }
        .image-content img {
            width: 80%;
            height: auto;
            border-radius: 6px;
        }
        .separator {
            height: 1px;
            background-color: #ddd;
            margin: 40px 0;
        }
        footer {
            text-align: center;
            padding: 20px;
            background-color: #333;
            color: #fff;
            margin-top: 50px;
        }
        @media (max-width: 768px) {
            .content-block {
                flex-direction: column;
            }
            .text-content {
                padding-right: 0;
                margin-bottom: 20px;
            }
            .image-content img {
                width: 100%;
            }
        }
    