/* Grundlayout und Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #333;
    background-color: #fefefe;
    min-height: 100vh;
}

/* Standard: Hamburger versteckt */
#hamburger {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #006400;
}

/* Mobile Styles */
@media (max-width: 768px) {
  #NavList {
    display: none;          /* Menü zunächst verstecken */
    flex-direction: column; 
    align-items: center;
    gap: 20px;
    background-color: white;
    position: absolute;
    top: 80px;              /* direkt unter Header */
    right: 0;
    width: 200px;
    padding: 20px;
    border-left: 1px solid #ccc;
    box-shadow: -5px 5px 15px rgba(0,0,0,0.1);
    z-index: 999;
  }

  #hamburger {
    display: block;        /* Hamburger sichtbar auf Mobile */
  }

  /* Menü aktiv */
  #NavList.active {
    display: flex;
  }

  #Header {
    padding: 0 20px;
    position: relative;
  }
}

/* Header / Footer bleiben vom Hauptdesign übernommen */

/* Section Styles */
section {
    max-width: 1000px;
    margin: 100px auto 100px auto;
    padding: 50px 30px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #006400;
    margin-bottom: 40px;
    position: relative;
    font-weight: 600;
}

section h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background-color: #28a745;
    margin: 15px auto 0 auto;
    border-radius: 2px;
}

/* Textinhalte */
.content-wrapper p {
    margin-bottom: 25px;
    font-size: 1.1rem;
    color: #444;
}

/* Link Style */
.content-wrapper a {
    color: #28a745;
    text-decoration: underline;
}

.content-wrapper a:hover {
    color: #1f7f34;
}

/* Footer-Anpassung für diese Seiten */
footer {
    background-color: #111;
    color: white;
    text-align: center;
    padding: 50px 30px;
    margin-top: 80px;
}

footer a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 900px) {
    section {
        margin: 60px 20px;
        padding: 40px 20px;
    }

    section h2 {
        font-size: 2rem;
    }

    .content-wrapper p {
        font-size: 1rem;
    }
}

#Header {
    position: sticky;
    top: 0;
    background: white;
    z-index: 1000;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 60px;
}

#ContainerLogo img {
    height: 80px;
    width: auto;
    display: block;
}

#NavList {
    list-style: none;
    display: flex;
    font-size: 20px;
}

.NavListClass {
    margin-left: 40px;
}

#NavList a {
    text-decoration: none;
    color: rgb(30, 102, 36);
}