:root {
  --primary: #3a7d3a; /* Modernes Grün aus dem Logo */
  --secondary: #4f7cac;
  --accent: #e8f1f9;
  --text: #222;
  --white: #fff;
  --gray: #f5f7fa;
}

body.page {
  font-family: 'Segoe UI', Arial, sans-serif;
  background: var(--gray);
  color: var(--text);
  margin: 0;
}

.header {
  background: var(--primary);
  color: var(--white);
  padding: 2rem 0 1rem 0;
  text-align: center;
}

.header__logo-img {
  max-width: 800px;
  height: auto;
  margin-bottom: 1rem;
}

.header__title {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
}

.header__nav {
  margin-top: 1rem;
}

.header__nav-link {
  color: #fff;
  background: var(--secondary);
  text-decoration: none;
  margin: 0 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
  display: inline-block;
}
.header__nav-link:hover {
  background: var(--accent);
  color: var(--primary);
}

.header__menu-toggle {
  background: var(--secondary);
  color: var(--white);
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 2rem;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}
.header__menu-toggle:hover {
  background: var(--accent);
  color: var(--primary);
}

.header__menu-dropdown {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  box-shadow: 0 4px 16px rgba(30,53,94,0.10);
  border-radius: 1rem;
  margin-top: 0.5rem;
  min-width: 200px;
  z-index: 100;
  text-align: left;
  padding: 1rem 0.5rem;
}

.header__menu-dropdown .header__nav-link {
  display: block;
  color: var(--primary);
  background: none;
  margin: 0.5rem 0;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.header__menu-dropdown .header__nav-link:hover {
  background: var(--accent);
  color: var(--secondary);
}

.main {
  max-width: 900px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.teaser {
  background: var(--accent);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  box-shadow: 0 2px 8px rgba(30,53,94,0.07);
}

.teaser__text {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.teaser__cta {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 0.75rem 2rem;
  border-radius: 2rem;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s;
}
.teaser__cta:hover {
  background: var(--secondary);
}

section {
  background: var(--white);
  border-radius: 1rem;
  margin-bottom: 2rem;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(30,53,94,0.04);
}

h2, h3 {
  color: var(--primary);
  margin-top: 0;
}

ul {
  padding-left: 1.2rem;
}

li {
  margin-bottom: 0.5rem;
}

.footer {
  background: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 1rem 0;
  margin-top: 3rem;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}

.footer__copyright {
  margin: 0;
  font-size: 1rem;
}

a { color: #5D5D9E; }
a:visited { color: #5D5D9E; }
a:active { color: #5C615E; }
a:hover { color: #B2B3B4; }

@media (max-width: 600px) {
  .main {
    padding: 0 0.5rem;
  }
  section {
    padding: 1rem;
  }
  .header__title {
    font-size: 1.2rem;
  }
  .teaser {
    padding: 1rem;
  }
  .header__nav-link {
    padding: 0.5rem 0.5rem;
    margin: 0 0.2rem;
    font-size: 0.95rem;
  }
}

/* --- Responsive Design für Tablet und Handy --- */
@media (max-width: 900px) {
  .main {
    max-width: 100%;
    padding: 0 0.5rem;
  }
  section {
    padding: 1.2rem;
  }
  .header__title {
    font-size: 1.5rem;
  }
  .header__logo-img {
    max-width: 300px;
  }
}

@media (max-width: 600px) {
  .header {
    padding: 1rem 0 0.5rem 0;
  }
  .header__logo-img {
    max-width: 180px;
  }
  .header__title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }
  .header__nav {
    margin-top: 0.5rem;
  }
  .header__menu-toggle {
    width: 100%;
    font-size: 1.1rem;
    padding: 0.75rem 0;
  }
  .header__menu-dropdown {
    left: 0;
    transform: none;
    min-width: 100vw;
    border-radius: 0;
    box-shadow: none;
    padding: 1rem 0.5rem;
  }
  .header__menu-dropdown .header__nav-link {
    font-size: 1.1rem;
    padding: 1rem;
    margin: 0.2rem 0;
    text-align: center;
  }
  .teaser {
    padding: 1rem;
  }
  section {
    padding: 1rem;
  }
  .footer {
    font-size: 0.95rem;
    padding: 0.7rem 0;
  }
}
