<style>
   
    
    .btn-download {
      display: inline-block;
      padding: 12px 24px;
      font-size: 16px;
      color: #fff;
      background-color: #1e90ff;
      border-radius: 8px;
      text-decoration: none;
      font-weight: bold;
      transition: background-color 0.3s ease;
      margin-top: 20px;
    }
    .btn-download:hover {
      background-color: #0066cc;
    }
  </style>
</head>
  <div class="container">
    <h1>Download Our PDF</h1>
    <p>Click the button below to download the file.</p>
    <!-- ✅ Replace this file path with your real PDF -->
    <a href="https://drive.google.com/file/d/1mLbCwmq6cZta2k4x00sDxvk7uvxczJ5x/view" download class="btn-download">
      Download PDF
    </a>
  </div>
</html>