/* =================== TEAM SECTION =================== */
.team-section {
  padding: 130px 50px 60px;
  text-align: center;
}

.team-section h1 {
  font-size: 2.5em;
  margin-bottom: 40px;
  color: #ffffff;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: stretch;
}

.team-member {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
  min-height: 400px;
  box-sizing: border-box;
}

.team-member img {
  width: 100%;
  max-width: 300px;
  border-radius: 10px;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}
