<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>Maintenance</title>
    <style>
        body {
            margin: 0;
            min-height: 100vh;
            display: grid;
            place-items: center;
            padding: 24px;
            background: #f5f7fb;
            color: #1f2937;
            font-family: Arial, sans-serif;
        }
        main {
            max-width: 720px;
            padding: 40px;
            text-align: center;
            background: #ffffff;
            border-radius: 16px;
            box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
        }
        section + section {
            margin-top: 28px;
            padding-top: 28px;
            border-top: 1px solid #e5e7eb;
        }
        h1 {
            margin: 0 0 16px;
            font-size: 2rem;
        }
        p {
            margin: 0;
            font-size: 1.1rem;
            line-height: 1.7;
        }
    </style>
</head>
<body>
    <main>
        <section>
            <h1>Vielen Dank fur Ihren Besuch</h1>
            <p>Wir arbeiten derzeit an einer Systemaktualisierung fur ein besseres Erlebnis. Wir sind bald wieder online.</p>
        </section>
        <section>
            <h1>Thank you for visiting us</h1>
            <p>We are in the process of upgrading the system for a better experience. We will be online soon.</p>
        </section>
    </main>
</body>
</html>