.container-meet{
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding-inline: 10%;
}
.text-section{
    width: 50%;
    display: flex;
    justify-content: end;
    flex-direction: column;
}
.title-meet{
    font-weight: 200;
    padding-bottom: 20px;
    font-size: 22px;
}
.description-meet{
    font-weight: 200;
    font-size: 16px;
}
.profile-section{
    display: flex;
    justify-content: center;
}
.profile-section img{
    width: 300px; /* Set the desired width */
    height: 300px; /* Set the desired height */
    overflow: hidden; /* Ensures no overflow beyond the container */
    border-radius: 50%; /* Makes the container circular */
    object-fit: cover;
}
  @media (max-width: 967px) {
    .container-meet{
        flex-direction: column !important;
    }
    .text-section{
        width: 100%;
        padding-bottom: 20px;
    }

  }