.checkmark-list li {
  list-style: none;
  /* Removes default bullet */
  position: relative;
  /* Allows positioning of custom bullet */
  padding-left: 30px;
  /* Adjust as needed for spacing */
}

.checkmark-list li::before {
  content: "✅";
  /* Inserts the checkmark symbol */
  position: absolute;
  left: 0;
  /* Adjust position as needed */
  color: green;
  /* Optional: Change checkmark color */
}



.wp-block-list.checkmark-list {
  text-indent: -20px;
}

strong {font-weight: 600;}