body {
  font-family: 'Fredoka One', cursive;
  background: linear-gradient(135deg, #d4fc79, #96e6a1);
  margin: 0;
  padding: 0;
  color: #333;
}

.about-container {
  padding: 40px 20px;
  max-width: 900px;
  margin: auto;
  background: #f5fff1;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 100, 0, 0.15);
}

.page-title {
  font-size: 3rem;
  text-align: center;
  color: #2e7d32;
  margin-bottom: 10px;
}

.subtitle {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #4e944f;
}

.about-section {
  margin-bottom: 35px;
}

.about-section h2 {
  font-size: 1.8rem;
  color: #388e3c;
  margin-bottom: 10px;
}

.about-section p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #444;
}

.about-section ul {
  list-style-type: 🌿;
  padding-left: 25px;
  color: #444;
  font-size: 1.1rem;
  line-height: 1.8;
}

.back-button {
  text-align: center;
  margin-top: 40px;
}

.back-button a {
  text-decoration: none;
  font-size: 1.2rem;
  color: white;
  background: #4caf50;
  padding: 12px 25px;
  border-radius: 30px;
  box-shadow: 0 5px 15px rgba(76, 175, 80, 0.4);
  transition: background 0.3s ease;
}

.back-button a:hover {
  background: #388e3c;
}
/* ---------------------------
   📱 MOBILE RESPONSIVE LAYOUT
---------------------------- */
@media only screen and (max-width: 768px) {

  body {
    padding: 10px;
    font-size: 16px;
  }

  header, .navbar, .hero, .container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .navbar a {
    display: block;
    margin: 10px 0;
    font-size: 18px;
  }

  .hero img,
  .container img,
  .product-card img,
  .gallery-box img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .product-card, .gallery-box {
    width: 100% !important;
    margin: 10px 0;
  }

  .testimonial-slider {
    flex-direction: column;
  }

  .testimonial {
    margin: 15px 0;
  }

  .footer-links, .footer {
    flex-direction: column;
    text-align: center;
  }

  form input,
  form textarea,
  form button {
    width: 100% !important;
    margin-bottom: 15px;
  }
}
