.benefits {
  padding-top: 40px;
  background: #F5F5F5;
  padding-bottom: 64px;

  @media screen and (max-width: 768px) {
    padding: 60px 0 64px 0;
  }
}

.benefits .benefits-intro {
  max-width: 1095px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-content: center;
  margin: 0 auto;

  @media screen and (max-width: 768px) {
    text-align: left;
    align-content: start;
    justify-content: left;
  }
}

.benefits .benefits-intro p {
  color: #BE2090;
  text-align: center;
  font-family: "Nexa-regular", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 80px;

  @media screen and (max-width: 768px) {
    text-align: left;
    font-size: 16px;
    margin-bottom: 30px;
  }
}

.benefits .benefits-list {
  gap: 37px;
  margin:0 auto;
  display: flex;
  justify-content: center;

  @media screen and (max-width: 768px) {
    gap: 19px;
  }
}

.benefits .benefit-item {
  display: flex;
  width: 208px;
  padding: 20px 0px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  border: 1px solid #EACAE0;
  background: #FFF;
  text-align: center;

  @media only screen and (max-width : 768px) {
    width: 100% !important;
  }
}

.benefits .benefit-item .icon {
  margin-bottom: 1rem;
}

.benefits .benefit-item p {
  color: #BE2090;
  text-align: center;
  font-family: "Nexa-regular", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 850;
  line-height: 21px;

  @media only screen and (max-width : 768px) {
    font-size: 16px;
  }
}

.benefits .benefit-other {
  background: url("./other.svg") no-repeat left center white;
  background-size: contain;
  height: auto;

  @media screen and (max-width: 1280px) {
    background: url("./other-mobile.svg") no-repeat top center white;
    background-size: contain;
  }
}

.benefits .benefit-other ul {
  columns: 2;
  color: #464646;
  font-family: "nexa-regular", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 850;
  line-height: normal;
  text-align: left;
  padding-left: 5rem;
  padding-right: 0.5rem;
  

  @media only screen and (max-width : 1280px) {
    columns: 1;
    padding-left: 2rem;
    margin-top: 5rem;
  }
}


.benefits ul {
    list-style: none; /* Remove default bullets */
    padding-left: 0;
  }

.benefits ul li {
    position: relative;
    padding-left: .75em;
  }

.benefits ul li::before {
    content: "+";
    color: #BE2090;
    position: absolute;
    left: 0;
    font-weight: bold;
  }