you have a couple of empty paragraphs at the bottom of your list
<p>?</p>
<p class="" contenteditable="false">?</p>
each has a top and bottom margin. You will need to remove these paragraphs. Below is the css applying the margin
p {
margin: 1em 0;
}
not sure what you are using to generate your list, but if it is a plugin or your theme, it may be adding these empty paragraphs for some reason.
The heading for your list
<p class="" contenteditable="false" style="margin-bottom: 0px;">
<span class="bold_text">Here's What You'll Discover:</span>
is similar but would appear to add an inline style removing the bottom margin.
Use firebug or similar to identify this sort of thing
Google it