.accent-bullet-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  /* Webflow's base `ul` rule adds disc markers; this list renders its own. */
  list-style: none !important;
}

.accent-bullet-list li {
  position: relative;
  padding-left: 28px;
  list-style: none !important;
  color: #284b61;
  font: 600 15px/1.5 "Open Sans", sans-serif;
}

.accent-bullet-list li::marker {
  content: "";
}

.accent-bullet-list li::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 2px;
  width: 12px;
  height: 12px;
  border-radius: 4px;
  background: #11b6d8;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5), 0 5px 12px rgba(17, 182, 216, 0.24);
}

.accent-bullet-list li:nth-child(2)::before {
  background: #1689bd;
}

.accent-bullet-list li:nth-child(3)::before {
  background: #ff9338;
}
