<!-- start Simple Custom CSS and JS -->
<style type="text/css">
 
    #privacy-policy {
      --bg-dark: #163948;
      --nav-bg: #1E4B66;
      --text-color: #ACB99F;
      --heading-color: #C9BB8B;
      --section-bg: #1F4966;
      --accent-color: #C9BB8B;
      --font-body: 'Roboto', sans-serif;
      --font-heading: 'Montserrat', sans-serif;
      --font-nav: 'Bitter', serif;

      background-color: var(--bg-dark);
      color: var(--text-color);
      font-family: var(--font-body);
      padding: 2rem;
      line-height: 1.6;
    }

    #privacy-policy h1,
    #privacy-policy h2 {
      font-family: var(--font-heading);
      color: var(--heading-color);
    }

    #privacy-policy section {
      background-color: var(--section-bg);
      padding: 1.5rem;
      border-radius: 8px;
      margin-bottom: 1.5rem;
    }

    #privacy-policy a {
      color: var(--accent-color);
      text-decoration: underline;
    }
</style>
<!-- end Simple Custom CSS and JS -->
