/* Extrahiertes und angepasstes eingebettetes CSS aus index.html */
body {
  font-family: 'Nunito', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f9f8;
  color: #333;
  line-height: 1.6;
}
header {
  background: linear-gradient(to bottom, #ffffff 0%, #e0f2f1 100%);
  color: #004d40;
  text-align: center;
  padding: 3rem 2rem 2rem;
  position: relative;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

header p {
  font-size: 1.1rem;
  color: #00796b;
  margin-top: 0.5rem;
}
.menu-toggle {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #00bfa5;
  color: white;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 1.2rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
}
.menu-toggle:hover {
  background-color: #26c6da;
}
.menu-toggle i {
  pointer-events: none;
}
.nav-links {
  border-radius: 12px;
  padding: 0.75rem 1.25rem;
  border-radius: 16px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  background-color: #00bfa5;
}






@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
  .nav-links {
  border-radius: 12px;
  padding: 0.75rem 1.25rem;
  border-radius: 16px;
    display: none;
    flex-direction: column;
  }
  .nav-links.show {
    display: flex;
  }
  




}
main {
  max-width: 1080px;
  margin: auto;
  padding: 2rem 1rem;
}
h2 {
  color: #00796b;
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1rem;
}
.intro-section p {
  text-align: center;
  max-width: 700px;
  margin: auto;
}
.iconbox {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.iconcard {
  background: white;
  padding: 2rem;
  text-align: center;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s;
}
.iconcard:hover {
  transform: translateY(-5px);
}
.iconcard i {
  font-size: 2.5rem;
  color: #00bfa5;
  margin-bottom: 0.75rem;
}
.highlight-section {
  margin-top: 4rem;
  text-align: center;
  padding: 2rem;
  background-color: #e0f2f1;
  border-radius: 16px;
}
.highlight-section h2 {
  margin-bottom: 1rem;
  color: #00796b;
}
.highlight-section p {
  max-width: 600px;
  margin: auto;
}
.button {
  display: inline-block;
  background-color: #00bfa5;
  color: white;
  padding: 0.75rem 1.5rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  margin-top: 1.5rem;
  transition: background-color 0.3s ease;
}
.button:hover {
  background-color: #26c6da;
}
footer {
  background-color: #00bfa5;
  color: white;
  text-align: center;
  padding: 2rem 1rem;
  margin-top: 3rem;
}
.footer-links {
  margin-bottom: 1rem;
}
.footer-links a {
  color: white;
  margin: 0 0.75rem;
  text-decoration: none;
  font-weight: 600;
}
.footer-links a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .nav-links {
  border-radius: 12px;
  padding: 0.75rem 1.25rem;
    padding: 1rem;
    margin: 0.5rem;
  }
}

.nav-links a {
  background-color: #00bfa5;
  color: white !important;
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none !important;
  transition: background-color 0.3s ease;
  display: inline-block;
}

.nav-links a:hover {
  background-color: #26c6da;
}


/* Responsives Logo */
header img.logo {
  display: block;
  margin: 0 auto 0.25rem;
  height: auto;
  max-width: 225px;
}

@media (min-width: 768px) {
  header img.logo {
    max-width: 275px;
  }
}

@media (min-width: 1024px) {
  header img.logo {
    max-width: 325px;
  }
}

.visually-hidden {
  position: absolute !important;
  height: 1px; 
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap; 
  border: 0;
  padding: 0;
  margin: 0;
}

