<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Error Page</title>
    <style>
        body { font-family: Arial, sans-serif; }
        .error-container { max-width: 400px; margin: 200px auto; padding: 20px; background: #f3f3f3; border: 1px solid #e5e5e5; border-radius: 5px; }
        .error-container h1 { color: red; font-size: 32px; font-weight: bold; }
        .error-container p { color: #666; font-size: 16px; margin-top: 10px; }
        .error-container a { text-decoration: none; color: #337ab7; font-size: 14px; display: block; margin-top: 20px; }
        .error-container a:hover { text-decoration: underline; }
    </style>
</head>
<body>
    <div class="error-container">
        <h1 style="text-align: center;">Access Denied</h1>
        <p>Unusual activity has been detected, which may compromise security. Access to this page is temporarily restricted for your protection. Please try again later or contact support for further assistance.</p>
    </div>
</body>
</html>