<!DOCTYPE html>

<html lang="en">

<head>

<meta charset="UTF-8">

<meta name="viewport" content="width=device-width, initial-scale=1.0">

<title>Page Error</title>

<style>

    body {

        margin: 0;

        font-family: Arial, sans-serif;

        background-color: #f4f6f8;

        color: #2a3b55;

        display: flex;

        align-items: center;

        justify-content: center;

        height: 100vh;

        flex-direction: column;

        text-align: center;

    }

    .logo {

        max-width: 300px;

        margin-bottom: 30px;

    }

    h1 {

        font-size: 28px;

        margin-bottom: 15px;

        color: #2a3b55; /* Dark navy */

    }

    p {

        font-size: 18px;

        color: #4a5f78; /* Muted blue-grey */

        margin: 5px 0;

    }

    .contact {

        font-weight: bold;

        color: #003b71; /* Ochsner blue */

    }

    .address {

        font-size: 16px;

        color: #4a5f78;

    }

</style>

</head>

<body>

    <img src="https://imagedelivery.net/tjb3TlxJjw5HGmy0BRKstQ/decbcd47-2985-49d4-3207-4d10384c6100/public" alt="Louisiana Women's Healthcare - Ochsner" class="logo">

    <h1>Something Went Wrong</h1>

    <p>Please contact us at <span class="contact">(225) 201-2000</span> for assistance.</p>

    <p class="address">500 Rue de la Vie Suite 100, Baton Rouge, LA 70817</p>

</body>

</html>