.our-team {
  text-align: center;
}

.team-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.team-member {
  width: 200px;
  margin: 20px;
  text-align: center;
}

.member-image {
  width: 150px;
  height: 150px;
  min-width: 150px; 
  min-height: 150px; 
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); 
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.name {
  margin-top: 10px;
  font-weight: bold;
}

.designation {
  margin-top: -16px;
  color: #666; 
}

