#PageMain { margin-top: 0; }
/* Target the specific list to avoid affecting all lists on your site */
.check-list {
 list-style: none; /* Removes the default bullet point */
 padding-left: 0; /* Important: removes default padding for ul */
}

/* Add the check mark before each list item */
.check-list li::before {
 content: "✓"; /* The actual Unicode check mark character */
 font-weight: bold;
 display: inline-block; /* Makes it easier to position */
 width: 1em; /* Gives it a little space to the right */
 margin-right: 0.5em; /* Spacing between the check mark and the text */
}