<!DOCTYPE html>

<html lang="en">

<head>

  <meta charset="UTF-8" />

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

  <title>Support – Arka Wealth</title>

  <style>

    body {

      margin: 0;

      padding: 0;

      font-family: Arial, sans-serif;

      background-color: #f7f7f7;

      color: #333;

      display: flex;

      align-items: center;

      justify-content: center;

      height: 100vh;

      text-align: center;

    }

    .message {

      padding: 20px;

      background-color: #ffffff;

      border: 1px solid #ddd;

      border-radius: 8px;

      box-shadow: 0 0 10px rgba(0,0,0,0.05);

    }

    a {

      color: #0056b3;

      text-decoration: none;

    }

    a:hover {

      text-decoration: underline;

    }

  </style>

</head>

<body>

  <div class="message">

    <p>For support questions please email us at <a href="mailto:support@arkawealth.com">support@arkawealth.com</a></p>

  </div>

</body>

</html>