.team-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.team-member {
  width: 250px; /* Adjust this value to your desired width */
  text-align: center;
  margin: 20px;
  padding: 20px;
  background-color: #daf4d4;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.21);
  transition: transform 0.3s ease-in-out;
}

.team-member:hover {
  transform: translateY(-10px);
}

.team-member img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}

.team-member h4 {
  /* font-weight: 400; */
  margin: 0;
}

.team-member .role {
  color: #888;
  margin-bottom: 10px;
}

/* .fa { */
  /* font-size: 24px; */
  /* margin: 0 10px; */
  /* color: #000; */
  /* transition: transform 0.3s ease-in-out, color 0.3s ease-in-out; */
  /* text-decoration: none; */
/* } */

/* .team-member:hover .fa { */
  /* transform: scale(1.2); */
  /* color: #007AFF; */
/* } */