There are a few ways to hide only the "Heading 1" only:
ul li:first-child {display:none;}
Alternatively:
li.parent{ display: none; }
li.parent + li.parent { display: list-item; }
Also, Child of Heading 2
is not a child of Heading 2
. It is a sibling.