/* Sleek Bulleted List Styling */
.sleek-bullet-list {
  list-style: none;
  padding-left: 0;
  margin: 1.5rem 0;
}

.sleek-bullet-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #0C2340; /* Global Text Color */
  transition: transform 0.2s ease;
}

.sleek-bullet-list li:hover {
  transform: translateX(4px);
}

/* Custom Sleek Bullet Point */
.sleek-bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  background-color: #3255A4; /* Global Primary Color */
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(50, 85, 164, 0.15); /* Light primary glow */
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.sleek-bullet-list li:hover::before {
  background-color: #FFE000; /* Global Accent Color on hover */
  box-shadow: 0 0 0 6px rgba(255, 224, 0, 0.3); /* Accent glow */
}
