.team-container {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
  margin-top: 30px;
}

.team-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
  border-radius: 12px;
  padding: 20px;
  width: 260px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: 0.3s;
  margin-bottom: 100px;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.team-name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.team-role {
  font-size: 15px;
  font-weight: 600;
  color: #555;
  margin-bottom: 10px;
}

.team-desc {
  font-size: 14px;
  color: #333;
  line-height: 1.5;
}