body {
  margin: 0;
  font-family: sans-serif;
  background-color: #f9f9f9;
  color: #222;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em 2em;
  background-color: #fcfaf6;
  border-bottom: 1px solid #ddd;
  position: relative;
}

.logo img {
  height: 40px;
  width: auto;
  display: block;
}

.menu-toggle {
  display: none;
  font-size: 1.8em;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-links {
  display: flex;
  gap: 1.5em;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

/* Responsive: Hamburger-Menu unter 768px */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    padding: 1em;
    display: none;
  }

  .nav-links.visible {
    display: flex;
  }
}

main {
  padding: 2em;
  max-width: 800px;
  margin: auto;
}

h1 {
  font-size: 2em;
  margin-bottom: 1em;
}

section h2 {
  margin-top: 2em;
  font-size: 1.5em;
}

.claim {
  text-align: center;
  padding: 3em 1em 3em;
  color: #333; 
  background-color: #5CC6C9;
}

.claim h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.3em;

}

.claim h2 {
  font-size: 1.5rem;
  font-weight: 300;
  font-style: italic;
}

.block1 {
  text-align: left;
  padding: 3em 1em 3em;
  color: #333; 
  background-color: #eee;
}