.team-section {
    padding: 50px 0;
    background-color: #f8f9fa;
  }
  
  .section-title {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #333;
  }
  
  .team-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    margin: 15px 0; /* Dikey aralık için */
  }
  
  .team-card:hover {
    transform: translateY(-10px);
  }
  
  .team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 3px solid #007bff;
  }
  
  .team-name {
    font-size: 1.25rem;
    font-weight: bold;
    color: #007bff;
  }
  
  .team-id {
    font-size: 1rem;
    color: #555;
  }
  