diff --git a/app/views/layouts/application.html.erb b/app/views/layouts/application.html.erb
index 31a73d4e0814f74726948617133ab7ba2dd7eafa..3712d7b6fd17b050dbec100db6a0a84a9b17b781 100644
--- a/app/views/layouts/application.html.erb
+++ b/app/views/layouts/application.html.erb
@@ -23,5 +23,6 @@
 
   <footer>
     <%= render 'cookies_eu/consent_banner', link: '/policy/cookie-notice', target: '_blank'%>
+    <%= render 'shared/footer' %>
   </footer>
 </html>
diff --git a/app/views/shared/_footer.html.erb b/app/views/shared/_footer.html.erb
new file mode 100644
index 0000000000000000000000000000000000000000..3aa32c66010fd1c7ac405508a1dda74e79146599
--- /dev/null
+++ b/app/views/shared/_footer.html.erb
@@ -0,0 +1,5 @@
+<div style="position: fixed; bottom: 0; left: 0; right: 0; background:#343A40; color: white;text-align:center;">
+  <%=link_to "Cookie Policy", policy_cookie_notice_path%> |
+  <%=link_to "Privacy Policy", policy_privacy_path%> |
+  <%=link_to "Security Policy", policy_security_path%>
+</div>
\ No newline at end of file