diff --git a/opentech/public/funds/templates/public_funds/fund_page.html b/opentech/public/funds/templates/public_funds/fund_page.html
index d76fa01ce1da55b72f385eb32a0c44fd2a4a0356..4476536b5e6028148b63cf30ce7d15df5cd6c400 100644
--- a/opentech/public/funds/templates/public_funds/fund_page.html
+++ b/opentech/public/funds/templates/public_funds/fund_page.html
@@ -6,7 +6,12 @@
     {% include "public_funds/includes/fund_apply_cta.html" with fund_type=page.fund_type.specific %}
     <div class="wrapper">
         <section class="section section--main">
-            <h5>{{ page.introduction }}</h5>
+
+            {% if page.introduction %}
+                <h4 class="heading heading--introduction">
+                    {{ page.introduction }}
+                </h4>
+            {% endif %}
 
             {% include_block page.body %}
         </section>