<!DOCTYPE html>

<html lang="en">

<head>

  <meta charset="UTF-8">

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

  <title>TruckUnited - Home</title>

  <style>

    body {

      margin: 0;

      font-family: Arial, sans-serif;

      background: #1a1a1a;

      color: #fff;

      line-height: 1.6;

    }

    header {

      background: #ff6600;

      padding: 2rem 1rem;

      text-align: center;

    }

    header h1 {

      margin: 0;

      font-size: 3rem;

    }

    header p {

      font-size: 1.2rem;

    }

    section {

      padding: 2rem 1rem;

      max-width: 800px;

      margin: 0 auto;

    }

    .features {

      display: flex;

      flex-direction: column;

      gap: 1.5rem;

    }

    .feature {

      background: #333;

      padding: 1rem;

      border-radius: 8px;

    }

    .email-form {

      display: flex;

      justify-content: center;

      margin-top: 2rem;

      gap: 0.5rem;

    }

    .email-form input[type="email"] {

      padding: 0.5rem;

      font-size: 1rem;

      flex: 1;

      max-width: 300px;

    }

    .email-form button {

      padding: 0.5rem 1rem;

      font-size: 1rem;

      background: #ff6600;

      border: none;

      color: #fff;

      cursor: pointer;

    }

    .email-form button:hover {

      background: #e65c00;

    }

    .download-buttons {

      display: flex;

      justify-content: center;

      gap: 1rem;

      margin-top: 2rem;

    }

    .download-buttons a {

      display: inline-block;

      background: #444;

      color: #fff;

      padding: 0.5rem 1rem;

      border-radius: 6px;

      text-decoration: none;

      font-weight: bold;

    }

    footer {

      text-align: center;

      padding: 1rem;

      background: #111;

      margin-top: 2rem;

    }

    footer a {

      color: #fff;

      margin: 0 1rem;

      text-decoration: none;

    }

  </style>

</head>

<body>


<header>

  <h1>TruckUnited</h1>

  <p>The easiest way for truckers and dispatchers to stay connected and organized.</p>

</header>


<section class="features">

  <div class="feature">

    <h2>Track Your Routes</h2>

    <p>Plan and track your trips efficiently with real-time updates and GPS integration.</p>

  </div>

  <div class="feature">

    <h2>Manage Loads</h2>

    <p>Keep all your shipments, assignments, and deliveries in one place.</p>

  </div>

  <div class="feature">

    <h2>Communicate Easily</h2>

    <p>Chat and notify your team without leaving the app, reducing delays and confusion.</p>

  </div>

</section>


<section class="email-signup">

  <p>Sign up to get updates and early access:</p>

  <div class="email-form">

    <input type="email" placeholder="Enter your email" />

    <button>Notify Me</button>

  </div>

</section>


<section class="download-buttons">

  <a href="#">App Store</a>

  <a href="#">Google Play</a>

</section>


<footer>

  <a href="#">Home</a> |

  <a href="#">Privacy Policy</a>

</footer>


</body>

</html>