.fancy-list-container { display: flex; flex-direction: column; }
body .fancy-list-content-wrap .section-sub{ margin-bottom:8px;}
.fancy-list-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 12px 0;
  border-top: 1px solid #d8e8f0;
}
.fancy-list-row:first-child { border-top: none; }

/* ── NUMBER / ICON CIRCLE ── */
.fancy-list-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #0096D6;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  margin-top: 2px;
}

.fancy-list-icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.fancy-list-num {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

/* ── BODY: title + description stacked ── */
.fancy-list-body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}

.fancy-list-body h3 {
  font-size: 16px;
  font-weight: 700;
  color: #09476E;
  line-height: 1.3;
  margin-bottom: 6px !important;
}

body .fancy-list-body p {
  font-size: 15px;
  color: #444;
  line-height: 1.75;
  margin: 0 !important;
}

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
