.custom-bullets {
  list-style-type: none;
  padding-left: 0;
}

.custom-bullets li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 8px;
}

.custom-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
  border-radius: 50%;
}

.custom-numbers {
  list-style-type: none;
  counter-reset: custom-counter;
  padding-left: 0;
}

.custom-numbers li {
  position: relative;
  padding-left: 40px;
  margin-bottom: 10px;
  counter-increment: custom-counter;
}

.custom-numbers li::before {
  content: counter(custom-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 25px;
  height: 25px;
  background: #3498db;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 12px;
}