.cms-content h3 {
    display: inline-block;
    font-family: 'Urbanist', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    line-height: 1.2em;
    letter-spacing: 0.02em;
    color: var(--blue-70);
}

.cms-content ul {
    display: flex;
    flex-direction: column;
    gap: 16px;
    color: var(--dark-70);
}

.cms-content p {
    font-family: 'Work Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.2em;
    color: var(--dark-70);
}

.cms-content a {
    text-decoration: underline;
    color: var(--blue-70);
}

.cms-content em {
    font-style: italic;
}

.cms-content u {
    text-decoration: underline;
}

.cms-content li {
    position: relative;
    gap: 8px;
    padding-left: 32px;
    font-family: 'Work Sans';
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.2em;
}

.cms-content li strong {
    font-weight: 600;
}

.cms-content li::before {
    content: '';
    background-image: url('/content/new/icons/check-blue.svg');
    background-size: 100%;
    width: 24px;
    height: 24px;
    position: absolute;
    margin-left: -32px;
}

.back-blue .cms-content>* {
    color: var(--light-00);
}

.back-blue .cms-content li::before {
    background-image: url('/content/new/icons/check.svg');
}