<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Applications Closed &ndash; Digital Health Agency</title>
  <style>
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    body {
      font-family: Arial, sans-serif;
      background: #f4f6f9;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 100vh;
      padding: 20px;
    }
    .card {
      background: #fff;
      border-top: 6px solid #006633;
      border-radius: 6px;
      padding: 48px 40px;
      max-width: 540px;
      width: 100%;
      text-align: center;
      box-shadow: 0 2px 16px rgba(0,0,0,.1);
    }
    h1 {
      color: #006633;
      font-size: 1.6rem;
      margin-bottom: 16px;
    }
    p {
      color: #444;
      line-height: 1.8;
      margin-bottom: 10px;
      font-size: 0.97rem;
    }
    .divider {
      border: none;
      border-top: 1px solid #e5e5e5;
      margin: 24px 0;
    }
    .footer {
      font-size: 0.8rem;
      color: #999;
    }
  </style>
</head>
<body>
  <div class="card">
    <h1>Applications Are Now Closed</h1>
    <p>Thank you for your interest in the <strong>Digital Health Agency</strong>.</p>
    <p>The application window for the current recruitment exercise has officially closed. No further submissions are being accepted at this time.</p>
    <p>Please visit the official Digital Health Agency website for updates on future opportunities.</p>
    <hr class="divider">
    <div class="footer">Digital Health Agency &mdash; dha.go.ke</div>
  </div>
</body>
</html>