.why-choose {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.why-choose-header {
  text-align: center;
  margin-bottom: 40px;
  max-width: 1000px;
  text
}

.why-choose-container {
  display: flex;
  flex-direction: column;
}

.why-choose-wrapper {
    display: flex;
    justify-content: center;
}


@media (min-width: 768px) {
  .why-choose-container {
    flex-direction: row;
    gap: 50px;
  }
}


.why-choose li {
 line-height: 3; 
}

.why-choose ul {
  list-style: none; /* Remove the default bullet */
  padding-left: 20px; /* Add padding to align with the bullet */
}

.why-choose ul li {
  position: relative;
  padding-left: 25px; /* Adjust to fit the size of the SVG */
  line-height: 2;
  font-size: 20px;
}

.why-choose ul li:before {
  content: '';
  position: absolute;
  left: -15px;
  top: 12px;
  width: 16px; /* Set size of the SVG */
  height: 16px; /* Set size of the SVG */
  background: url("data:image/svg+xml;charset=utf8,<svg width='16' height='16' xmlns='http://www.w3.org/2000/svg'><path fill='%2351BBA0' d='m0 8 3.2-3.2L6.4 8l6.4-6.4L16 4.8l-9.6 9.6z' fill-rule='evenodd'></path></svg>") no-repeat center center;
  background-size: contain;
}

