    <style>
        body {
            font-family: 'raleway', 'HelveticaNeue', 'Helvetica Neue', 'Helvetica-Neue', Helvetica, Arial, sans-serif;;
            margin: 0;
            padding: 0; 
            background-color: #f5f5f5;
        }
        header {
            background-color: #044d8b;
            color: #ffffff;
            display: flex; /* Aktiviert Flexbox */
            /*justify-content: space-around; /* Icons links, Inhalt rechts */
            flex-direction: row-reverse;
            align-items: center; /* Vertikale Zentrierung */
            padding: 0 20px; /* Innenabstand links und rechts */
            min-width: 670px; /* Mindestbreite für den Header */
        }
        header a:first-child {
            border-left: 1px solid rgba(255, 255, 255, 0.1);
            padding-left: 17px;
        }
        header a {
            border-right: 1px solid rgba(255, 255, 255, 0.1);

        }
        /* Social Icons Container */
        .social-icons {
            display: flex; /* Icons nebeneinander */
            gap: 15px; /* Abstand zwischen Icons */
        }
        /* Icons Styling */
            .social-icons a {
            color: #566ac4; /* Standardfarbe */
            text-decoration: none;
            font-size: 24px; /* Größe der Icons */
            transition: color 0.3s; /* Sanfter Hover-Effekt */
            padding: 5px;
            padding-right: 17px;
        }
        .social-icons a:hover {
        color: #ffffff; /* Hover-Farbe */
        }
        /* Header-Inhalt */
        .header-content {
            text-align: right;
        }
        nav {
            background-color: #0080C9;
            display: flex;
            align-items: center;
            justify-content: space-around;
            padding: 5px 15px;
            /*height: 70px;'*/
            min-width: 680px; /* Mindestbreite für den Header */
        }
        .logo {
            display: flex;
            align-items: center;
        }
        .logo img {
            height: 50px;
        }
        .menu {
            display: flex;
            gap: 0px;
            font-family: 'raleway', 'HelveticaNeue', 'Helvetica Neue', 'Helvetica-Neue', Helvetica, Arial, sans-serif;
        }
        .menu a {
            color: white;
            text-decoration: none;
            padding: 14px 20px;
        }
        .menu a:hover {
            background-color: #044d8b;
        }
        main {
            padding: 20px;
        }
        .content_header {
            /* display: flex;
            /* gap: 10px; /* Abstand zwischen den Bildern */
            /* justify-content: center; /* Zentriere die Bilder (optional) */
            /* align-items: center; /* Vertikale Ausrichtung (optional) */
        }

        .content_header img {
            display: block;
            margin: 0 auto; /* Zentriert das Bild horizontal */
            height: auto; /* Beibehaltung des Seitenverhältnisses */
            max-width: 680px;
            padding: 14px 20px;
            min-width: 680px; /* Mindestbreite für den Header */
        }
        .content {
            /*background-color: white;*/
            padding: 15px;
            margin: 10px auto;
            max-width: 800px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);  
            font-family: 'raleway', 'HelveticaNeue', 'Helvetica Neue', 'Helvetica-Neue', Helvetica, Arial, sans-serif; 
            min-width: 670px;      
        }
		.content_foto {
            padding: 15px;
            margin: 10px auto;
            max-width: 160px;
			min-height: 210px;			
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);  
            font-family: 'raleway', 'HelveticaNeue', 'Helvetica Neue', 'Helvetica-Neue', Helvetica, Arial, sans-serif; 
        }
		.content_flex {
			display: flex;
            flex-wrap: wrap; /* Ermöglicht Umbruch der Elemente bei Platzmangel */
            gap: 20px; /* Abstand zwischen den Elementen */
            flex: 1 1 calc(25% - 20px); /* Vier Elemente nebeneinander mit Abstand */
            /*min-width: 670px; /* Mindestbreite der Elemente */
			max-width: 800px;
            padding: 15px;
            margin: 10px auto;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
			font-family: 'raleway', 'HelveticaNeue', 'Helvetica Neue', 'Helvetica-Neue', Helvetica, Arial, sans-serif; 
        }
        .content h1 {
            color: #0080C9; /* Neue Farbe für die Überschriften */
        }        
        .content h2 {
            color: #0080C9; /* Neue Farbe für die Überschriften */
        }
        .content h3 {
            color: #0080C9; /* Neue Farbe für die Überschriften */
        }        
        .content img {
            /* max-width: 100px; */ /* Optionale Begrenzung der Bildbreite */
            height: 80px; /* Beibehaltung des Seitenverhältnisses */
            padding: 4px 0px;
        } 
        
        .danke-overlay {
            position: fixed;
            top: 50%;
            left: 50%;
            width: 33vw; /* 1/3 der Bildschirmbreite */
            height: 33vh; /* 1/3 der Bildschirmhöhe */
            background-color: rgba(0, 0, 255, 0.5); /* Transparentes Blau */
            color: white;
            font-size: 3rem;
            font-weight: bold;
            display: flex;
            align-items: center;
            justify-content: center;
            transform: translate(-50%, -50%) rotate(135deg);
            -webkit-transform: translate(-50%, -50%) rotate(135deg); /* Für Safari */
            -moz-transform: translate(-50%, -50%) rotate(135deg); /* Für Firefox */
            -ms-transform: translate(-50%, -50%) rotate(135deg); /* Für Internet Explorer */
            -o-transform: translate(-50%, -50%) rotate(135deg); /* Für Opera */
            z-index: 1000;
            text-align: center;
            box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
        }

        footer {
            background-color: #044d8b;
            color: white;
            text-align: center;
            padding: 10px;
            position: fixed;
            bottom: 0;
            width: 100%;
            display: flex;
            justify-content: space-evenly;
            font-family: 'raleway', 'HelveticaNeue', 'Helvetica Neue', 'Helvetica-Neue', Helvetica, Arial, sans-serif;
        }
        footer a:first-child {
            border-left: 1px solid rgba(255, 255, 255, 0.1);
            padding-left: 17px;
        }
        footer a {
            color: white;
            text-decoration: none;
            border-right: 1px solid rgba(255, 255, 255, 0.1);
            padding: 10px 10px;
        }
        .footer-note {
            margin-top: 20px;
            font-weight: bold;
            color: #462726; /* Hervorhebung in Rot */
            text-align: center;
        }
        .user::before { content: "kontakt"; }
        .at { display: none; }
        .domain::after { content: "@blf.jetzt"; }
    </style>