.public-footer {
    background-color: #ffffff;
    border-top: 1px solid #e9ecef;
    padding: 1.5rem 0;
    font-size: 0.9rem;
}
.footer-link {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}
.footer-link:hover {
    color: #0d6efd;
}
@font-face {
          font-family: '{{ preferred_font.name }}';
          src: url('{{ preferred_font.ttf_file.url }}') format('truetype'),
               url('{{ preferred_font.woff_file.url }}') format('woff'),
               url('{{ preferred_font.eot_file.url }}') format('eot'),
               url('{{ preferred_font.woff2_file.url }}') format('woff2');
      }
body, h1, h2, h3, h4, h5, h6, p, a, span, div, li, ul, ol, input, select, textarea, button {
font-family: '{{ preferred_font.name }}';
}