    <style>
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            margin: 20px;
            background-color: #f7f7f7;
            color: #333;
            line-height: 1.8;
        }
        h1 {
            color: #444;
            text-align: center;
            background: linear-gradient(to right, #888, #bbb);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        h2 {
            color: #555;
            border-bottom: 2px solid #bbb;
            padding-bottom: 5px;
        }
        a {
            color: #555;
            text-decoration: none;
            font-weight: bold;
        }
        a:hover {
            text-decoration: underline;
        }
        ul {
            list-style-type: none;
            padding: 0;
        }
        li {
            margin-bottom: 10px;
            padding: 10px;
            background: #f0f0f0;
            border-radius: 5px;
            transition: transform 0.2s ease;
        }
        li:hover {
            transform: scale(1.02);
        }
        .glossar-term {
            font-weight: bold;
            color: #777;
        }
        .container {
            max-width: 800px;
            margin: 0 auto;
            padding: 20px;
            background: #ffffff;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            border-radius: 10px;
        }
        .section {
            margin-top: 40px;
        }
        .section p {
            margin-top: 10px;
            background: #f9f9f9;
            padding: 15px;
            border-left: 5px solid #bbb;
            border-radius: 5px;
        }
    </style>