
 body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #f3fbf8;
  color: #1f2937;
}

.hero {
  min-height: 520px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  align-items: center;
  gap: 40px;
  padding: 70px 12%;
  background: linear-gradient(135deg, #dff7ec, #ffffff);
}
.hero-text {
  text-align: left;
}

.eyebrow {
  color: #2f855a;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero h1 {
  font-size: 64px;
  color: #1f4d3a;
  margin: 10px 0;
}

.hero-image {
  display: flex;
  justify-content: center;
}

.hero-image img {
  width: 320px;
  height: 320px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}
.hero-box {
  background-color: white;
  padding: 40px;
  border-radius: 30px;
  box-shadow: 0 12px 35px rgba(47, 133, 90, 0.18);
  text-align: left;
}

.button {
  display: inline-block;
  background-color: #2f855a;
  color: white;
  padding: 14px 30px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  margin-top: 20px;
}

.service-list {
  padding: 80px 12%;
  background-color: white;
}

.service-list h2 {
  font-size: 40px;
  color: #1f4d3a;
  margin-bottom: 35px;
}

.service-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 25px;
  align-items: center;
  border-top: 1px solid #d9f2e6;
  padding: 30px 0;
}

.service-row span {
  font-size: 36px;
  font-weight: bold;
  color: #9ae6b4;
}

.service-row h3 {
  color: #2f855a;
  font-size: 26px;
  margin-bottom: 8px;
}

.service-row p {
  font-size: 18px;
  margin: 0;
}

.contact-band {
  background-color: #1f4d3a;
  color: white;
  text-align: center;
  padding: 80px 20px;
}

.contact-band h2 {
  font-size: 42px;
}

.contact-band .button {
  background-color: white;
  color: #1f4d3a;
}

footer {
  background-color: #163829;
  color: white;
  text-align: center;
  padding: 25px;
}

.back-section {
  background-color: #f3fbf8;
  text-align: center;
  padding: 35px 20px;
}
    

