<style>
        /* CSS Reset & Variablen */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

		@font-face {
		  font-family: 'WWType_Bold';
		  font-weight: normal;
		  font-style: normal;
		  font-display: swap; /* Read next point */
		  unicode-range: U+000-5FF; /* Download only latin glyphs */
		  src:
			local('WWTypeWeb-Bold'),
			url('https://www.vorsorgeplaner24.de/assets/fonts/WWTypeWeb-Bold.woff2') format('woff2'),
			url('https://www.vorsorgeplaner24.de/assets/fonts/WWTypeWeb-Bold.woff') format('woff');
		}



		@font-face {
		  font-family: 'WWType';
		  font-weight: normal;
		  font-style: normal;
		  font-display: swap; /* Read next point */
		  unicode-range: U+000-5FF; /* Download only latin glyphs */
		  src:
			local('WWTypeWeb-Regular'),
			url('https://www.vorsorgeplaner24.de/assets/fonts/WWTypeWeb-Regular.woff2') format('woff2'),
			url('https://www.vorsorgeplaner24.de/assets/fonts/WWTypeWeb-Regular.woff') format('woff');
		}
		/* FontAwesome Version 4 :: alle Icons, die benutzt werden, kommen aus einer Datei */

		@font-face {
		  font-family: FontAwesome;
		  font-weight: normal;
		  font-style: normal;
		  font-display: swap;
		  src:
			local('fontawesome-webfont'),
			url('https://www.vorsorgeplaner24.de/assets/fonts/fontawesome-webfont.woff2') format('woff2'),
			url('https://www.vorsorgeplaner24.de/assets/fonts/fontawesome-webfont.woff') format('woff');
		}

		*{
			font-family:'WWType';
		}

        :root {
            --bg-color: rgba(255, 255, 255, 0.85);
            --text-color: #0f172a;
            --muted-color: #475569;
            --accent-color: #2563eb;
            --accent-hover: #1d4ed8;
            --border-color: rgba(226, 232, 240, 0.8);
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
            
            /* Footer spezifisch */
            --footer-bg: #0f172a;
            --footer-text: #94a3b8;
            --footer-heading: #f8fafc;
            --footer-border: #1e293b;
        }

        body {
            /* Moderner System-Font-Stack (keine externen Fonts nötig) */
            background-color: #f8fafc;
            color: var(--text-color);
            line-height: 1.5;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        /* Hauptinhalt Platzhalter */
        main {
            flex: 1;
            padding-top: 120px;
            padding-bottom: 4rem;
            max-width: 1200px;
            margin: 0 auto;
            padding-left: 1.5rem;
            padding-right: 1.5rem;
            width: 100%;
        }

        /* --- HEADER --- */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 2;
            background: var(--bg-color);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border-color);
            transition: all 0.3s ease;
        }

        .header-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--text-color);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.25rem;
        }

        .logo span {
            color: var(--accent-color);
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 2rem;
            list-style: none;
        }

        .nav-link {
            text-decoration: none;
            color: var(--muted-color);
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.2s ease;
            position: relative;
        }

        .nav-link:hover,
        .nav-link.active {
            color: var(--accent-color);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--accent-color);
            transition: width 0.2s ease;
            border-radius: 2px;
        }

        .nav-link:hover::after,
        .nav-link.active::after {
            width: 100%;
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .btn-primary {
            background-color: var(--accent-color);
            color: white;
            padding: 0.6rem 1.25rem;
            border-radius: 8px;
            font-weight: 500;
            font-size: 0.95rem;
            text-decoration: none;
            transition: background-color 0.2s ease, transform 0.1s ease;
            box-shadow: 0 2px 4px rgba(37, 99, 235, 0.2);
        }

        .btn-primary:hover {
            background-color: var(--accent-hover);
        }

        .btn-primary:active {
            transform: scale(0.98);
        }

        .hamburger {
            display: none;
            cursor: pointer;
            background: none;
            border: none;
            padding: 0.5rem;
            z-index: 1001;
        }

        .hamburger span {
            display: block;
            width: 24px;
            height: 2px;
            background-color: var(--text-color);
            margin: 5px 0;
            transition: transform 0.3s ease, opacity 0.3s ease;
            border-radius: 2px;
        }

        /* --- FOOTER --- */
        .site-footer {
            background-color: var(--footer-bg);
            color: var(--footer-text);
            padding-top: 4rem;
            padding-bottom: 2rem;
            border-top: 1px solid var(--footer-border);
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 3rem;
        }

        .footer-col h3, 
        .footer-col h4 {
            color: var(--footer-heading);
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 1.25rem;
        }

        .footer-col p {
            font-size: 0.9rem;
            line-height: 1.6;
            margin-bottom: 1rem;
            max-width: 320px;
        }

        .footer-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .footer-links a {
            color: var(--footer-text);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.2s ease;
        }

        .footer-links a:hover {
            color: white;
        }

        .footer-bottom {
            max-width: 1200px;
            margin: 3rem auto 0 auto;
            padding: 1.5rem 1.5rem 0 1.5rem;
            border-top: 1px solid var(--footer-border);
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.85rem;
            color: var(--footer-text);
            flex-wrap: wrap;
            gap: 1rem;
        }

        /* --- RESPONSIVE DESIGN --- */
        @media (max-width: 768px) {
            .hamburger {
                display: block;
            }

            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 100%;
                height: 100vh;
                background-color: rgba(255, 255, 255, 0.98);
                backdrop-filter: blur(20px);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 2rem;
                transition: right 0.3s cubic-bezier(0.77, 0, 0.175, 1);
                box-shadow: -10px 0 30px rgba(0,0,0,0.05);
            }

            .nav-menu.active {
                right: 0;
            }

            .nav-link {
                font-size: 1.25rem;
            }

            .header-actions .btn-primary {
                display: none;
            }

            .hamburger.active span:nth-child(1) {
                transform: rotate(45deg) translate(5px, 5px);
            }
            .hamburger.active span:nth-child(2) {
                opacity: 0;
            }
            .hamburger.active span:nth-child(3) {
                transform: rotate(-45deg) translate(7px, -6px);
            }

            .footer-container {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }
        }
		
		div.willkommen h1, div.willkommen h2, div.willkommen p{
			margin:0;
			padding:0 5px;
		}
		
		div.willkommen p{
			background:red;
			color:white;
			font-size:1.5em;
		}
		
		/*DIV BOX*/
		#divbox, #cover{
			position: fixed;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			text-align: center;
			vertical-align: middle;
			z-index: 5;
			overflow: hidden;
			background-color: rgba(0,0,0,0.65);
			display: none;
		}

		#cover{
			display:block;
			z-index:100;
		}

		#sourceFrame{
			left:2%;
			margin-top:40px;
			height:90%;
			width:96%;
			background:white;
			border:5px white solid;
			border-radius:5px;
			display:none;
			position:absolute;
		}

		#lightTableClose{
			position:absolute;
			right:2%;
			text-decoration:none;
			top:5px;
			color:white;
		}

		#lightTableClose::before{
			font-family:FontAwesome;
			content:"\f00d";
			width:25px;
			display:inline-block;
			color:#DB0000;
			font-size:24px;
			transition:all 0.5s;
		}

		#lightTableClose:hover::before{
			transform:rotate(360deg) !important;
		}
		
		/* Container auf 800x800 */
        .ecosystem-container {
            position: relative;
            width: 800px;
            height: 800px;
            display: flex;
            justify-content: center;
            align-items: center;
			margin:50px auto;
        }

        /* Zentrales Piktogramm (Unternehmer) */
        .center-node {
            position: absolute;
            width: 180px;
            height: 180px;
            background: linear-gradient(135deg, #007bff, #0056b3);
            color: white;
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            box-shadow: 0 15px 30px rgba(0, 123, 255, 0.3);
            z-index: 10;
            text-align: center;
        }

        .center-node i {
            font-size: 4rem;
            margin-bottom: 8px;
        }

        .center-node span {
            font-size: 1.1rem;
            font-weight: bold;
        }

        /* Satelliten-Wrapper (hält Kreis und Text zusammen) */
        .satellite-group {
            position: absolute;
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 220px; /* Feste Breite für zentrierten Text unter dem Kreis */
            text-align: center;
        }

        /* Satelliten-Piktogramm */
        .satellite {
            width: 150px;
            height: 150px;
            background: white;
            color: #333;
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 3px solid #e1e8ed;
        }

        .satellite-group:hover .satellite {
            transform: scale(1.08);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
            border-color: #007bff;
            color: #007bff;
        }

        .satellite i {
            font-size: 2.8rem;
            margin-bottom: 6px;
        }

        .satellite span {
            font-size: 1rem;
            font-weight: 600;
        }

        /* Erklärender Text unter dem Kreis */
        .satellite-text {
            margin-top: 10px;
            background: rgba(255, 255, 255, 0.9);
            padding: 8px 12px;
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
            border: 1px solid #e1e8ed;
			text-align:left;
			width:400px;
        }

        .satellite-text h4 {
            font-size: 0.9rem;
            color: #1e293b;
            margin-bottom: 2px;
        }

        .satellite-text p {
            font-size: 0.75rem;
            color: #64748b;
            line-height: 1.2;
        }

        /* Positionierung der Satelliten-Gruppen via Radius (260px Abstand) */
        .sat-group-1 {
            /* Oben */
            transform: translate(0px, -260px);
        }

        .sat-group-2 {
            /* Unten rechts */
            transform: translate(225.17px, 130px);
        }

        .sat-group-3 {
            /* Unten links */
            transform: translate(-225.17px, 130px);
        }

        /* Verbindungslinien (SVG) */
        .connections {
            position: absolute;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .connections line {
            stroke: #cbd5e1;
            stroke-width: 3;
            stroke-dasharray: 6;
        }
		
</style>