/* Check List Style */
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  position: relative;
  padding-left: 22px; /* space for ✓ */
  margin-bottom: 10px;
  line-height: 1.2;
  text-align: left;
  color:#222;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0; /* 🔥 stays at start even for 2 lines */
  font-weight: 600;
}

/* Number list (count start from 1) */
.number-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: check-counter; /* initialize counter */
}

.number-list li {
  position: relative;
  padding-left: 22px; /* space for number */
  margin-bottom: 10px;
  line-height: 1.2;
  text-align: left;
  color: #222;
  counter-increment: check-counter; /* increment counter */
}

.number-list li::before {
  content: counter(check-counter) "."; /* show number */
  position: absolute;
  left: 0;
  top: 0; /* stays aligned even for 2 lines */
  font-weight: 600;
}


/* Green cirle */
.green-circle-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.green-circle-list li {
  position: relative;
  padding-left: 22px; /* space for ✓ */
  margin-bottom: 10px;
  line-height: 1.2;
  text-align: left;
  color:#222;
}

.green-circle-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top:5px;
  width: 10px;
  height: 10px;
  background-color: #28a745; /* green circle */
  border-radius: 50%;
}

/* Arrow List Style */
.arrow-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.arrow-list li {
  position: relative;
  padding-left: 22px; /* space for ✓ */
  margin-bottom: 10px;
  line-height: 1.2;
  text-align: left;
  color:#222;
}

.arrow-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0; /* 🔥 stays at start even for 2 lines */
  font-weight: 600;
}

/* Dot List Style */

.dot-list {
  /* list-style: none; */
  padding: 0;
  margin:0;
}

.dot-list li {
  /* position: relative;
  padding-left: 22px;  
  margin-bottom: 10px; */
  line-height: 1.5;
  margin-left: 20px;
  text-align: left;
  color:#222;
}
