﻿/* Target the second h3 (assuming Email Us is the second h3) */
/* Hide E-mail Us section and its paragraph with the link */
h3:nth-of-type(2),
h3:nth-of-type(2) + p {
    display: none !important;
}
