    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: Arial, sans-serif;
      background-color: #ffffff;
    }

    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 2rem;
      background-color: #f8f8f8;
      position: sticky;
      top: 0;
      z-index: 1000;
    }
	

	
	/* Hover-Effekt für Desktop-Menü */
@media (min-width: 769px) {
  nav a:hover {
    text-decoration: underline;
  }
}

    .logo {
      font-size: 1.5rem;
      font-weight: bold;
    }

    nav {
      display: flex;
      gap: 1rem;
    }

    nav a {
      text-decoration: none;
      color: #333;
    }

    .burger {
      display: none;
      flex-direction: column;
      cursor: pointer;
    }

    .burger div {
      width: 25px;
      height: 3px;
      background-color: #333;
      margin: 4px 0;
    }

    .mobile-nav {
      display: none;
      flex-direction: column;
      background-color: #f8f8f8;
      position: fixed;
      top: 140px;
      right: 0px;
      padding: 1rem;
	  z-index: 2000;
    }

    .mobile-nav a {
      margin: 0.5rem 0;
	  text-decoration: none;
	  font-size: 16pt;
	  font-weight: bold;
	  color: #333;	  
    }

    .fixed-graphic1 {
      position: fixed;
      bottom: 10px;
      left: 10px;
      width: 200px;
      height: 200px;
	  z-index: -100;
    }
	
    .fixed-graphic2 {
      position: fixed;
      top: 50px;
      right: 0px;
      width: 300px;
      height: 300px;
	  z-index: -100;
    }	
	
	h1, h2, p {
		margin-bottom: 25px;
	}
	
	img.design {
	  margin-bottom: 25px;
	  max-width: 90%;
	  height: auto;
	  display: block;
	}	
	
	img.content {
	  margin-bottom: 25px;
	  max-width: 40%;
	  height: auto;
	  display: block;
	}	
	
    /* Responsive */
    @media (max-width: 768px) {
      nav {
        display: none;
      }
	  
	  img.content {
		  max-width: 90%;
	  }
	  
      .burger {
        display: flex;
      }

      .mobile-nav.active {
        display: flex;
      }
    }
	
	.kontaktformular {
  max-width: 600px;
  margin: 2rem auto;
  padding: 1rem;
  background-color: #fafafa;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.kontaktformular h2 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  text-align: center;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-grid {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  flex-wrap: wrap;
}

.form-grid .form-group {
  flex: 1;
  min-width: 120px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

label {
  margin-bottom: 0.3rem;
  font-weight: 600;
  font-size: 0.95rem;
}

input,
textarea {
  padding: 0.6rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  width: 100%;
}

input:focus,
textarea:focus {
  border-color: #007acc;
  outline: none;
}

button {
  padding: 0.75rem 1.5rem;
  background-color: #007acc;
  color: white;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  align-self: flex-start;
}

button:hover {
  background-color: #005fa3;
}

/* Responsiv für kleine Displays */
@media (max-width: 600px) {
  .form-grid {
    flex-direction: column;
  }
}