body {
  font-family: "Poppins", sans-serif;
  background-color: #f8fdf8;
  color: #333;
}

.section-padding {
  padding: 100px 0;
}

.section-heading h2 {
  color: #1a5d2b;
  font-weight: 700;
}

.section-heading p {
  max-width: 700px;
  margin: 0 auto;
  color: #555;
}

h4 {
  color: #1a5d2b;
  font-weight: 600;
}

.mission-card {
  border: none;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 100, 0, 0.1);
  background: #fff;
}

.mission-card .card-title {
  font-weight: 600;
  color: #1a5d2b;
}

.value-box {
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 100, 0, 0.1);
  padding: 20px 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-box i {
  font-size: 30px;
  color: #1a5d2b;
  margin-bottom: 10px;
}

.value-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 100, 0, 0.25);
}

.team-member {
  background: #fff;
  border-radius: 15px;
  padding: 15px;
  box-shadow: 0 4px 10px rgba(0, 100, 0, 0.1);
}

.team-img {
  width: 100%;
  border-radius: 50%;
  height: 180px;
  object-fit: cover;
  margin-bottom: 10px;
}

.team-member h6 {
  color: #1a5d2b;
  font-weight: 600;
}

.footer {
  background-color: #1a5d2b;
  color: white;
  padding: 30px 0;
  font-size: 14px;
}

.footer p {
  margin: 5px 0;
}

/* ===== Leadership Section ===== */

.leadership-section {
  background: #f8f9fa;
}

.leadership-card {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
  height: 100%;
  transition: transform 0.3s ease;
}

.leadership-card:hover {
  transform: translateY(-5px);
}

.leadership-card h6 {
  margin-top: 15px;
  font-weight: 700;
}

.role {
  font-size: 14px;
  font-weight: 600;
  color: #3f7e44; /* SDG Green */
}

.qualification {
  font-size: 13px;
  color: #666;
}

.leadership-card a {
  font-size: 13px;
  color: #2c7be5;
  text-decoration: none;
}

.leadership-card a:hover {
  text-decoration: underline;
}

.leader-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
}

.leader-icon.executive { background: #19486a; } /* SDG 17 */
.leader-icon.finance { background: #fd9d24; }   /* SDG 8 */
.leader-icon.board { background: #c5192d; }     /* SDG 10 */
.leader-icon.chair { background: #3f7e44; }     /* SDG 13 */

.leadership-card.highlight {
  border: 2px solid #19486a;
}
