body {
  font-family: Arial, sans-serif;
  margin: 0;
  color: #333;
  background: #fff;
}

.header {
  background: #111;
  color: white;
  padding: 2rem;
  text-align: center;
}

.banner-img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  margin-top: 1rem;
}

.section {
  padding: 2rem;
}

.section.alt {
  background: #f5f5f5;
}

.section-img {
  width: 100%;
  max-width: 600px;
  display: block;
  margin: 1rem auto;
}

.contact-form {
  display: flex;
  flex-direction: column;
  max-width: 400px;
}

.contact-form input,
.contact-form textarea {
  margin-bottom: 1rem;
  padding: 0.75rem;
  font-size: 1rem;
}

.contact-form button {
  background: #111;
  color: white;
  padding: 0.75rem;
  border: none;
  cursor: pointer;
}

.footer {
  text-align: center;
  padding: 1rem;
  background: #eee;
  font-size: 0.9rem;
}