if you want to change the heading on all the header, it would be:
<style>
.heading{
color: red !important;
background-color: green !important;
}
</style>
if you want to change it just on that one, it's:
<style>
.contact .heading{
color: red !important;
background-color: green !important;
}
</style>
obviousy change the colors to your liking, and add anything else into the code that you want.