/* Gelbe Häkchen für eine UL */
.ul-checkmarks {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ul-checkmarks li {
  position: relative;
  padding-left: 1.6em;
  margin: 0.55em 0;
}

.ul-checkmarks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.05em;
  color: #f4b400; /* gelb */
  font-weight: 700;
  font-size: 1.1em;
  line-height: 1;
}