.help_block *:first-child {
    margin-top: 0;
}

.help_block *:last-child {
    margin-bottom: 0;
}

.help_block h2 {
    margin: 20px 0;
    font-size: 30px;
}

.help_block p {
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 10px;
}

.help_block ul {
    margin: 10px 0;
}

.help_block li {
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 10px;
    padding-left: 16px;
    position: relative;
}

.help_block li:before {
    content: '';
    position: absolute;
    top: 8px;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--accent-color);
}

.help_block b,
.help_block strong {
    font-weight: bold;
}

.help_block a {
    font-weight: 600;
    color: var(--accent-color);
    border-bottom: 1px solid var(--accent-color);
    transition: all 0.3s ease-out;
}

@media (hover: hover) and (pointer: fine) {
    .help_block a:hover {
        border-color: transparent;
    }
}

@media (max-width: 767px) {
    .help_block h2 {
        font-size: 20px;
    }

    .help_block p {
        font-size: 14px;
        line-height: 1.7;
    }

    .help_block li {
        font-size: 14px;
        line-height: 1.7;
    }

    .help_block li:before {
        top: 7px;
    }
}