      body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f4f4f4;
        }
		.header-spacing {
			margin-top: 40px; /* oder eine andere gewünschte Größe */
		}
        .container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 40px;
            background-color: white;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            border-radius: 8px;
        }
        .header {
            text-align: center;
            padding-bottom: 8px;
            border-bottom: 1px solid #ddd;
        }
        .header img {
            max-width: 970px;
            margin-bottom: 10px;
        }
        .header h1 {
            margin: 0;
            color: #333;
        }
	   .header h1.h1red {
				margin: 0;
				color: #FF4600;
			}
        .section {
            padding: 5px 0;
            border-bottom: 1px solid #ddd;
        }
        .section:last-child {
            border-bottom: none;
        }
        .section h2 {
            margin-top: 0;
            color: #0056b3;
        }
        .section p {
            margin: 10px 0;
            line-height: 1.6;
            color: #333;
        }
        a {
            color: #0056b3;
            text-decoration: none;
        }
        a:hover {
            text-decoration: underline;
        }
        .email-link {
            color: blue;
            text-decoration: underline;
            cursor: default;
        }
        .footer {
            padding: 20px 0;
            text-align: center;
            background-color: #283747;
            color: white;
            margin-top: 20px;
        }
        .footer a {
            color: white;
            text-decoration: underline;
        }