
  /* Team Members Section */
  .team_members_section {
    background: #fff;
    padding: 60px 0;
    text-align: center;
  }

  .team_members_button {
    display: inline-block;
    background: white;
    padding: 10px;
    padding-left: 30px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: bold;
    border: 2px solid #EE8022;
    position: relative;
  }
  /*.team_members_button::before { 
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-people-fill' viewBox='0 0 16 16'%3E%3Cpath d='M7 14s-1 0-1-1 1-4 5-4 5 3 5 4-1 1-1 1zm4-6a3 3 0 1 0 0-6 3 3 0 0 0 0 6m-5.784 6A2.24 2.24 0 0 1 5 13c0-1.355.68-2.75 1.936-3.72A6.3 6.3 0 0 0 5 9c-4 0-5 3-5 4s1 1 1 1zM4.5 8a2.5 2.5 0 1 0 0-5 2.5 2.5 0 0 0 0 5'/%3E%3C/svg%3E");
    position: absolute;
    top: 30%;
    left: 10%;
  }*/

  .team_members_title {
    font-size: 36px;
    font-weight: bold;
    margin-top: 20px;
  }

  .team_members_desc {
    max-width: 700px;
    margin: 0 auto;
    font-size: 16px;
    color: #555;
  }

  /* Team Member Cards */
  .team_member_card {
    background-image: radial-gradient(#E3AC7D 0% , #EE8022 100%);
    background-position: 30% 30%;
    padding: 20px;
    border-radius: 15px;
    color: white;
    text-align: left;
    position: relative;
    transition: transform 0.3s ease;
    margin-top: 30px;
    height: 80vh;
  }

  .team_member_card:hover {
    transform: translateY(-10px);
  }

  .team_member_card img {
    width: 90%;
    position: absolute;
    bottom: 0px;
    right: 10px;
    z-index: 1;
  }

  .team_member_card .role {
    font-size: 14px;
    opacity: 0.8;
  }

  .team_member_card h4 {
    font-size: 20px;
    margin-top: 10px;
  }

  .team_member_card p {
    font-size: 14px;
    margin-top: 10px;
    opacity: 0.9;
  }

  /* Social Media Icons */
  .social_links {
    margin-top: 20px;
    display: grid;
  }

  .social_links a {
    color: white;
    font-size: 30px;
    margin-right: 10px;
    transition: color 0.3s;
  }

  .social_links a:hover {
    color: black;
  }
