 body {
      margin: 0;
      font-family: 'Segoe UI', sans-serif;
      background: linear-gradient(to bottom right, #f0f9f0, #e1f5e1);
      color: #2e2e2e;
    }

    header {
      background: #ffffffdd;
      padding: 20px;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    }

    header img {
      height: 70px;
    }

    .section {
      max-width: 960px;
      margin: auto;
      padding: 40px 20px;
    }
	
    header h1 {
      font-size: 3rem;
      margin-bottom: 10px;
    }
    header p {
      font-size: 1.3rem;
    }
    nav {
      display: flex;
      justify-content: center;
      background: #2e3a59;
      flex-wrap: wrap;
    }
    nav a {
      padding: 15px 20px;
      color: #fff;
      text-decoration: none;
      font-weight: bold;
      transition: background 0.3s ease;
    }
    nav a:hover {
      background: #3f4e72;
    }
    section {
      padding: 40px 20px;
      max-width: 1000px;
      margin: auto;
    }
    h2 {
      color: #e85d04;
    }
    .product-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
    }
    .product {
      border: 1px solid #ccc;
      border-radius: 10px;
      padding: 15px;
      text-align: center;
      background: #fff;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    }
    .product img {
	width: 100%;
	height: auto;
	object-fit: contain;
	border-radius: 8px;
	margin-bottom: 10px;
	}
	
    .product h3 {
      margin: 10px 0;
      color: #d00000;
    }
    .product input[type='number'] {
      width: 60px;
      padding: 5px;
      margin-right: 10px;
      border-radius: 4px;
      border: 1px solid #aaa;
    }
    .product button {
      background: #00b386;
      color: white;
      border: none;
      padding: 10px 15px;
      border-radius: 5px;
      cursor: pointer;
    }
	.product-list {
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}
    .product button:hover {
      background: #009970;
    }
    .gallery {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
    }
    .gallery img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
    
	  footer {
      background-color: #eaf6ea;
      text-align: center;
      padding: 20px;
      font-size: 14px;
      color: #555;
    }
    .address {
      margin-top: 10px;
      font-style: italic;
      color: #444;
    }
    footer p {
      margin: 5px 0;
    }
	
	   section#contact {
      max-width: 600px;
      margin: 50px auto;
      background: #fff;
      padding: 30px 40px;
      border-radius: 12px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    section#contact h2 {
      text-align: center;
      color: #2d6a4f;
      margin-bottom: 20px;
    }

    form label {
      display: block;
      margin: 12px 0 6px;
      color: #333;
      font-weight: 500;
    }

    form input,
    form textarea {
      width: 100%;
      padding: 10px 12px;
      border: 1px solid #ccc;
      border-radius: 8px;
      font-size: 16px;
      transition: border-color 0.3s ease;
    }

    form input:focus,
    form textarea:focus {
      border-color: #2d6a4f;
      outline: none;
    }

    form textarea {
      resize: vertical;
      min-height: 120px;
    }

    button[type="submit"] {
      margin-top: 20px;
      width: 100%;
      padding: 12px;
      background-color: #2d6a4f;
      color: white;
      font-size: 16px;
      font-weight: bold;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    button[type="submit"]:hover {
      background-color: #1b4332;
    }

    @media (max-width: 600px) {
      section#contact {
        padding: 20px;
        margin: 30px 15px;
      }
    }
	.brand {
  text-align: center;
}

.brand img {
  display: block;
  margin: 0 auto;
  height: 60px; /* adjust as needed */
}

.brand h1 {
  margin: 0;
  padding-top: 5px; /* slight space below logo */
  font-size: 2em;
}

.brand p {
  margin-top: 5px;
  font-style: italic;
  font-size: 1em;
}

.address-section {
  background-color: #f4f4f4;  /* light gray or choose a brand-friendly color */
  padding: 20px;
  margin-top: 30px;
  text-align: center;
  border-top: 2px solid #ccc;
}

.address-section h2 {
  margin-top: 0;
  font-size: 1.4em;
  color: #333;
}

.address-section p {
  margin: 10px 0 0;
  font-size: 1em;
  color: #555;
  line-height: 1.6;
}

  #scrollToTop {
      display: none;
      position: fixed;
      bottom: 40px;
      right: 30px;
      z-index: 100;
      background: linear-gradient(145deg, #7bbf4d, #5fa137);
      color: white;
      border: none;
      border-radius: 50%;
      padding: 14px 18px;
      font-size: 20px;
      cursor: pointer;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
      transition: all 0.3s ease;
    }

    #scrollToTop:hover {
      background: linear-gradient(145deg, #6ca843, #4f8b2e);
      transform: scale(1.1);
    }