<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Conference Cancellation Notice</title>
  <style>
    body {
      font-family: 'Poppins', Arial, sans-serif;
      background-color: #fff;
      text-align: center;
      padding: 60px 20px;
    }
    .container {
      max-width: 700px;
      margin: auto;
    }
    h2 {
      font-weight: 600;
      color: #000;
      font-size: 20px;
      line-height: 1.6;
    }
    p {
      font-size: 16px;
      color: #333;
      line-height: 1.8;
    }
    .email {
      display: inline-block;
      margin: 10px 0;
      font-weight: bold;
      color: #004aad;
      text-decoration: none;
    }
    .signature {
      margin-top: 30px;
      font-size: 16px;
      font-weight: 500;
    }
    .signature span {
      color: #d11a1a;
      font-weight: 600;
    }
  </style>
</head>
<body>
  <div class="container">
    <h2>
      We regret to inform you that the conference has been cancelled due to unforeseen technical reasons.
    </h2>

    <p>For further details or assistance, please contact:</p>
    <p>
      <a href="mailto:director@unitedforum.uk" class="email">>> director@unitedforum.uk</a>
    </p>

    <div class="signature">
      We sincerely apologize for any inconvenience caused.<br>
      - <span>United Research Forum</span>
    </div>
  </div>
</body>
</html>
