        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            min-height: 100vh;
            font-family: 'Georgia', serif;
            color: #333;
        }

        /* Hintergrund mit Bild */
        .background {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background-image: url('./img/NuV.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            background-color: #f5e6d3;
            /* Leichter Overlay für bessere Lesbarkeit */
            filter: brightness(0.7);
        }

        /* Alternativ: Falls kein Bild vorhanden ist */
        .background-fallback {
            background: linear-gradient(135deg, #f5e6d3 0%, #e8d4c4 50%, #d4c4b0 100%);
        }

        .container {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 40px 20px;
        }

        .content-box {
            background: rgba(255, 255, 255, 0.92);
            padding: 50px 60px;
            border-radius: 10px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
            text-align: center;
            max-width: 600px;
            width: 100%;
        }

        h1 {
            font-size: 2.8em;
            color: #5a4a3a;
            margin-bottom: 10px;
            font-weight: normal;
            letter-spacing: 2px;
        }

        .datum {
            font-size: 1.3em;
            color: #8b7355;
            margin-bottom: 40px;
            font-style: italic;
        }

        h2 {
            font-size: 1.4em;
            color: #5a4a3a;
            margin-bottom: 25px;
            font-weight: normal;
            border-bottom: 1px solid #d4c4b0;
            padding-bottom: 10px;
        }

        .hotel-links {
            list-style: none;
        }

        .hotel-links li {
            margin: 15px 0;
        }

        .hotel-links a {
            display: block;
            padding: 15px 25px;
            background: #5a4a3a;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            transition: all 0.3s ease;
            font-size: 1.1em;
        }

        .hotel-links a:hover {
            background: #7a6a5a;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .hotel-info {
            font-size: 0.85em;
            color: #888;
            margin-top: 5px;
        }

        .weitere-hotels {
            margin-top: 25px;
            border: none;
        }

        .weitere-hotels summary {
            cursor: pointer;
            padding: 12px 20px;
            background: #5e8b9b;
            color: white;
            border-radius: 5px;
            font-size: 1em;
            list-style: none;
            transition: all 0.3s ease;
        }

        .weitere-hotels summary::-webkit-details-marker {
            display: none;
        }

        .weitere-hotels summary:hover {
            background: #5e8b9b;
        }

        .weitere-hotels[open] summary {
            border-radius: 5px 5px 0 0;
            margin-bottom: 0;
        }

        .weitere-hotels .hotel-links {
            margin-top: 10px;
        }

        .second-hotel {
            list-style: none;
        }

        .second-hotel li {
            margin: 15px 0;
        }

        .second-hotel a {
            display: block;
            padding: 15px 25px;
            background: #98b9c5;;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            transition: all 0.3s ease;
            font-size: 1.1em;
        }

        .second-hotel a:hover {
            background: #98b9c5;
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        @media (max-width: 600px) {
            .content-box {
                padding: 30px 25px;
            }

            h1 {
                font-size: 2em;
            }
        }