body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #f4f1eb;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 10px 20px;
}
.logo {
  height: 60px;
}
nav a {
  margin: 0 10px;
  text-decoration: none;
  color: #333;
}
.hero {
  text-align: center;
  padding: 20px;
}
.hero img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
}
footer {
  text-align: center;
  padding: 10px;
  background: #ddd;
  font-size: 0.9rem;
}