  <style>
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      	font-family: Arial, sans-serif;
      	line-height: 1.6;
      	color: #333;
	margin: 0;
    }

    header {
     /* background: linear-gradient(135deg, #2e8b57, #1e90ff);*/
      	color: black;
      	padding: 4rem 1rem;
      	text-align: center;
	border-bottom: 0.6rem solid #00E68C;
    }

    header img {
	width: 100%;
	height: auto;
      	max-width: 60rem;
      	margin-top: 3rem;
      	margin-bottom: 6rem;
	text-align: center;
    }

    header h1 {
	font-size: 3.5rem;
	color: #1e3d4b;
    }

    .header-bg {
  	background-image: url('images/header_background.svg');
  	background-size: cover;       
  	background-position: center;  
  	background-repeat: no-repeat;
  	overflow: hidden;
  	height: 50rem;
  	display: flex;
	flex-direction: column;
  	align-items: center;
  	justify-content: center;
  	text-align: center;
  	padding: 20px;
    }

    section {
      padding: 60px 20px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
    }

    section:nth-child(even) {
      background-color: #f5f5f5;
    }

    section:nth-child(odd) {
      background-color: #1e3d4b;
    }

    .section-content {
      max-width: 1200px;
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      gap: 4rem;
      align-items: center;
      justify-content: center;
    }

    .section-content img {
      max-width: 400px;
      width: 100%;
      flex: 1 1 300px;
    }

    .section-text {
      flex: 1 1 300px;
    }

    section:nth-child(odd) p {
	color: #fff;
    }

    .section-text h2 {
	font-size: 3rem;
      	margin-bottom: 1rem;
    }

    section:nth-child(odd) .section-text h2 {
      	color: #00e68c;
    }

   section:nth-child(even) .section-text h2 {
      	color: #00a58c;
    }

    .section-text p {
      font-size: 1.2rem;
    }

    footer {
      background-color: #141414;
      color: white;
      text-align: center;
      padding: 2rem;
    }

    footer a {
      color: white;
      text-decoration: underline;
    }

    .email-button {
      display: inline-block;
      padding: 1rem 2rem;
      color: white;
      font-family: 'Poppins', sans-serif;
      font-size: 1rem;
      border: none;
      border-radius: 0.7rem;
      text-decoration: none;
      transition: background 0.3s ease;
      margin-top: 2rem;
    }

    section .email-button {
      	background: #00e68c;
	color: #141414;
    }

    section .email-button:hover {
      background: #13FDA2;
    }

    @media (max-width: 768px) {
      .section-content {
        flex-direction: column;
      }

      header h1 {
        font-size: 2.5rem;
      }
      header img {
	margin-bottom: 8rem;
      }
    }

    @media (max-width: 450px) {
      
      header h1 {
        font-size: 1.8rem;
      }
    }


  


    .impressum-container {
      max-width: 800px;
      margin: 0 auto;
      background: white;
      padding: 2rem;
      box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    }
 
    .impressum-container h2 {
 	font-size: 1.2rem;
	margin-bottom: 0.3rem;
    }

    .impressum-container p {
	margin-top: 0;
	margin-bottom: 0.3rem;
    }

    .impressum-container img {
	max-width: 10rem;
    }

    @media (max-width: 600px) {
      .impressum-container {
        padding: 20px;
      }
    }
 


  </style>