body {
  height: 100%;
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #FFFFFF;
  color: #222;
}

.container {
  max-width: 100%;
  margin: 0 auto;
  padding: 10px;
}

main .container {
  justify-content: center;
  max-width: 70%;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  height: 100px;
  width: 100%;
  background-color: #FFFFFF;
  color: #107E82;
  padding: 10px 0;
  text-align: center;
  z-index: 1000;
}

.page-wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

header .responsive-logo {
  height: 100px;
}

.responsive-logo {
  max-width: 70%;
  height: auto;
  display: block;
  margin: 0 auto;
}

@media (max-width: 600px) {
  .responsive-logo {
    max-width: 60%;
  }
}

nav {
  position: fixed;
  top: 140px; /* Höhe des Headers anpassen! */
  left: 0;
  width: 100%;
  background-color: #FFFFFF;
  border-bottom: 2px solid #A61825;
  z-index: 999;
}

nav .container {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 10px 0;
}

nav a {
  text-decoration: none;
  color: #107E82 ;
  font-weight: bold;
}

nav a:hover {
  color: #A61825;
}

main {
  flex: 1;
  padding-top: 160px; /* Header + Nav Höhe addiert */
}

main h2 {
  color: #107E82 ;
}

.button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #107E82 ;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  margin-top: 20px;
}

.button:hover {
  background-color: #287233;
}

footer {
  background-color: #FFFFFF;
  color: #107E82;
  text-align: center;
  padding: 10px 0;
  margin-top: 40px;
}

.instructions {
  max-width: 80%;
  margin: 2rem auto;
  background: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.highlight {
  background: #ffe;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-weight: bold;
}

h1, h2 {
  text-align: center;
}
