body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #fff;
  color: #333;
}

header {
  background: #eee;
  color: white;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo {
  height: 40px;
  margin-right: 0.5rem;
}

.brandname {
  height: 10px;
}

nav a {
  color: white;
  margin-left: 1rem;
  text-decoration: none;
}
.hero {
  display: flex;
  flex-direction: column; /* vorher: row */
  padding: 2rem;
  align-items: flex-start; /* linksbündig */
  background-color: #f4f7fa;
}

.hero-image img {
  max-width: 300px;
  margin-top: 1.5rem;
  height: auto;
}

.hero-text {
  flex: 1;
  min-width: 300px;
}



.button {
  background: #0070f3;
  color: white;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
  margin-top: 1rem;
}

.fade {
  transition: opacity 0.5s ease-in-out;
  opacity: 1;
}
.fade-out {
  opacity: 0;
}


section {
  padding: 2rem;
}

footer {
  background: #eee;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
}
