body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #fff;
  margin: 0;
  padding: 20px;
}

.section-title {
  text-align: center;
  font-size: 28px;
  color: #0073cf;
  margin-bottom: 30px;
}

.committee-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.member-card {
  width: 200px;
  text-align: center;
  background-color: #88eff1;
  border-radius: 12px;
  padding: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.member-card img {
  width: 100%;
  height: 220px;
  object-fit: fill;
  object-position: center;
  border-radius: 8px;
}

.member-card h3 {
  margin: 12px 0 5px;
  font-size: 18px;
  color: #0073cf;
}

.member-card p {
  margin: 0;
  font-size: 14px;
  color: #333;
}
.member-card {
  transition: transform 0.3s ease;
}

.member-card:hover {
  transform: scale(1.05);
}

