/* Remove default bullets */
.checkmark-list {
  list-style: none;
  padding: 0;
  margin: 20px;
  font-family: sans-serif;
}

/* Position the list items to hold the icons */
.checkmark-list li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 15px;
  line-height: 1.6;
}

/* Create the green circle with the checkmark */
.checkmark-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 2px; /* Adjusts vertical alignment */
  width: 22px;
  height: 22px;
  background-color: #0072bc;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
}