
  h1 {
    text-align: center;
    color: #333;
    margin-top: 2rem;
  }

  .intro {
    text-align: center;
    margin: 2rem 0;
  }

  .intro p {
    color: #333;
  }

  .intro span {
    color: #292929;
    font-weight: bold;
  }

  .intro img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin-top: 1rem;
  }

  .team-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    width: 85%;
    margin: 2rem auto;
  }

  .team-member {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .team-member2 {
    flex-direction: row-reverse;
  }

  .team-member img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
  }

  .team-member div {
    flex: 1;
  }

  .team-member h3 {
    margin: 0;
    color: #333;
  }

  .team-member p {
    margin: 0.5rem 0 0;
  }

  .cta-section {
    text-align: center;
    background-color: #f9f9f9;
    padding: 2rem 0;
    margin-top: 2rem;
  }

  .cta-section h2 {
    color: #333;
    margin-bottom: 1rem;
  }

  .cta-section button {
    background-color: #aa9767;
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
  }

  @media screen and (min-width: 750px){
  .intro_container {
    display: flex;
    gap: 2%;
  }
  .team-member2 {
    flex-direction: row-reverse;
    text-align: end;
  }
}

  .cta-section button:hover {
    background-color: #aca187;
  }

  .intro_img {
    display: flex;
    align-items: center;
  }
  @media screen and (max-width: 749px){
  .team-member {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-direction: column;
  }

  .team-member_info {
    text-align: center;
  }
}