body {
    background-color: #f7f7f7;
}

.banner {
    text-align: center;
    margin: 2rem 0;
}

.banner img {
    max-width: 700px;    /* control maximum size on desktop */
    width: 100%;         /* allow shrink on small screens */
    height: auto;        /* keep proportions */
    display: inline-block;
    margin-bottom: 2rem;
}

.news-section {
    padding: 2rem;
    background-color: #f7f7f7;
}

.news-section h2 {
    text-align: center;
    color: #004080;
    margin-bottom: 1.5rem;
}

.news-item {
    background-color: white;
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.news-item h3 {
    margin-bottom: 0.5rem;
    color: #333;
}

@media (max-width: 768px) {
    .news-section {
        padding: 1rem;
    }
}
