h2 {
    text-align: center;
    margin-top: 2rem;
    color: #1a237e;
    font-size: 20px;
  }

  /* TEAM SECTION */
  .team-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
  }

  .card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    width: 250px;
    text-align: center;
    padding: 1.5rem 1rem;
  }

  .card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top;
    background-color: #d8d8d8;
  }

  .card h4 {
    margin: 1rem 0 0.2rem;
    color: #4f7cff;
  }

  .card p {
    font-size: 0.9rem;
    color: #555;
  }

  .social_medias{
    width: 100%;
    padding: 5px;
    display: flex;
    cursor: pointer;
    align-content: center;
    margin-top: 5px;
    align-items: center;
    background-color: transparent;
  }

  .social_medias a img{
    height: 20px;
    width: 20px;
    margin: 0 10px;
    cursor: pointer;
    object-fit: contain;
  }

  @media (max-width: 768px) {
    .team-section {
      flex-direction: column;
      align-items: center;
    }
  }