<!doctype html>
<html lang="en">
<head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>Page Not Found</title>
    <style>
        body {
            margin: 0;
            font-family: Arial, sans-serif;
            background: #f6f3ee;
            color: #1f2328;
        }
        .wrap {
            max-width: 760px;
            margin: 0 auto;
            padding: 48px 24px 64px;
        }
        .card {
            background: #fff;
            border: 1px solid #ddd6cc;
            border-radius: 16px;
            padding: 32px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
        }
        h1 {
            margin: 0 0 16px;
            font-size: 32px;
            line-height: 1.2;
        }
        p {
            margin: 0 0 12px;
            font-size: 16px;
            line-height: 1.6;
        }
        a {
            color: #0b57d0;
            text-decoration: none;
        }
    </style>
</head>
<body>
    <div class="wrap">
        <div class="card">
            <h1>Page not found</h1>
            <p>The page you requested does not exist or has been moved.</p>
            <p><a href="/">Return to the homepage</a></p>
        </div>
    </div>
</body>
</html>
