<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Access Prohibited</title>
    <style>
        body {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            margin: 0;
            font-family: Arial, sans-serif;
            background-color: #f2f2f2;
        }
        .notification-container {
            background-color: #fff;
            border-radius: 10px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            padding: 20px;
            max-width: 400px;
            text-align: center;
        }
        .notification-container h1 {
            font-size: 24px;
            color: #d9534f; /* Bootstrap Danger Color */
        }
        .notification-container p {
            font-size: 16px;
            color: #333;
        }
        .secure-browser {
            color: #007bff; /* Bootstrap Primary Color */
            text-decoration: none;
        }
        .secure-browser:hover {
            text-decoration: underline;
        }
    </style>
</head>
<body>
    <div class="notification-container">
        <h1>Access Prohibited</h1>
        <p>Your access is prohibited. Please use a <a href="https://get.pabrowser.com" class="secure-browser" target="_blank" rel="noopener noreferrer">secure enterprise browser</a> to access this resource.</p>
    </div>
</body>
</html>