body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #f7f7f7;
  margin: 0;
  padding: 0;
  color: #333;
}
.container {
  width: 90%;
  max-width: 960px;
  margin: 0 auto;
  padding: 20px 0;
}
header {
  background-color: #004d99;
  color: white;
  padding: 15px 0;
  margin-bottom: 20px;
}
header h1 {
  margin: 0;
  font-size: 1.8em;
  font-weight: normal;
}
header h1 a {
  color: white;
  text-decoration: none;
}
nav ul {
  list-style: none;
  padding: 0;
  margin: 10px 0 0 0;
  display: flex;
  gap: 15px;
}
nav ul li {
  display: inline;
}
nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}
nav ul li a[aria-current="page"] {
  text-decoration: underline;
}
main {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.featured-article, .latest-articles {
  flex: 2 1 60%;
  background-color: white;
  padding: 15px;
  border-radius: 4px;
  box-shadow: 0 0 4px rgba(0,0,0,0.1);
  margin-bottom: 20px;
}
.sidebar {
  flex: 1 1 30%;
  background-color: white;
  padding: 15px;
  border-radius: 4px;
  box-shadow: 0 0 4px rgba(0,0,0,0.1);
  margin-bottom: 20px;
}
h2, h3 {
  color: #004d99;
}
h3 a {
  color: #004d99;
  text-decoration: none;
}
h3 a:hover {
  text-decoration: underline;
}
.author-date {
  font-size: 0.9em;
  color: #666;
  margin-top: 5px;
}
ul {
  padding-left: 20px;
}
footer {
  background-color: #222;
  color: white;
  text-align: center;
  padding: 15px 0;
  margin-top: 40px;
}
footer nav ul {
  justify-content: center;
  display: flex;
  gap: 15px;
  margin: 10px 0 0 0;
}
footer nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 0.9em;
}
form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
input[type="text"], input[type="email"], textarea {
  padding: 8px;
  font-size: 1em;
  border: 1px solid #ccc;
  border-radius: 2px;
  resize: vertical;
}
button {
  background-color: #004d99;
  color: white;
  border: none;
  padding: 10px;
  font-size: 1em;
  cursor: pointer;
  border-radius: 2px;
}
button:hover {
  background-color: #003366;
}
.contact-info p {
  margin: 5px 0;
}
@media (max-width: 700px) {
  main {
    flex-direction: column;
  }
  .featured-article, .latest-articles, .sidebar {
    flex: 1 1 100%;
  }
}
