

ul.bullet-points {
  margin-top: 20px;
  margin-bottom: 20px;
  padding-left: 20px; /* Adjusts indentation */
  font-size: 26px; /* Standard size for the main text */
  line-height: 1.6;
  font-family: sans-serif; 
  font-weight: 500;
}

ul.bullet-points li {
  /*margin-bottom: 5px;  Adds space between each bullet point */
  list-style: inside;
  list-style-position: outside;
  font-family: sans-serif;
  font-weight: 500; 
  color: white;
  margin-bottom: 10px; 
  margin-top: 10px;
/*  text-indent: 100px;*/
}
ul.bullet-points li p {
  /*margin-bottom: 5px;  Adds space between each bullet point */
  font-family: sans-serif;
  font-weight: 500; 
  color: white;
}

ul.bullet-points li::marker {
  font-size: 26px; /* Change marker size */
  color: white; /* Change marker color */
}

/*
.bullet-points li::before {
  content: '\2022';  Unicode for bullet 
  color: black;  Set bullet color 
  font-size: 20px;  Adjust bullet size if needed 
  margin-right: 10px;  Adds space between bullet and text 
  position: relative;
  left: -20px;  Adjusts bullet's position 
}*/