/* ===== About Us Section ===== */
#about {
  padding: 0rem 2rem;
  padding-bottom: 2rem;
  background-color: #f7fdf9; /* soft light greenish background for calm feel */
  text-align: center;
  color: #1b4332;
  box-sizing: border-box;
}

/* Section Title */
#about h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #2E8B57; /* brand green */
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

/* Decorative underline */
#about h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #2E8B57;
  margin: 0.5rem auto 0;
  border-radius: 2px;
}

/* About text */
#about p {
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
  color: #333;
}

