/* Allgemeine Stile */
        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            margin: 0;
            padding: 0;
            background-color: #f4f4f4;
            color: #333;
        }

        .wrapper {
            max-width: 1200px;
            margin: 20px auto;
            padding: 0 20px;
            background-color: #fff;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            border-radius: 8px;
            overflow: hidden;
        }

        /* Header */
        header {
            background-color: #2c3e50;
            color: #fff;
            padding: 40px 20px;
            text-align: center;
            border-bottom: 5px solid #3498db;
        }

        header h1 {
            margin: 0;
            font-size: 2.8em;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        header .tagline {
            font-size: 1.2em;
            margin-top: 10px;
            opacity: 0.9;
        }

        header .tagline u {
            color: #3498db;
        }

        /* Artikel-Layout */
        .article { /* Klasse von 'cf' zu 'article' geändert für bessere Semantik */
            display: flex;
            flex-wrap: wrap;
            padding: 20px 0;
        }

        .content_main {
            flex: 3;
            min-width: 300px;
            padding-right: 20px;
        }

        .content_sub {
            flex: 1;
            min-width: 250px;
            padding-left: 20px;
            border-left: 1px solid #eee;
        }

        /* Überschriften */
        h2, h3 {
            color: #2c3e50;
            border-bottom: 2px solid #3498db;
            padding-bottom: 5px;
            margin-top: 30px;
        }

        h2 strong {
            color: #3498db;
        }

        /* Textabschnitte */
        p {
            margin-bottom: 15px;
            text-align: justify;
        }

        /* Bilder */
        img {
            max-width: 100%; /* Bilder innerhalb des Karussells */
            height: auto;
            display: block;
            border-radius: 5px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
        }

        .content_sub .portrait {
            border-radius: 50%;
            width: 150px;
            height: 150px;
            object-fit: cover;
            margin: 0 auto 20px auto;
            border: 3px solid #3498db;
        }

        /* Links */
        a {
            color: #3498db;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        a:hover {
            color: #2980b9;
            text-decoration: underline;
        }

        /* Footer */
        footer {
            background-color: #2c3e50;
            color: #fff;
            padding: 30px 20px;
            text-align: center;
            margin-top: 30px;
            border-top: 5px solid #3498db;
        }

        footer h2 {
            color: #fff;
            border-bottom: 2px solid #3498db;
            display: inline-block;
            padding-bottom: 5px;
            margin-bottom: 20px;
        }

        footer p {
            margin: 5px 0;
            font-size: 0.9em;
        }

        footer a {
            color: #fff;
            text-decoration: underline;
        }

        footer a:hover {
            color: #3498db;
        }

        /* Karussell-Stile */
        .carousel-container {
            position: relative;
            width: 80%; /* Karussell-Container kleiner gemacht */
            margin: 20px auto; /* Zentriert den Container */
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        }

        .carousel-slide {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .carousel-slide img {
            width: 100%;
            flex-shrink: 0;
            object-fit: cover;
        }

        .carousel-button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(0, 0, 0, 0.5);
            color: white;
            border: none;
            padding: 10px 15px;
            cursor: pointer;
            font-size: 1.5em;
            z-index: 100;
            border-radius: 5px;
            opacity: 0.8;
            transition: opacity 0.3s ease;
        }

        .carousel-button:hover {
            opacity: 1;
        }

        .carousel-button.prev {
            left: 10px;
        }

        .carousel-button.next {
            right: 10px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .article {
                flex-direction: column;
            }

            .content_main, .content_sub {
                padding: 0;
                border-left: none;
                padding-bottom: 20px;
            }

            .content_sub {
                margin-top: 20px;
                border-top: 1px solid #eee;
                padding-top: 20px;
            }

            header h1 {
                font-size: 2em;
            }

            .carousel-container {
                width: 95%; /* Auf kleineren Bildschirmen breiter */
            }
        }