.team-section {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.team-member {
  text-align: center;
  max-width: 220px;
}

.team-member img {
  width: 180px;       
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  margin-bottom: 1rem;
  object-fit: cover;
  border-radius: 12px; 
}

.team-member h3 {
  margin: 0.5rem 0 0.3rem;
  font-size: 1.2rem;
  color: #e0d9ff;
}

.team-member p {
  font-size: 0.95rem;
  color: #ccc9e6;
  line-height: 1.5;
}

@media (max-width: 600px) {
  .team-section {
    flex-direction: column;
    align-items: center;
  }
}