body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  background-color: #f4f9f6;
  color: #2d2d2d;
}

header {
  background-color: #d0e9dc;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
}

nav a {
  margin-left: 1.5rem;
  text-decoration: none;
  color: #1e4d3d;
  font-weight: 600;
}

nav a:hover {
  text-decoration: underline;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 4rem 2rem;
  background: linear-gradient(to right, #eafaf1, #f0fdf7);
}

.hero-text {
  flex: 1;
  padding-right: 2rem;
  max-width: 600px;
}

.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.button {
  padding: 0.8rem 1.5rem;
  background-color: #1e4d3d;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
}

.button:hover {
  background-color: #256d52;
}

.hero-image img {
  max-width: 300px;
  border-radius: 20px;
}

.highlights {
  display: flex;
  justify-content: space-around;
  background-color: #ffffff;
  padding: 3rem 2rem;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

.highlight {
  flex: 1;
  margin: 0 1rem;
  text-align: center;
}

.testimonial {
  background-color: #f1fdf6;
  padding: 3rem 2rem;
  text-align: center;
}

.testimonial blockquote {
  font-style: italic;
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}

footer {
  background-color: #d0e9dc;
  padding: 1.5rem;
  text-align: center;
  font-size: 0.9rem;
}

.footer-tag {
  font-style: italic;
  margin-top: 0.5rem;
  color: #456b5e;
}