.text-checks-dark {
  background: #2d3e91;
  padding: 70px 0;
  color: #fff;
}

.text-checks-dark__bottom-image{
  display: inline;
  aspect-ratio: 1/1;
   width: 24px; 
   height: 24px;
}

.text-checks-dark__bottom-image img {
    max-width: 100%; 
     width: 24px; 
    height: 24px;
    display: inline;
  margin-bottom: -5px;
}

.text-checks-dark__container {
  max-width: 890px;
  margin: 0 auto;
  padding: 0 20px;

  display: flex;
  align-items: center;
  gap: 60px;
}

.text-checks-dark__content {
  flex: 1;
  max-width: 100%;
}

.text-checks-dark__title {
  font-family: "Poppins Bold";
  font-size: 35px;
  line-height: 1.3;
  margin-bottom: 16px;
  text-align: left;
}

.text-checks-dark__text {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.45;
  margin-bottom: 24px;
  text-align: left;
}


.text-checks-dark__list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;

  display: flex;
  flex-direction: column;
  gap: 10px;
}

.text-checks-dark__item {
  position: relative;
  padding-left: 28px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.45;
  text-align: left;
}

.text-checks-dark__item::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 16px;
  font-weight: 700;
  color: #4caf50;
}

/* IMAGE */

.text-checks-dark__image {
  flex-shrink: 0;
}

.text-checks-dark__image img {
  width: 140px;
  height: auto;
  object-fit: contain;
}


.text-checks-dark__bottom {
  font-size: 20px;
  font-weight: 600;
  margin-top: 10px;
}

.text-checks-dark__list-wrapper {
 display: flex; 
  gap: 46px;
  justify-content: center;
}


@media (max-width: 1024px) {
  
.text-checks-dark__text {
  font-size: 18px;
}

.text-checks-dark__item {
  font-size: 18px;
}
  
  .text-checks-dark__bottom {
  font-size: 18px;
  }
  
  .text-checks-dark__container {
    flex-direction: column;
    text-align: center;
  }

  .text-checks-dark__list-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    column-gap: 24px;
    row-gap: 24px;
  }

  .text-checks-dark__image {
    order: 1;
    max-width: 45%;
  }
    
      .text-checks-dark__image img {
        width: 100%;
    }

  .text-checks-dark__list {
    order: 2;
    flex: 0 0 100%;
  margin: 0 0 18px;
  }
}
}