* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, sans-serif;
  background: #0a0a0a;
  color: #fff;
}

/* =============================Team Section============================= */
.team {
  padding: 80px 8%;
  text-align: center;
}

.team-header {
  max-width: 700px;
  margin: 0 auto 60px;
}

.team h1 {
  font-size: 42px;
  margin-bottom: 15px;
}

.team h1 span {
  color: #00bcd4;
}

/* =============================Team Cards============================= */
.team-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.team-card {
  background: #111;
  padding: 30px 20px;
  border-radius: 18px;
  transition: 0.3s ease;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 188, 212, 0.15);
}

.team-card figure {
  margin-bottom: 15px;
}

.team-card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #00bcd4;
}

.team-card h3 {
  font-size: 18px;
  margin-bottom: 5px;
}

.team-card .role {
  font-size: 14px;
  color: #00bcd4;
}

/* =============================Responsive============================= */
@media (max-width: 600px) {
  .team h1 {
    font-size: 32px;
  }
}