        #news {
            background: none;
        }

        .news-header {
            text-align: center;
            border-bottom: 1px solid #ddd;
            margin-bottom: 30px;
            padding-bottom: 10px;
        }

        .news-header h1 {
            font-size: 32px;
            margin: 0;
            letter-spacing: 2px;
        }

        .news-list {
            list-style: none;
            padding: 0;
        }

        .news-item {
            margin: 25px 0; /* Increased spacing above and below each item */
            padding-left: 20px;
            position: relative;
            line-height: 1.6;
        }

        .news-item::before {
            content: "•";
            position: absolute;
            left: 0;
            color: #333;
            top: 2px; /* Adjusted bullet position */
        }

        .news-date {
            font-weight: bold;
            color: #333;
        }

        .news-link {
            color: #0066cc;
            text-decoration: none;
            margin-left: 5px;
        }

        .news-link:hover {
            text-decoration: underline;
        }