body {
  padding-top: 90px;
  font-family: 'Segoe UI', sans-serif;
}

.teams-section {
  padding: 40px 20px;
  background-color: #f5f8ff;
  text-align: center;
}

.teams-section h2 {
  font-size: 28px;
  margin-bottom: 30px;
  color: #004b91;
}

.team-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.first-row {
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

.second-row {
  justify-content: center;
}

.team-card {
  background: white;
  width: 180px;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
}

.team-card img {
  width: 100%;
  height: 120px;
  object-fit: contain;
  margin-bottom: 10px;
}

.team-card p {
  font-weight: bold;
  color: #004b91;
  font-size: 16px;
}
