.about-section {
  padding: 80px 20px;
  text-align: center;
  background-color: #f9f9f9;
}

.about-container {
  max-width: 1000px;
  margin: 0 auto;
}

.about-container h2 {
  font-size: 34px;
  color: #145a2f;
  margin-bottom: 20px;
}

.about-container p {
  color: #555;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 25px;
  text-align: justify;
}

.about-container strong {
  color: #145a2f;
}

.about-image {
  width: 100%;
  max-width: 850px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  margin-top: 40px;
}

.mission-section {
  background-color: #fff;
  padding: 70px 20px;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

.mission-card {
  background: #f4f4f4;
  border-radius: 12px;
  padding: 35px 20px;
  text-align: center;
  transition: 0.3s ease;
  border-top: 5px solid #145a2f;
}

.mission-card:hover {
  background-color: #e9f5ee;
  transform: translateY(-6px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.mission-card i {
  font-size: 40px;
  color: #145a2f;
  margin-bottom: 10px;
}

.mission-card h3 {
  color: #145a2f;
  margin-bottom: 10px;
  font-size: 20px;
}

.mission-card p {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}

.team-section {
  background-color: #f9f9f9;
  padding: 80px 20px;
  text-align: center;
}

.team-section h2 {
  font-size: 32px;
  color: #145a2f;
  margin-bottom: 40px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.team-member {
  background: #fff;
  border-radius: 12px;
  padding: 25px 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.team-member:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.team-member img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
}

.team-member h3 {
  color: #145a2f;
  font-size: 18px;
  margin-bottom: 5px;
}

.team-member p {
  color: #777;
  font-size: 14px;
}

@media (max-width: 900px) {
  .about-container h2 {
    font-size: 28px;
  }
  .mission-card h3 {
    font-size: 18px;
  }
}

@media (max-width: 600px) {
  .about-container {
    text-align: left;
  }
  .about-container h2 {
    font-size: 26px;
  }
  .about-container p {
    font-size: 15px;
  }
  .team-member img {
    height: 180px;
  }
}

/* ===============================
      CreatedBy Isac Pelembe    
   =============================== */