.team-section {
    width: 100%;
    min-height: 100vh;
    background-color: #ffffff;
    padding: 80px 20px 0px 20px;
    display: flex;
    align-items: center;
  }
  
  .team-container {
    max-width: 1140px;
    margin: 0 auto;
  }
  
  .team-title {
    font-size: 48px;
    color: #333;
    margin-bottom: 20px;
  }
  
  .team-description {
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
    max-width: 800px;
    line-height: 1.6;
    margin-left: auto;
    margin-right: auto;
  }
  
  /* no custom flex here */
  .team-row {
    margin-left: -15px;
    margin-right: -15px;
  }
  
  .team-card {
    background-color: #f9f9fd;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
  }
  
  .team-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  }
  
  .team-photo {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
  }
  
  .team-name {
    font-size: 22px;
    font-weight: 700;
    color: #222;
    margin-top: 15px;
  }
  
  .team-role {
    font-size: 16px;
    color: #888;
    margin-bottom: 10px;
  }
  
  .team-bio {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
  }
  
  .team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
  }
  
  .team-social-link img {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
  }
  
  .team-social-link:hover img {
    transform: scale(1.2);
  }
  
  @media (max-width: 1280px) {
    .team-title {
      font-size: 36px;
    }
    .team-description {
      font-size: 16px;
    }
  }
  
  @media (max-width: 768px) {
    .team-section {
      padding: 60px 15px 0 15px;
    }
    .team-title {
      font-size: 28px;
    }
    .team-row {
      margin-left: 0;
      margin-right: 0;
    }
    .team-photo {
      width: 150px;
      height: 150px;
    }
  }

  @media (max-width: 576px) {
    .team-title {
      font-size: 24px;
    }
    .team-description {
      font-size: 14px;
    }
    .team-photo {
      width: 120px;
      height: 120px;
    }
    .team-name {
      font-size: 18px;
    }
  }