have to tried to remove the different margin and padding in your css ?
if you didn't here is what I think could help you :
ol, ul {
list-style-position: inside; /* Aligns the bullet or number with the text */
margin: 0; /* Removes default margins */
padding: 0; /* Removes default padding */
}
li {
margin: 0; /* Removes margin from list items */
padding: 0.5em 0; /* Adjusts vertical spacing */
}
/* Optional: To further control spacing for nested lists */
ul {
margin-left: 1.5em; /* Indent nested lists */
}