<!DOCTYPE html>

<html lang="en">

<head>

  <meta charset="UTF-8">

  <title>PureDrop Dairy Farm – Coming Soon</title>

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

  <meta name="robots" content="noindex, nofollow">

  <style>

    body {

      margin: 0;

      font-family: Arial, Helvetica, sans-serif;

      background: #f4f6f8;

      display: flex;

      justify-content: center;

      align-items: center;

      height: 100vh;

    }

    .card {

      background: #ffffff;

      padding: 40px;

      max-width: 520px;

      text-align: center;

      border-radius: 8px;

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

    }

    h1 {

      color: #1f7a3f;

      margin-bottom: 10px;

    }

    p {

      color: #555;

      line-height: 1.6;

    }

    .footer {

      margin-top: 25px;

      font-size: 13px;

      color: #888;

    }

  </style>

</head>

<body>

  <div class="card">

    <h1>PureDrop Dairy Farm</h1>

    <p>Pure. Hygienic. Farm-Fresh Milk.</p>

    <p><strong>Website launching soon.</strong></p>

    <div class="footer">

      © 2025 PureDrop Dairy Farm

    </div>

  </div>

</body>

</html>