body {
  font-family: 'Yu Gothic', sans-serif;
  margin: 0;
  padding: 0;
  background: #f8f9fa;
  color: #333;
}

header {
  background-color: #00416a;
  color: white;
  padding: 20px;
  text-align: center;
}

header h1 {
  margin: 0;
  font-size: 2em;
}

header p {
  margin: 5px 0 0;
}

main {
  padding: 20px;
}

.news-list h2 {
  font-size: 1.5em;
  margin-bottom: 10px;
}

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

.news-list li {
  margin-bottom: 10px;
}

.news-list a {
  text-decoration: none;
  color: #0077cc;
}

.news-list a:hover {
  text-decoration: underline;
}

footer {
  background: #eee;
  text-align: center;
  padding: 15px;
  font-size: 0.9em;
  color: #555;
  margin-top: 30px;
}