.team-section {
  background: linear-gradient(
    180deg,
    #f8fafc 0%,
    #eef4f8 100%
  );
  padding: 90px 24px;
  position: relative;
}

.team-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, #e5e7eb, transparent);
}

.team-container {
  max-width: 800px;
  margin: 0 auto;
}

.team-header {
  text-align: center;
  margin-bottom: 70px;
}

.team-header h2 {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 14px;
  color: #6b7280;
}

.team-header p {
  font-size: 1rem;
  color: #6b7280;
}

.team-row {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 32px 0;
  border-bottom: 1px solid #e5e7eb;
}

.team-row:last-child {
  border-bottom: none;
}

.team-photo {
  flex-shrink: 0;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  overflow: hidden;
  background: #f3f4f6;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-info h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #6b7280;
  margin-bottom: 6px;
}

.team-info span {
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .team-row {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}