Whitepaper

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Whitepaper: Remedy Bank</title>
  <link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap" rel="stylesheet">
  <style>
    :root {
      --font-main: 'Inter', sans-serif;
      --color-text: #000000;
      --color-bg: #f9f9f9;
      --color-heading: #000000;
      --color-accent: #000000;
      --color-sub-accent: #000000;
    }

    body {
      font-family: var(--font-main);
      background: var(--color-bg);
      color: var(--color-text);
      margin: 0;
      padding: 0;
      line-height: 1.7;
    }

    .container {
      max-width: 820px;
      margin: 40px auto;
      padding: 20px;
    }

    h1, h2, h3 {
      font-weight: 600;
      line-height: 1.3;
      margin-top: 2em;
      margin-bottom: 0.5em;
      color: var(--color-heading);
    }

    h1 {
      font-size: 2.5em;
      text-align: center;
      border-bottom: 2px solid var(--color-accent);
      padding-bottom: 0.5em;
      margin-bottom: 1em;
    }

    h2 {
      font-size: 1.8em;
      border-bottom: 1px solid #e0e0e0;
      padding-bottom: 0.3em;
    }

    h3 {
      font-size: 1.4em;
    }

    p {
      font-size: 1rem;
      margin-bottom: 1.5em;
    }

    ul, ol {
      padding-left: 1.5em;
      margin-bottom: 1.5em;
    }

    li {
      margin-bottom: 0.5em;
    }

    strong {
      font-weight: 600;
    }

    .quote {
      font-style: italic;
      color: #50575e;
      border-left: 4px solid var(--color-accent);
      padding-left: 1em;
      margin: 1.5em 0;
    }

    .highlight {
      background: #eef7ff;
      padding: 0.1em 0.3em;
      border-radius: 3px;
      font-weight: 500;
    }

    footer {
      text-align: center;
      margin-top: 3em;
      padding: 1.5em 0;
      border-top: 1px solid #ddd;
      font-size: 0.9em;
      color: #555d66;
    }

    @media (max-width: 768px) {
      .container {
        margin: 20px auto;
        padding: 15px;
      }
      h1 { font-size: 2em; }
      h2 { font-size: 1.5em; }
      h3 { font-size: 1.2em; }
    }
  </style>
</head>
<body>
  <div class="container">
    <!-- Replace this comment with the actual HTML content of the whitepaper body. -->
  </div>
  <footer>
    &copy; 2025 Remedy Bank. All Rights Reserved.
  </footer>
</body>
</html>