.features-list {
  margin: 70px 0 40px 0;
}
.features-list .flex-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.features-list ul {
  flex: 1;
}
.features-list ul .list-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 10px;
}
.features-list ul .list-item img {
  margin-top: 7px;
}

.features-list li h3 {
  font-family: var(--primary-font);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.33;
  padding: 5px 0 10px 0;
}

.features-list li {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.33;
  list-style: none;
}

/* Responsive */
@media (max-width: 1020px) {
  .features-list .flex-container {
    flex-wrap: wrap;
    gap: 50px;
  }
  
  .features-list ul {
    flex: 0 0 45%; /* Set ul to take up roughly half the width of the container */
    margin-bottom: 20px; /* Add some space below each ul */
  }
}

@media (max-width: 680px) {
  .features-list {
    margin: 30px 0 10px 0;
  }
  .features-list .flex-container {
    display: block;
  }
  .features-list .flex-container ul {
    max-width: 500px;
    margin: auto;
    padding-bottom: 50px;
  }
  .features-list ul .list-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 10px;
  }
  .features-list li h3 {
    font-family: var(--primary-font);
    font-size: 16px;
  }

  .features-list li {
    font-size: 16px;
  }
  .features-list ul li:first-child img {
    width: 32px;
  }