body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #f4f4f4;
}

.site-header {
  background: linear-gradient(135deg, #3a8ef5, #9b59b6); /* gradient */
  color: white;
  text-align: center;
  padding: 25px 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.logo-area {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid white;
}

.site-name {
  font-size: 2rem;
  margin: 0;
  font-weight: 600;
  letter-spacing: 1px;
}

.navbar {
  margin-top: 20px;
}

.menu-toggle {
  display: none;
  background: none;
  border: 2px solid white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 26px;
  color: white;
  cursor: pointer;
}

.nav-links {
  list-style: none;
  padding: 0;
  margin: 15px 0 0 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-size: 1.1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: "";
  width: 0;
  height: 2px;
  background: white;
  position: absolute;
  left: 0;
  bottom: -5px;
  transition: width 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: #e0e0e0;
}

/* Responsive */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    margin: auto;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    margin-top: 10px;
  }

  .nav-links.active {
    display: flex;
  }
}



    .container {
      max-width: 1000px;
      margin: auto;
      background: #fff;
      padding: 30px;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
      border-radius: 10px;
    }
    h2, h3, h4 {
      color: #2e7d32;
    }
    h1 {
      color: #fff;
    }
    
    p {
      line-height: 1.7;
      margin-bottom: 20px;
    }
    ul, ol {
      margin-left: 20px;
      margin-bottom: 20px;
    }
    table {
      width: 100%;
      border-collapse: collapse;
      margin: 20px 0;
    }
    table, th, td {
      border: 1px solid #ccc;
    }
    th, td {
      padding: 12px;
      text-align: center;
    }
    th {
      background: #e0f2f1;
    }
    a {
      color: #1e88e5;
      text-decoration: none;
    }
    a:hover {
      text-decoration: underline;
    }
    .section {
      margin-bottom: 40px;
    }
    .faq {
      background: #e8f5e9;
      padding: 15px;
      border-radius: 8px;
      margin-bottom: 20px;
    }
    .faq strong {
      color: #388e3c;
    }
    .highlight {
      background: #dcedc8;
      padding: 10px;
      border-left: 5px solid #689f38;
      margin-bottom: 20px;
    }
    .button {
      display: inline-block;
      background: #43a047;
      color: #fff;
      padding: 10px 20px;
      text-decoration: none;
      border-radius: 5px;
      margin: 10px 0;
    }
    .button:hover {
      background: #388e3c;
    }

