 body {
            font-family: 'Poppins', sans-serif;
            background-color: #111;
            color: #fff;
            margin: 0;
            padding: 0;
            text-align: center;
        }

        .container {
            max-width: 900px;
            margin: 40px auto;
            padding: 20px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1);
        }

        h1, h2 {
            color: #d4af37;
            text-align: center;
        }

        h2 {
            font-size: 22px;
            margin-top: 30px;
            border-bottom: 2px solid #d4af37;
            padding-bottom: 10px;
        }

        p {
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 15px;
        }

        a {
            color: #ffcc5c;
            text-decoration: none;
        }

		<!----datenschutz---->


        .highlight {
            color: #ffcc5c;
            font-weight: bold;
        }
        .back-button {
            display: block;
            width: fit-content;
            margin: 30px auto;
            padding: 12px 25px;
            background: linear-gradient(45deg, #E2A817, #ffcc5c);
            border-radius: 5px;
            text-align: center;
            font-size: 18px;
            font-weight: bold;
            color: #111;
            text-decoration: none;
            transition: 0.3s;
        }

        .back-button:hover {
            background: linear-gradient(45deg, #ffcc5c, #E2A817);
            transform: scale(1.05);
        }
		
		
		