
        body {
            font-family: 'Open Sans', sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f4f4f4;
            color: #333;
        }
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 20px auto;
            padding: 20px;
            background: #fff;
            box-shadow: 0 0 20px rgba(0,0,0,0.1);
            border-radius: 10px;
            display: flex;
            flex-direction: column;
        }
        .news-content {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .image-container {
            text-align: center;
        }
        .image-container img {
            width: 100%;
            max-width: 900px;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 0 15px rgba(0,0,0,0.1);
        }
        .text, .process {
            padding: 20px;
            border: 1px solid #ddd;
            border-radius: 10px;
            background: #fff;
        }
        .process {
            margin-top: 20px;
        }
        .process h3 {
            font-size: 1.5em;
            color: #D80C18;
            margin-bottom: 15px;
        }
        .process ul {
            list-style-type: disc;
            padding-left: 20px;
        }
        .process li {
            margin-bottom: 10px;
        }
        @media (min-width: 768px) {
            .news-content {
                flex-direction: row;
                align-items: flex-start;
            }
            .text {
                flex: 2;
                padding-right: 20px;
            }
            .image-container {
                flex: 1;
            }
        }
    