ul.wp-block-list {
    margin: 20px 0 0;
}

.is-style-simple-list {
    list-style-type: none;
}

.is-style-default li {
	display: block;
	position: relative;
	padding-left: 25px;
	margin-bottom: 15px;
}

.is-style-default li::before {
	content: '';
	background: var(--wp--preset--color--orange);
	width: 5px;
	height: 5px;
	position: absolute;
	top: 13px;
	left: 0;
	border-radius: 50%;
}

.is-style-tickmark li {
    display: block;
	position: relative;
	padding-left: 45px;
	line-height: 23px;
	margin-bottom: 14px;
}

.is-style-tickmark li::before {
	content: '';
	display:block;
	background: url("../images/tick.svg") no-repeat center;
	width: 32px;
	height: 21px;
	position: absolute;
	top: 0;
	left: 0;
}

.is-style-orangecheckmark {
	list-style-type: none;
}

.is-style-orangecheckmark li {
	padding: 0 0 0 92px;
	position: relative;
	min-height: 62px;
	display: flex;
	align-items: center;
}

.is-style-orangecheckmark li:not(:last-child) {
	margin-bottom: 17px;
}

.is-style-orangecheckmark li::before {
	content: '';
	background: url("../images/orange-check-icon.svg") no-repeat 0 0;
	background-size: contain;
	width: 62px;
	height: 62px;
	position: absolute;
	top: 0;
	left: 0;
}

.is-style-bluetick {
	list-style-type: none;
}

.is-style-bluetick li {
    padding: 0 0 0 60px;
    position: relative;
}

.is-style-bluetick li:not(:last-child) {
	margin-bottom: 17px;
}

.is-style-bluetick li::before {
	content: '';
	background: url("/wp-content/uploads/2025/09/blue-tick.png") no-repeat 0 0;
	background-size: contain;
	width: 33px;
	height: 33px;
	position: absolute;
	top: 0;
	left: 0;
}