
        @font-face {
            font-family: "Titillium Web";
            src: url("font/TitilliumWeb-Regular.ttf") format("truetype");
            font-weight: 400;
            font-style: normal;
        }

        @font-face {
            font-family: "Titillium Web";
            src: url("font/TitilliumWeb-Bold.ttf") format("truetype");
            font-weight: 700;
            font-style: normal;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

       body {
            font-family: "Titillium Web", Arial, Helvetica, sans-serif;
            background: #f5f5f5;
            color: #333;
            min-height: 100vh;
            overflow-y: scroll;
        }
        .entry-content { 
            margin-bottom: 30px;
        }
        .entry-content-flex { 
            display: flex;
            align-items: center;
            gap: 40px;
        }
        .entry-content h1{ 
            text-align:center;
            margin-bottom: 30px;
        }
        .entry-content-left,
        .entry-content-right { 
            width:50%;
        }
        .entry-content-flex img{ 
            width: 100%;
        }


        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 50px 20px;
            
        }

        header {
            text-align: center;
            margin-bottom: 60px;
        }

        .logo {
            max-width: 500px;
            width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        }

        .content {
            display: flex;
            gap: 40px;
            /* align-items: center; */
            /* margin-left: 15px;
            margin-right: 15px; */
            
        }

        .column {
            flex: 1;
            background: #fff;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
			text-align: center;
            margin-bottom: 40px;
        }

        h1, h2, h3, h4, h5, h6, strong, b {
            font-weight: 700;
        }
		.column-2 { 
			/* background-color: #c3102e;
			color: white; */
            border: 2px solid #c3102e;
		}
		a { 
			color: #c3102e;
			transition:.2s;
			text-decoration: none;
		}
		a:hover { 
			color: #d12d49;
		}
		

        @media (max-width: 768px) {
            .content {
                flex-direction: column;
                align-items: center;
            }
            header {
                text-align: center;
                margin-bottom: 40px;
            }
            .content {
            display: block;
           margin-bottom: 40px;
            /* align-items: center; */
            /* margin-left: 15px;
            margin-right: 15px; */
            
            }
            .entry-content-flex { 
                display: flex;
                align-items: center;
                gap: 40px;
                flex-direction: column;
            }
            .entry-content-left,
            .entry-content-right { 
                width:100%;
            }
        }
		.mobile-linebreak { 
				display:none;
			}
		@media (max-width: 340px) {
            .mobile-linebreak { 
				display:block;
			}
        }
        .datenschutz-impressum-container { 
            display: flex;
            justify-content: center;
            gap: 5px;
        }
