
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>Access Restricted</title>
    <style>
        body {
            margin: 0;
            background: #f4f7fb;
            color: #1f2937;
            font-family: Arial, Helvetica, sans-serif;
        }
        .wrap {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 24px;
        }
        .card {
            max-width: 640px;
            width: 100%;
            background: #ffffff;
            border: 1px solid #e5e7eb;
            border-radius: 14px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            padding: 40px 32px;
            text-align: center;
        }
        .badge {
            display: inline-block;
            padding: 6px 12px;
            border-radius: 999px;
            background: #eef2ff;
            color: #3730a3;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            margin-bottom: 18px;
        }
        h1 {
            margin: 0 0 14px;
            font-size: 30px;
            color: #111827;
        }
        p {
            margin: 0 0 14px;
            font-size: 16px;
            line-height: 1.6;
            color: #4b5563;
        }
        .note {
            margin-top: 22px;
            padding-top: 18px;
            border-top: 1px solid #e5e7eb;
            font-size: 14px;
            color: #6b7280;
        }
        .contact {
            color: #111827;
            font-weight: 600;
        }
    </style>
</head>
<body>
    <div class="wrap">
        <div class="card">
            <div class="badge">Access Policy</div>
            <h1>Access Restricted</h1>
            <p>
                Access to this service is currently unavailable from your network location.
            </p>
            <p>
                This restriction is part of our security policy designed to protect the availability and integrity of this platform.
            </p>
            <p class="note">
                If you believe you should have access, please contact the
                <span class="contact">system administrator</span> for assistance.
            </p>
        </div>
    </div>
</body>
</html>