#faq .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 70px 0px;
}
#faq .card {
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, .125);
}
#faq .text {
    max-width: 402px;
}

#faq .text p {
    font-size: 18px;
}
#faq .text span {
    color: #505F79;
    font-size: 14px;
}
#faq .text .cta {
    width: 162px;
    height: 48px;
    background-color: #0067FF;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 14px;
}
#faqAccordion {
    max-width: 725px;
}
#faqAccordion .card-header {
    max-width: 725px;
    background: none;
    box-shadow: none;
}


.read-more-check {
    display: none;
  }
  .read-more-label:before {
    content: "^";
    top: .4rem;
    position: relative;
    color: white;
    right: .5rem;
    font-size: 1rem;
    transform: rotate(180deg);
  }
  .read-more-check:checked ~ .read-more-label:before {
    top: .7rem;
    transform: rotate(0);
  }
  .read-more-check:checked ~ .read-more-label {
    display: none!important;
  }
  .read-more-label {
    color: #0067FF;
    cursor: pointer;
  }
  .read-more-check:checked ~ .read-more-label {
    bottom: 0;
  }
  .read-more {
    max-height: 0;
    display: block;
    overflow: hidden;
    transition: max-height .5s linear 0s;
  }
  /*
  The down side of this approach is that you have to know what will be the max-height in advance
  */
  .read-more-check:checked ~ .read-more {
    max-height: 100%;
  }

  @media screen and (max-width: 800px) {
    #faq .wrap {
        padding: 50px 15px;
        display: unset;
    }

    #faq .text p{
      font-size: 16px;
    }
  }
