body {
  background: #f6fff6;
  color: #222;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

/* Header Styling */
header {
  background: #207a3c;
  color: #fff;
  padding: 20px 0;
}

header h1 {
  margin: 0;
  color: #fff;
  text-align: center;
}

nav {
  margin-top: 10px;
  text-align: center;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  gap: 20px;
}

nav li {
  display: inline;
}

nav a {
  color: #b8ffb8;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.08rem;
  transition: color 0.2s;
}

nav a:hover,
nav a:focus {
  color: #fff;
  text-decoration: underline;
}

/* Container Utility */
.container,
.contact-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Section Headings */
section h2,
section h3 {
  color: #207a3c;
  margin-top: 0;
}

section {
  padding: 40px 0 24px 0;
}

/* Hero Section */
#hero {
  background: #b8ffb8;
  padding: 48px 0;
  text-align: center;
}

#hero h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}

/* Services Lists */
#services ul {
  margin-bottom: 32px;
  padding-left: 22px;
}

/* Mission */
.mission {
  background: #f6fff6;
  border-left: 4px solid #207a3c;
  padding: 18px 20px;
  margin-top: 18px;
  border-radius: 8px;
}

/* Testimonials */
.testimonial {
  background: #eaffea;
  border-left: 4px solid #207a3c;
  margin-bottom: 18px;
  padding: 16px 18px;
  border-radius: 8px;
}

/* Contact Section */
#contact {
  background: 
    linear-gradient(rgba(255,255,255,0.85), rgba(255,255,255,0.85)),
    url('https://images.unsplash.com/photo-1515378791036-0648a3ef77b2?auto=format&fit=crop&w=800&q=80') center center/cover no-repeat;
  padding: 40px 0;
}

.contact-container {
  max-width: 450px;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(32,122,60,0.07);
  padding: 32px;
}

#contact h2 {
  margin-top: 0;
  text-align: center;
  color: #207a3c;
}

#contact form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#contact label {
  font-weight: 600;
  color: #207a3c;
  margin-bottom: 4px;
}

#contact input,
#contact textarea {
  border: 1px solid #b8ffb8;
  border-radius: 5px;
  padding: 10px;
  font-size: 1rem;
  transition: border-color 0.2s;
  background: #f6fff6;
  color: #222;
}

#contact input:focus,
#contact textarea:focus {
  border-color: #207a3c;
  outline: none;
}

#contact button[type="submit"] {
  margin-top: 8px;
  background: #207a3c;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 12px 0;
  font-size: 1.08rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}

#contact button[type="submit"]:hover {
  background: #185c2e;
}

#contact p {
  margin-top: 18px;
  text-align: center;
  font-size: 1.05rem;
}

#contact a {
  color: #207a3c;
  text-decoration: none;
  font-weight: bold;
}

#contact a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  background: #207a3c;
  color: #fff;
  text-align: center;
  padding: 10px 0;
  margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 900px) {
  .container {
    max-width: 96vw;
  }
  .contact-container {
    max-width: 96vw;
  }
}

@media (max-width: 600px) {
  nav ul {
    flex-direction: column;
    gap: 12px;
  }
  .contact-container {
    padding: 16px;
  }
  #hero h2 {
    font-size: 1.25rem;
  }
}
