body {
  background: white;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

.header {
  background: #1e64a5;
  text-align: center;
  padding: 20px 20px;
  color: white;
}

.header h1 {
  font-size: 52px;
  font-weight: bold;
  margin-bottom: 10px;
}

.header p {
  font-size: 18px;
}

.news-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 70px 30px;
  flex-wrap: wrap;
}

.news-card {
  width: 360px;
  background: white;
  border-radius: 10px;
  padding: 18px;
  border: 1px solid #d9d9d9;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.news-img {
  height: 200px;
  border-radius: 6px;
  background: #cfd6df;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #666;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 18px;
}

.news-card h2 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #222;
}

.date {
  display: block;
  font-size: 14px;
  margin-bottom: 12px;
  color: #666;
}

.news-card p {
  font-size: 15px;
  line-height: 22px;
  color: #333;
  margin-bottom: 18px;
}

.news-card a {
  text-decoration: none;
  color: #1e64a5;
  font-weight: bold;
}

.footer {
  text-align: center;
  padding: 30px;
  font-size: 14px;
  color: #666;
}
