<!DOCTYPE html>
<html>
<head>
    <title>Page Not Found</title>
    <style>
        body { font-family: Arial, sans-serif; background: #f5f5f5; margin: 0; padding: 0; }
        .container { display: flex; justify-content: center; align-items: center; height: 100vh; }
        .error-box { background: white; padding: 40px; border-radius: 8px; box-shadow: 0 2px 10px rgba(0,0,0,0.1); text-align: center; max-width: 500px; }
        h1 { color: #f39c12; font-size: 48px; margin: 0; }
        p { color: #666; font-size: 16px; margin: 15px 0; }
        a { color: #2276FF; text-decoration: none; font-weight: bold; }
        a:hover { text-decoration: underline; }
    </style>
</head>
<body>
    <div class="container">
        <div class="error-box">
            <h1>404</h1>
            <p>Page Not Found</p>
            <p>The page you're looking for doesn't exist.</p>
            <a href="/">← Back to Home</a>
        </div>
    </div>
</body>
</html>
