body {
  margin: 0;
  font-family: 'Open Sans', sans-serif;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
}


header {
  background-color: #ffffff;
  color: #333;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

nav a {
  color: #333;
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
}

.hero {
  padding: 40px 20px;
  text-align: center;
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.hero-images {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.hero-images img {
  width: 250px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

section {
  padding: 40px 20px;
  background-color: #ffffff;
  margin-top: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

footer {
  background-color: #ffffff;
  text-align: center;
  padding: 15px;
  font-size: 14px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@media (max-width: 600px) {
  .hero-images {
    flex-direction: column;
    align-items: center;
  }

  .hero-images img {
    width: 90%;
  }
}

