ul {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
li::before {
  content: "";
  width: 23px;
  height: 23px;
  background-image: url("../images/solution/tick.svg");
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
  margin-top: 3px;
  display: block;
}
