:root {
  --primary-color: #3D7A5C;
  --secondary-color: #2A5940;
  --accent-color: #6BAF8E;
  --light-color: #EDF6F1;
  --dark-color: #1A3328;
  --gradient-primary: linear-gradient(135deg, #3D7A5C 0%, #5A9F77 100%);
  --hover-color: #2A5940;
  --background-color: #F4FAF7;
  --text-color: #263830;
  --border-color: rgba(61, 122, 92, 0.2);
  --divider-color: rgba(42, 89, 64, 0.15);
  --shadow-color: rgba(61, 122, 92, 0.13);
  --highlight-color: #C0E0B1;
  --main-font: 'Playfair Display', serif;
  --alt-font: 'Poppins', sans-serif;
}

/* Mobile Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 8px;
  background: white;
  border-radius: 6px;
  border: 1px solid var(--border-color);
}

.hamburger .line {
  width: 24px;
  height: 2px;
  background: var(--primary-color);
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 1px;
}

#menu-toggle {
  display: none;
}

#menu-toggle:checked ~ .mobile-nav {
  max-height: 350px;
  opacity: 1;
}

.mobile-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  border-bottom: 2px solid var(--border-color);
  z-index: 1000;
}

.mobile-nav ul {
  padding: 2rem;
  margin: 0;
  list-style: none;
}

.mobile-nav li {
  margin: 0.8rem 0;
}

.mobile-nav a {
  display: block;
  padding: 1rem 0;
  color: var(--text-color);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid transparent;
}

.mobile-nav a:hover {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
}

/* Feature Cards — horizontal style with left accent bar */
.feature-card {
  background: white;
  border-radius: 10px;
  padding: 1.8rem 2rem 1.8rem 2.2rem;
  box-shadow: 0 3px 18px var(--shadow-color);
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.5rem;
  border-left: 5px solid var(--primary-color);
  border-top: 1px solid var(--border-color);
  border-right: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  height: 100%;
}

.feature-card:hover {
  transform: translateX(4px);
  box-shadow: 0 6px 26px var(--shadow-color);
  border-left-color: var(--accent-color);
}

.feature-icon {
  font-size: 2.4rem;
  color: var(--primary-color);
  width: 72px;
  height: 72px;
  min-width: 72px;
  background: var(--light-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.feature-card:hover .feature-icon {
  background: var(--gradient-primary);
  color: white;
  border-color: var(--accent-color);
}

.feature-content {
  flex: 1;
}

/* Testimonials */
.testimonial {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 2.2rem 1.8rem;
  margin: 1rem 0;
  box-shadow: 0 4px 18px var(--shadow-color);
  position: relative;
  transition: all 0.3s ease;
  border-top: 4px solid var(--accent-color);
}

.testimonial:hover {
  transform: translateY(-3px);
  box-shadow: 0 7px 24px var(--shadow-color);
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 24px;
  font-size: 3.5rem;
  color: var(--accent-color);
  font-family: serif;
  opacity: 0.25;
}

/* FAQ Items */
.faq-item {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  margin: 1rem 0;
  box-shadow: 0 2px 14px var(--shadow-color);
  transition: all 0.3s ease;
  padding: 2rem 2.2rem;
  border-left: 4px solid var(--accent-color);
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px var(--shadow-color);
  border-left-color: var(--primary-color);
}

.faq-item h3 {
  margin-bottom: 0.9rem;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.faq-item h3::before {
  content: '▸';
  color: var(--primary-color);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

/* Form Styles */
input,
textarea {
  transition: all 0.3s ease;
  font-family: var(--alt-font);
  border: 2px solid var(--border-color);
  border-radius: 8px;
  padding: 1.2rem;
  background-color: white;
  color: var(--text-color);
  font-size: 1rem;
  width: 100%;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(61, 122, 92, 0.12);
}

input:hover,
textarea:hover {
  border-color: var(--secondary-color);
}

/* Button Styles */
button,
.btn {
  transition: all 0.3s ease;
  background: var(--gradient-primary);
  color: white;
  border: none;
  padding: 1.2rem 2.6rem;
  border-radius: 8px;
  font-weight: 600;
  font-family: var(--alt-font);
  cursor: pointer;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  box-shadow: 0 3px 12px rgba(61, 122, 92, 0.25);
  letter-spacing: 0.02em;
}

button:hover,
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(61, 122, 92, 0.35);
}

/* Typography */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--alt-font);
  color: var(--text-color);
  background: var(--background-color);
  line-height: 1.75;
  max-width: 100vw;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: var(--main-font);
  font-weight: 700;
  color: var(--primary-color);
}

/* Header and Footer */
header {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  color: var(--text-color);
  padding: 1.5rem 0;
  position: relative;
  z-index: 1000;
  box-shadow: 0 2px 14px var(--shadow-color);
}

footer {
  background-color: var(--dark-color);
  color: var(--light-color);
  padding: 3.5rem 0 1.5rem;
}

/* Focus States */
a:focus,
button:focus,
input:focus,
textarea:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

/* Stat Cards */
.stat-card {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 3px 14px var(--shadow-color);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 22px var(--shadow-color);
  border-color: var(--accent-color);
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  font-family: var(--main-font);
  line-height: 1;
}

.stat-text {
  font-size: 0.92rem;
  color: var(--text-color);
  margin-top: 0.5rem;
  font-weight: 500;
}

/* Grid Layouts */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 1.8rem;
  margin: 2rem 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

/* Pattern Background */
.pattern-bg {
  background-image:
    radial-gradient(ellipse at 15% 40%, rgba(61, 122, 92, 0.07) 0%, transparent 45%),
    radial-gradient(ellipse at 85% 60%, rgba(107, 175, 142, 0.08) 0%, transparent 42%),
    radial-gradient(ellipse at 50% 10%, rgba(192, 224, 177, 0.06) 0%, transparent 38%);
  background-size: 100% 100%;
}

/* Food table */
.food-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 10px;
  overflow: hidden;
}

.food-table th {
  background: rgba(255,255,255,0.25);
  color: white;
  padding: 0.9rem 1.2rem;
  text-align: left;
  font-weight: 600;
  font-family: var(--alt-font);
  font-size: 0.95rem;
}

.food-table td {
  padding: 0.85rem 1.2rem;
  font-size: 0.93rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.food-table tr:last-child td {
  border-bottom: none;
}

.food-table tr:nth-child(even) td {
  background: rgba(255,255,255,0.08);
}

/* Responsive */
* {
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  padding: 0 2rem;
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .navigation {
    display: none;
  }

  .mobile-nav {
    display: block;
  }

  .hero h1 {
    font-size: 2.1rem;
    line-height: 1.25;
    padding: 0 1rem;
  }

  .container {
    padding: 0 1rem;
    max-width: 100vw;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 0.3rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 0.3rem;
  }

  .feature-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.6rem 1.2rem;
  }

  .feature-card,
  .testimonial,
  .faq-item {
    margin: 0.8rem 0;
    max-width: 100%;
    word-wrap: break-word;
  }

  .contact-block {
    max-width: 100% !important;
  }

  .food-table th,
  .food-table td {
    padding: 0.7rem 0.8rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.7rem;
    line-height: 1.25;
    padding: 0 0.5rem;
  }

  .hero p {
    font-size: 0.97rem;
    padding: 0 0.5rem;
  }

  .feature-card,
  .testimonial,
  .faq-item {
    padding: 1.3rem 0.9rem;
    max-width: 100%;
  }

  .stat-number {
    font-size: 1.6rem;
  }

  .container {
    padding: 0 0.5rem;
  }

  input, textarea {
    font-size: 16px;
    padding: 0.9rem;
  }

  .btn {
    padding: 0.9rem 1.6rem;
    font-size: 0.88rem;
  }
}