<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="iso-8859-1">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Welcome to the Firehouse Solutions Network</title>
    <link rel="STYLESHEET" type="text/css" href="/apps/layouts/fsStyle.css">
    <style>
        body, html {
            margin: 0;
            padding: 0;
            height: 100%;
            background-color: #111111;
        }

        .page-wrapper {
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
            padding: 10px;
            box-sizing: border-box;
        }

        .content-card {
            width: 100%;
            max-width: 600px;
            background-color: #444444;
            padding: 1px;
        }

        .inner-content {
            background-color: #000000;
            padding: 20px;
        }

        header {
            text-align: center;
            margin-bottom: 20px;
        }

        .logo {
            max-width: 100%;
            height: auto;
            border: 0;
        }

        .ErrorText {
            display: block;
            margin: 15px 0;
            text-align: center;
        }

        main section .ErrorText {
            text-align: left;
        }

        .RegText {
            display: block;
            margin-bottom: 15px;
        }

        ul {
            margin-bottom: 20px;
        }

        .BoldText {
            text-align: center;
            margin-top: 15px;
        }

        .BoldText a {
            text-decoration: underline;
        }

        footer {
            margin-top: 20px;
        }
    </style>
</head>
<body>

<div class="page-wrapper">
    <article class="content-card">
        <div class="inner-content">
            
            <header role="banner">
                <img src="/apps/error/fs.png" alt="Firehouse Solutions Network" class="logo">
                <h1 class="ErrorText">Error 404: The requested page cannot be found</h1>
            </header>

            <main>
                <p class="RegText">Oops! We can't seem to find the page you're looking for. It may have been moved, deleted, or the URL might be incorrect.</p>
                
                <section>
                    <h2 class="ErrorText">Why did this happen?</h2>
                    <ul>
                        <li class="RegText">The link you clicked may be outdated or broken</li>
                        <li class="RegText">You may have typed the web address incorrectly</li>
                        <li class="RegText">The page may no longer exist</li>
                    </ul>
                </section>

                <section>
                    <h2 class="ErrorText">What you can do:</h2>
                    <ul>
                        <li class="RegText">Go back to the homepage</li>
                        <li class="RegText">Use the site's navigation menu to find what you need</li>
                        <li class="RegText">Search for the topic using the search bar</li>
                        <li class="RegText"><a href="mailto:support@firehousesolutions.com">Contact Support</a> if you believe this is an error or need help finding something</li>
                    </ul>
                </section>
            </main>

            <footer>
                <nav class="BoldText">
                    <a href="/">Return to Homepage</a>
                </nav>
                <nav class="BoldText">
                    <a href="https://www.firehousesolutions.com">Visit Firehouse Solutions</a>
                </nav>
            </footer>

        </div>
    </article>
</div>

</body>
</html>