
body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
    text-align: center;
}

header {
    background: #068d1c;
    color: white;
    position: fixed;
    padding: 10px;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    /* display: flex; */
    /* justify-content: space-between; */
    align-items: center;
    /* flex-wrap: wrap; */
}
.menu-toggle {
    display: none;
    font-size: 3em;
    cursor: pointer;
    color: white;
    margin-right:20px;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0;
}

nav ul li {
    margin: 0 10px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    position: relative;
    padding: 0.5rem;
    transition: color 0.3s;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #0c4e17;
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

nav ul li a:hover {
    color: #0c4e17;
}
  .container {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  .section {
    margin-bottom: 2rem;
  }

  .section h2 {
    color: #0c4e17;
    border-left: 6px solid #0c4e17;
    padding-left: 10px;
    font-size: 1.6rem;
  }

  .section p {
    line-height: 1.7;
    font-size: 1rem;
    margin-top: 0.5rem;
  }

  footer {
    text-align: center;
    padding: 1rem;
    background: #0c4e17;
    color: white;
  }