.team-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 20px;
}

.team-group {
  margin-bottom: 20px;
  text-align: center;
}

.team-group h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.team-list {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.person-card {
  background: #f9f9f9;
  border-radius: 16px;
  padding: 20px;
  width: 250px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
}

.person-card img {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.person-card h3 {
  margin: 10px 0 5px;
  font-size: 20px;
}

.person-card p {
  margin: 4px 0;
  font-size: 14px;
  color: #555;
}