
.bulletList {
    list-style-type: none;
    padding-left: 40px;
}

.bulletList li::before {
    content: "\2022"; /* Bullet point character */
    color: #fe3f40; /* Red color */
    font-size: 1.5em; /* Adjust size as needed */
    display: inline-block;
    width: 1em; /* Adjust spacing between bullet point and text */
    margin-left: -1em; /* Adjust spacing between bullet point and text */
}            

