        body {
            font-family: Arial, sans-serif;
            background-color: #f5f5f5;
            padding: 20px;
        }

        h1 {
            font-size: 50px;
            margin-bottom: 20px;
        }

        .news-item {
            background-color: #fff;
            border-radius: 25px;
            padding: 20px;
            margin-bottom: 20px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        .news-title {
            font-size: 20px;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .news-date {
            color: #888;
            font-size: 14px;
            margin-bottom: 10px;
        }

        .news-content {
            font-size: 16px;
            line-height: 1.5;
        }

        .read-more {
            display: inline-block;
            color: #007bff;
            text-decoration: none;
            font-size: 14px;
            padding: 5px 10px;
            border-radius: 3px;
            transition: background-color 0.3s ease;
        }

        .read-more:hover {
            background-color: #007bff;
            color: #fff;
        }

        .copyright {
            font-size: 12px;
            color: #888;
            margin-top: 20px;
            text-align: center;
        }
