* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: #f4f7fb;
  color: #333;
}

.team-section {
  max-width: 1200px;
  margin: auto;
  text-align: center;
  padding: 50px 20px;
}

.section-title {
  font-size: 32px;
  color: #003366;
  margin-bottom: 40px;
}

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

.team-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  max-width: 280px;
  text-align: center;
  padding: 20px;
  transition: transform 0.3s ease;
}

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

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

.team-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #003366;
}

.team-card p {
  font-size: 14px;
  line-height: 1.5;
  color: #555;
}

@media (max-width: 768px) {
  .team-card img {
    height: 200px;
  }

  .section-title {
    font-size: 28px;
  }

  .team-card {
    max-width: 90%;
  }
}
