/* Team Section */
.team {
  padding: 100px 0;
  background-color: var(--light-color);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.team-card {
  background-color: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  text-align: center;
}

.team-image {
  height: 250px;
  background-color: #ddd;
  position: relative;
}


.team-card h3 {
  margin: 20px 0 5px;
  color: var(--primary-color);
}

.team-card .position {
  color: var(--secondary-color);
  font-weight: 500;
  margin-bottom: 15px;
}

.team-card p {
  padding: 0 20px 20px;
}
