
        h1, h2 {
            color: #2c3e50;
        }
        h2 {
            border-bottom: 2px solid #eee;
            padding-bottom: 5px;
            margin-top: 30px;
        }
        ul {
            list-style-type: disc;
            margin-left: 20px;
        }
        a {
            color: #3498db;
            text-decoration: none;
        }
        a:hover {
            text-decoration: underline;
        }
        strong {
            color: #2c3e50;
        }
        .video-container {
            margin-top: 30px;
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
            height: 0;
            overflow: hidden;
            background-color: #000;
        }
        .video-container iframe,
        .video-container video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 0;
        }

        /* Pop-up Styling */
        .popup-overlay {
            display: none; /* Standardmäßig versteckt */
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }
        .popup-content {
            background: #fff;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
            height: 800px;
			width: 99%;
            max-width: 1000px;
            position: relative;
        }
        .close-button {
            position: absolute;
            top: 10px;
            right: 15px;
            font-size: 28px;
            cursor: pointer;
            color: #aaa;
            line-height: 1;
        }
        .close-button:hover {
            color: #333;
        }
        .router-link {
            cursor: pointer;
            color: #3498db;
            text-decoration: underline;
        }
        .router-link:hover {
            color: #2980b9;
        }
h1,
 h2,
 h3 {
            color: #0056b3;
            padding-bottom: 5px;
            border-bottom: 1px solid #eee;
            margin-top: 25px;
        }
        h1 {
            text-align: center;
            font-size: 2.5em;
            margin-bottom: 40px;
            border-bottom: 2px solid #0056b3;
            padding-bottom: 15px;
        }
        h2 {
            font-size: 1.8em;
            margin-top: 35px;
        }
        h3 {
            font-size: 1.4em;
            color: #007bff;
        }
        .section {
            background-color: #fff;
            padding: 25px;
            margin-bottom: 25px;
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.08);
        }
        ul {
            list-style-type: disc;
            margin-left: 25px;
            padding-left: 0;
        }
        li {
            margin-bottom: 8px;
        }
        strong {
            color: #0056b3;
        }
        .highlight {
            background-color: #e6f7ff;
            padding: 10px;
            border-left: 5px solid #007bff;
            margin: 15px 0;
            border-radius: 5px;
        }
        .image-container {
            text-align: center;
            margin: 35px 0;
        }
        .image-container img {
            max-width: 100%;
            height: auto;
            border: 1px solid #ddd;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .caption {
            font-size: 0.95em;
            color: #666;
            margin-top: 15px;
            font-style: italic;
        }
        p {
            margin-bottom: 15px;
        }
.contact-info {
            text-align: center;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid #eee;
        }
        .contact-info a {
            color: #0056b3;
            text-decoration: none;
            font-weight: bold;
        }
        .contact-info a:hover {
            text-decoration: underline;
        }
        .profile-image {
            display: block;
            margin: 0 auto 20px auto;
            border-radius: 50%; /* Für ein rundes Bild */
            width: 150px; /* Beispielgröße */
            height: 150px; /* Beispielgröße */
            object-fit: cover; /* Stellt sicher, dass das Bild richtig passt */
            border: 3px solid #0056b3; /* Optionaler Rand */
        }