<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8" />
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  <title>MarsCW LLC</title>
  <style>
    body {
      margin: 0;
      font-family: Arial, sans-serif;
      background: linear-gradient(to right, #1f1f1f, #2c2c2c);
      color: #f0f0f0;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
      flex-direction: column;
      text-align: center;
    }
    h1 {
      font-size: 3rem;
      margin-bottom: 0.5rem;
    }
    h2 {
      font-weight: 300;
      font-size: 1.5rem;
      margin-bottom: 1.5rem;
    }
    a {
      color: #00bcd4;
      text-decoration: none;
      font-size: 1.1rem;
    }
    a:hover {
      text-decoration: underline;
    }
    footer {
      position: absolute;
      bottom: 20px;
      font-size: 0.8rem;
      color: #aaa;
    }
  </style>
</head>
<body>
  <h1>MarsCW LLC</h1>
  <h2>Professional Car Wash Solutions</h2>
  <p>Installs • Repairs • Operations</p>
  <p><a href="mailto:office@marscw.com">Contact Us: office@marscw.com</a></p>
  <footer>
    &copy; 2025 MarsCW LLC. All rights reserved.
  </footer>
</body>
</html>
