.bullet-style-circle {
    padding-top: 20px;
}

.bullet-style-circle li {
    padding-left: 20px;
    position: relative;
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 10px;
}
.bullet-style-circle li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    background-color: #000;
    border-radius: 100%;
}


.bullet-style-checkmark li {
    position: relative;
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 10px;
    display: flex;
    gap: 10px;
    align-items: start;
}
.bullet-style-checkmark li::before {
    content: "\2705";
    color: currentColor;
    flex-shrink: 0;
}
.bullet-style-checkmark{
    padding-top: 20px;
    list-style: none;
}