

    html {
      scroll-behavior: smooth;
      scroll-padding-top: 30vh; /* offsets scroll to center sections */
    }
    body {
      margin: 0;
      font-family: 'Avenir', 'Segoe UI', sans-serif;
      background-color: #f7fdf8;
      color: #2f4f4f;
    }
    nav {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 1rem 2rem;
      background: #ffffffcc;
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    }
    .nav-logo {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: 0.5rem;
    }
    .nav-logo img {
      height: 32px;
    }
    .nav-logo span {
      font-weight: bold;
      font-size: 1.2rem;
      color: #4a7023;
    }
    .nav-links {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      justify-content: center;
    }
    .nav-links a {
      text-decoration: none;
      color: #4a7023;
      font-weight: 600;
    }
    header {
      position: relative;
      height: 100vh;
      overflow: hidden;
    }
    header img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .header-content {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: white;
      text-align: center;
      text-shadow: 0 2px 4px rgba(0,0,0,0.6);
    }
    .header-content h1 {
      font-size: 3rem;
      margin-bottom: 0.5rem;
    }
    section {
      padding: 3rem 1rem;
      max-width: 960px;
      margin: auto;
    }
        .hidden-section {
            display: none;
        }
        .tall-section {
            padding-top: 200px;
            padding-bottom: 200px;
        }

    section h2 {
      color: #4a7023;
      font-size: 2rem;
      margin-bottom: 1rem;
      text-align: center;
    }
    form {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    input, textarea, button {
      padding: 0.75rem;
      font-size: 1rem;
      border-radius: 8px;
      border: 1px solid #ccc;
    }
    button {
      background-color: #4a7023;
      color: white;
      border: none;
      cursor: pointer;
    }
        .nfbutton {
            width: 100%;
            margin-top: .75rem;
        }
    .info-grid, .product-showcase {
      display: grid;
      gap: 2rem;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      margin-top: 2rem;
    }
    .info-box, .product-item {
      background: white;
      padding: 1rem;
      border-radius: 12px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
      text-align: center;
      cursor: pointer;
    }
/*    .product-item img {
      max-width: 100%;
      height: auto;
      border-radius: 8px;
    }*/
    
    .product-item img {
        max-width: 100%;
        height: auto;
        max-height: 200px; /* adjust this value to fit your design */
        border-radius: 8px;
        object-fit: contain; /* keeps image centered and scaled within the box */
      }

    
    
    

