.leader-team {
      background-color: #dde5fb;
    }
    .team-card {
      background-color: #ffffff;
      border-radius: 15px;
      box-shadow: 0 0 15px rgba(0,0,0,0.1);
      overflow: hidden;
      transition: transform 0.3s ease;
    }
    .team-card:hover {
      transform: translateY(-5px);
    }
    .team-img {
      width: 100%;
      height: 300px;
      object-fit: cover;
    }
    .team-body {
      padding: 20px;
      text-align: center;
    }
    .team-name {
      font-size: 1.3rem;
      font-weight: bold;
      margin-bottom: 5px;
    }
    .team-title {
      color: #777;
      margin-bottom: 15px;
    }
    .team-bio {
      font-size: 0.95rem;
      margin-bottom: 15px;
    }
    .social-button a {
      margin: 0 8px;
      color: #007bff;
      font-size: 1.2rem;
      transition: color 0.3s;
    }
    .social-button a:hover {
      color: #0056b3;
    }