<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Maintenance Page</title>
<style>
  body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f4f4f4;
  }
  .container {
    text-align: center;
    padding: 20px;
    max-width: 600px;
    background-color: white;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 8px;
  }
  h1 {
    color: #333;
    font-size: 24px;
  }
  p {
    color: #666;
    font-size: 16px;
  }
 .button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
  }
  a:hover {
    background-color: #0056b3;
  }
</style>
</head>
<body>

<div class="container">
  <h1>We're currently undergoing maintenance</h1>
  <p>We apologize for the inconvenience. We are working hard to improve our website and will be back shortly.</p>
  <p>For enquires please contact us on <a href="tel:01444415430">01444 415 430</a></p>
   <a class="button" href="javascript:location.reload();">Refresh Page</a>
</div>

</body>
</html>