body {
  font-family: 'Montserrat', sans-serif;
  background-color: #fdf5ee;
  color: #000;
  margin: 0;
  padding: 0;
  text-align: center;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #ffffff;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.2rem;
  margin: 0;
  padding: 0;
}
.nav-links a {
  text-decoration: none;
  color: #007f57;
  font-weight: 600;
}
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 70vh;
}
.hero-logo {
  width: 150px;
  margin-bottom: 1rem;
}
footer {
  background-color: #ffffff;
  padding: 1rem;
  font-size: 0.9rem;
  color: #007f57;
}
