/* استایل عمومی برای آیتم‌های لیست */
ul li {
  font-size: 18px !important;       /* سایز بزرگ‌تر */
  line-height: 1.8 !important;      /* فاصله بین خطوط */
  margin-bottom: 8px !important;    /* فاصله بین آیتم‌ها */
  list-style-type: disc !important; /* بولت دایره‌ای */
  color: #333 !important;           /* رنگ متن */
}

ol li {
  font-size: 18px !important;
  line-height: 1.8 !important;
  margin-bottom: 8px !important;
  color: #333 !important;
}

/* اگر بخوای تیک سبز بذاری به‌جای بولت‌ها */
ul.custom-tick li {
  list-style: none !important;
  position: relative !important;
  padding-right: 25px !important;
}

ul.custom-tick li::before {
  content: "✔" !important;
  position: absolute !important;
  right: 0 !important;
  color: green !important;
  font-weight: bold !important;
}
