<!DOCTYPE html>
<html lang="de">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Seite nicht gefunden</title>
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Georgia, "Times New Roman", serif;
            background: linear-gradient(180deg, #fbf5ec 0%, #f6eee3 60%, #f3e7db 100%);
            color: #4A1D1A;
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }

        .error-container {
            background: white;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            padding: 60px 40px;
            text-align: center;
            max-width: 500px;
        }

        .error-code {
            font-size: 5rem;
            color: #7A1720;
            font-weight: bold;
            margin-bottom: 20px;
        }

        .error-message {
            font-size: 1.5rem;
            color: #7A1720;
            margin-bottom: 20px;
        }

        .error-description {
            font-size: 1rem;
            color: #666;
            margin-bottom: 30px;
            line-height: 1.6;
        }

        .back-link {
            display: inline-block;
            padding: 12px 30px;
            background-color: #7A1720;
            color: white;
            text-decoration: none;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s;
            font-weight: 600;
        }

        .back-link:hover {
            background-color: #5A0F14;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(122, 23, 32, 0.3);
        }
    </style>
</head>
<body>
    <div class="error-container">
        <div class="error-code">404</div>
        <div class="error-message">Seite nicht gefunden</div>
        <div class="error-description">
            Der angeforderte Link ist ungültig oder existiert nicht.<br>
            Bitte überprüfen Sie den Link oder kehren Sie zur Startseite zurück.
        </div>
    </div>
</body>
</html>