        :root {
            --orange: #e67e22;
            --beige: #fff7f0;
            --accent: #ffe9da;
            --dark: #4a2c14;
            --red: #e74c3c;
            --green: #16c60c;
        }

        body {
            font-family: system-ui, sans-serif;
            background: var(--beige);
            color: var(--dark);
            margin: 0;
            padding: 1rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

        header {
            text-align: center;
            padding: 1rem 0;
            border-bottom: 3px solid var(--orange);
        }

            header h1 {
                margin: 0;
                font-size: 1.8rem;
                color: var(--orange);
            }

        article {
            margin-top: 1.5rem;
            background: white;
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: 0 3px 8px rgba(0,0,0,0.1);
            border-left: 5px solid var(--green);
        }

            article h2 {
                color: var(--red);
                margin-top: 0;
            }

        a {
            color: var(--orange);
            text-decoration: none;
        }

            a:hover {
                text-decoration: underline;
            }

        .hinweis {
            background: #fff3e0;
            border-left: 4px solid var(--orange);
            padding: 1rem;
            margin-top: 2rem;
            border-radius: 6px;
            font-size: 0.95rem;
        }

        footer {
            margin-top: 3rem;
            text-align: center;
            font-size: 0.85rem;
            color: var(--orange);
            border-top: 1px solid var(--orange);
            padding: 1rem 0;
        }

        .image-container {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 20px;
        }

            .image-container img {
                width: 100%;
                height: auto;
                border-radius: 10px;
                box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            }

        .image-caption {
            text-align: left;
            font-size: 0.9rem;
            color: var(--dark);
            margin-top: 5px;
        }

            .image-caption .copyright {
                font-size: 0.8rem;
                color: #888;
                text-decoration: none;
            }