﻿

.custom-bullets {
    list-style-type: none; /* Remove default bullets */
    padding-left: 0; /* Remove padding */
}

    .custom-bullets li::before {
        content: '•'; /* Custom bullet symbol */
        color: #000; /* Bullet color */
        font-size: 20px; /* Bullet size */
        margin-right: 10px; /* Space between bullet and text */
        vertical-align: middle; /* Align bullet with the text */
    }

