.custom-list-01 {
	list-style-type: none; /* Entfernt die Standard-Aufzählungszeichen */
}

.custom-list-01 li {
	position: relative;
	padding-left: 30px; /* Platz für das Aufzählungszeichen */
}

.custom-list-01 li::before {
	content: "✔"; /* Hier kannst du das gewünschte Symbol eingeben */
	font-weight: bold;
	position: absolute;
	left: 0;
}
