
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Montserrat', sans-serif;
      background-color: #f4f6f9;
      color: #1b2e1b;
      padding: 20px;
    }

    .logo {
      max-width: 120px;
      display: block;
      margin: 0 auto 20px auto;
      border-radius: 10px;
    }

    h1 {
      text-align: center;
      margin-bottom: 30px;
      color: #0a3d0a;
      font-size: 2.2em;
    }

    section {
      margin-bottom: 40px;
      background-color: #ffffff;
      padding: 25px;
      border-left: 8px solid #0a3d0a;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    h2 {
      color: #0a3d0a;
      margin-bottom: 15px;
      font-size: 27px;
    }

    p {
      line-height: 1.7;
      margin-bottom: 10px;
      font-size: 25px;
    }

    img {
      max-width: 100%;
      display: block;
      margin: 20px auto;
      border-radius: 10px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    }

    ul {
      list-style-type: square;
      padding-left: 20px;
    }

    ul li {
      margin-bottom: 8px;
    }

    a {
      color: #0d4d0d;
      text-decoration: none;
    }

    a:hover {
      text-decoration: underline;
    }

    footer {
      margin-top: 60px;
      font-size: 0.9em;
      text-align: center;
      color: #2f2f2f;
      padding-top: 10px;
      border-top: 1px solid #ccc;
    }
