.team-section {
  text-align: center;
  color: #fff;
}

.team-section h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  font-weight: 700;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.team-card {
  background-color: #003552;
  border: 1px solid #00a5ff;
  border-radius: 8px;
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s ease;
}

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

.team-card img {
  width: 100%;
  display: block;
}

.team-info {
  padding: 20px;
}

.team-info h3 {
  margin: 0 0 10px 0;
  font-size: 1.5rem;
  font-weight: 600;
}

.team-info p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
  .team-section h2 {
    font-size: 1.3rem;
    margin-bottom: 50px;
  }
}

@media (max-width: 425px) {
  .team-info p {
    font-size: 0.85rem;
  }
}
