.custom-bullets {
  list-style: none;
  padding-left: 0;
}

.custom-bullets li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
  line-height: 1.6;
}

.custom-bullets i {
  color: #e36e0f;
  font-size: 20px;
  margin-right: 15px;
  flex-shrink: 0;
  margin-top: 1px;
  filter: drop-shadow(0 1px rgba(227,110,15,0.5));
  animation: stylishBullet 1.5s ease-in-out infinite;
}

@keyframes stylishBullet {
  0%, 100% { transform: scale(1) rotate(0deg); }
  25% { transform: scale(1.1) rotate(5deg); }
  75% { transform: scale(1.1) rotate(-5deg); }
}
.custom-bullets span {
  font-weight: 500;
}

@keyframes bulletPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.custom-bullets span {
  color: #000000;
  font-size: 15px;
}

