<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <title>Page Not Found</title>
    <style>
        body {
            font-family: sans-serif;
            background-color: #f7f7f7;
        }
        
        .container {
            max-width: 600px;
            margin: 0 auto;
            padding: 2rem;
            text-align: center;
            background-color: #fff;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }
        
        h1 {
            margin-top: 0;
            font-size: 3rem;
            color: #333;
        }
        
        p {
            font-size: 1.2rem;
            line-height: 1.5;
            color: #666;
        }
        
        a {
            color: #2a9fd6;
        }
    </style>
    <!-- Google tag (gtag.js) -->
    <script async src="https://www.googletagmanager.com/gtag/js?id=G-RHYCEZCPMK"></script>
    <script>
        window.dataLayer = window.dataLayer || [];

        function gtag() {
            dataLayer.push(arguments);
        }
        gtag('js', new Date());

        gtag('config', 'G-RHYCEZCPMK');
    </script>
</head>

<body>
    <div class="container">
        <h1>Page Not Found</h1>
        <p>The page you are looking for could not be found.</p>
        <p>Please check the URL and try again or <a href="/">return to the homepage</a>.</p>
    </div>
</body>

</html>