/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #6f956f; /* green background */
    scroll-behavior: smooth;
  }
  
  /* Navigation */
  nav {
    background: rgba(255, 255, 255, 0.9); /* semi-transparent white */
    padding: 1rem;
    position: sticky;
    top: 0;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  }
  
  nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 2rem;
  }
  
  nav a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
  }
  
  /* Sections */
  section {
    padding: 4rem 2rem;
    text-align: center;
    background: #AEBFAF;
    margin: 2rem;
    border-radius: 12px;
  }
  
  /* Home Section */
  #home .container {
    max-width: 600px;
    margin: auto;
  }
  
  .logo {
    width: 300px;
    height: 300px;
    margin-bottom: 1rem;
  }
  
  .home-box {
    background-color: white;
    border-radius: 12px;
    padding: 2rem;
    max-width: 800px;
    margin: auto;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  }
  
  .slogan {
    font-size: 1.1rem;
    margin-top: 0.5rem;
    color: #555;
  }
  
  .description {
    margin-top: 1.5rem;
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
  }
  
  /* About Section */
  .feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 2rem auto;
    max-width: 800px;
    flex-wrap: wrap;
  }
  
  .feature img {
    width: 200px;
    border-radius: 8px;
  }
  
  .feature div {
    flex: 1;
    text-align: left;
  }
  
  .feature-box {
    background-color: white;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem auto;
    max-width: 900px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  }
  
  /* Pricing Section */
  .pricing-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
  }
  
  .plan {
    background: #f5f5f5;
    border: 1px solid #ddd;
    padding: 1.5rem;
    border-radius: 8px;
    width: 250px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
  }
  
  .plan h3 {
    margin-bottom: 0.5rem;
    color: #6f956f;
  }
  
  .plan ul {
    text-align: left;
    margin-top: 1rem;
  }
  
  .plan li {
    margin-bottom: 0.5rem;
  }
  