﻿ body {
            font-family: 'Arial', sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f4f4f9;
            color: #333;
        }

        /* Header Styles */
        .header {
            display: flex;
            align-items: center;
            background-color: #b53505;
            color: #fff;
            padding: 10px 20px;
        }

        .header img {
            width: 80px;
            height: 80px;
            margin-right: 20px;
        }

        .header h1 {
            margin: 0;
            font-size: 28px;
        }

        /* Navigation Menu */
        .nav {
            display: flex;
            justify-content: center;
            background-color: #e9e8e8;
            padding: 10px 0;
        }

        .nav a {
            text-decoration: none;
            color: #333;
            margin: 0 15px;
            font-size: 16px;
            font-weight: bold;
        }

        .nav a:hover {
            color: #b53505;
        }

        /* Sub-header for date, time, and day */
        .sub-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: #f5f5f5;
            padding: 10px 20px;
            font-size: 14px;
            border-bottom: 1px solid #ddd;
        }

        /* News Container */
        .news-container {
            width: 90%;
            max-width: 1200px;
            margin: 20px auto;
            background-color: #fff;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        .news-item {
            display: flex;
            flex-wrap: wrap;
            align-items: flex-start;
            border-bottom: 1px solid #ddd;
            padding: 15px 0;
        }

        .news-item:last-child {
            border-bottom: none;
        }

        .news-item a {
            text-decoration: none;
            color: #b53505;
            font-size: 18px;
            font-weight: bold;
        }

        .news-item img {
            width: 100%;
            max-width: 300px;
            height: auto;
            border-radius: 4px;
            margin-left: 20px;
        }

        .news-content {
            flex: 1;
            font-size: 16px;
            line-height: 1.6;
        }

        /* Footer */
        .footer {
            text-align: center;
            font-size: 14px;
            padding: 10px 20px;
            background-color: #b53505;
            color: #fff;
        }

        .footer a {
            text-decoration: none;
            color: #fff;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .header {
                flex-direction: column;
                text-align: center;
            }

            .header img {
                margin: 0 0 10px 0;
            }

            .news-item {
                flex-direction: column;
            }

            .news-item img {
                margin: 10px 0 0 0;
            }
        }