<!DOCTYPE html>

<html lang="en">

<head>

  <meta charset="UTF-8">

  <meta name="viewport" content="width=device-width, initial-scale=1.0">

  <title>Livery-Link Support</title>

  <style>

    body {

      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

      background-color: #f9f9f9;

      color: #333;

      margin: 0;

      padding: 0;

      display: flex;

      flex-direction: column;

      justify-content: center;

      align-items: center;

      height: 100vh;

      text-align: center;

    }

    h1 {

      color: #1a73e8;

      font-size: 2em;

      margin-bottom: 20px;

    }

    p {

      font-size: 1.1em;

      margin-bottom: 15px;

    }

    a {

      color: #1a73e8;

      text-decoration: none;

      font-weight: bold;

    }

    a:hover {

      text-decoration: underline;

    }

    footer {

      position: absolute;

      bottom: 20px;

      font-size: 0.9em;

      color: #888;

    }

  </style>

</head>

<body>

  <h1>Livery-Link Support</h1>

  <p>Need help or have questions about Livery-Link?</p>

  <p>Email us directly at:</p>

  <p><a href="mailto:support@liverylink.com">support@liverylink.com</a></p>

  <footer>&copy; 2025 Livery-Link</footer>

</body>

</html>