ul.styled-list {
  list-style: none;
  padding-left: 0;
}

ul.styled-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  font-size: 16px;
  color: #444;
  line-height: 1.6;
}

ul.styled-list li::before {
  content: '✔'; /* You can replace this with any icon or symbol */
  position: absolute;
  left: 0;
  top: 0;
  color: #007BFF; /* Bootstrap primary blue */
  font-weight: bold;
  font-size: 16px;
}