.custom-list {
  list-style: none;
  padding-left: 0;
}

.custom-list li {
  margin-bottom: 8px;
  padding-left: 35px; /* ruimte voor het icoon */
  position: relative;
}

.custom-list li::marker {
  content: "";
}

/* Square icon */
.custom-list li::before {
  content: "\f0c8"; /* Unicode for fa-square */
  font-family: "Huge Icons"; 
  font-weight: normal; 
  font-size: 30px;
  color: #FFD600;
  
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}