/* =============================================================
  CSS Reset & Normalize
============================================================= */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6,
p, blockquote, pre, a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub,
sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
/* HTML5 display-role reset */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F4F7EB;
  color: #1f3420;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #195A32;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus, a:hover {
  color: #69A23F;
}
ul, ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
}
strong { font-weight: bold; }
em { font-style: italic; }

/* =============================================================
  Typography
============================================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #195A32;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  line-height: 1.2;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.5rem; margin-bottom: 12px; }
h4 { font-size: 1.125rem; }

p, .text-section {
  color: #384738;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  margin-bottom: 16px;
  line-height: 1.7;
}

/* =============================================================
  Layout Containers
============================================================= */
.container {
  width: 100%;
  max-width: 1120px;
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(25,90,50,0.07);
}

/* =============================================================
  Gradient Modern Hero/Accent Backgrounds
============================================================= */
.hero {
  padding: 60px 0 40px 0;
  margin-bottom: 60px;
  background: linear-gradient(120deg, #195A32 0%, #69A23F 100%);
  color: #fff;
}
.hero .content-wrapper h1,
.hero .content-wrapper p {
  color: #fff;
}
.hero .content-wrapper a.cta {
  margin-top: 24px;
}

/* =============================================================
  Header & Main Navigation
============================================================= */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 1px 14px rgba(25, 90, 50, 0.04);
  position: sticky;
  top: 0;
  z-index: 50;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 0;
}
.logo img {
  height: 42px;
  width: auto;
  display: block;
}
nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  color: #195A32;
  font-size: 1rem;
  transition: background 0.2s, color 0.2s;
}
nav a:focus, nav a:hover {
  background: #F4F7EB;
  color: #69A23F;
}
nav a.cta.primary {
  background: #195A32;
  color: #fff;
  border-radius: 999px;
  font-weight: bold;
  box-shadow: 0 6px 24px rgba(25,90,50,0.09);
  transition: background 0.2s, box-shadow 0.2s;
}
nav a.cta.primary:hover,
nav a.cta.primary:focus {
  background: #69A23F;
  color: #fff;
  box-shadow: 0 4px 16px rgba(105,162,63,0.10);
}

.mobile-menu-toggle {
  display: none;
  background: #195A32;
  color: #fff;
  font-size: 2rem;
  border: none;
  border-radius: 8px;
  padding: 2px 10px;
  margin-left: 20px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #69A23F;
  color: #fff;
}
/* ================== Mobile Navigation Overlay ================== */
.mobile-menu {
  position: fixed;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(25,90,50,0.97);
  transform: translateX(-100vw);
  transition: transform 0.4s cubic-bezier(.77,0,.18,1);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #fff;
  font-size: 2.25rem;
  border: none;
  cursor: pointer;
  padding: 12px 24px;
  align-self: flex-end;
  margin-top: 28px;
  margin-bottom: 12px;
  margin-right: 10px;
  z-index: 1200;
  transition: color 0.2s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #69A23F;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  margin-top: 32px;
  align-items: flex-start;
  padding: 0 20px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.35rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  padding: 10px 0 11px 0;
  border-radius: 6px;
  width: 100%;
  transition: background 0.15s, color 0.15s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: #69A23F;
  color: #fff;
}

/* =============================================================
  Responsive (Mobile-First)
============================================================= */
@media (max-width: 1100px) {
  .container {
    max-width: 97vw;
    padding: 0 10px;
  }
}
@media (max-width: 900px) {
  nav {
    gap: 18px;
  }
}
@media (max-width: 800px) {
  .container { max-width: 100vw; padding: 0 10px; }
  header .container { height: 60px; }
  .hero { padding: 38px 0 22px 0; }
}
@media (max-width: 900px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* =============================================================
  Footer
============================================================= */
footer {
  background: #195A32;
  color: #fff;
  padding: 38px 0 0 0;
  margin-top: 48px;
  width: 100%;
}
footer p {
  color: white;
}
footer .container {
  flex-direction: column;
  align-items: stretch;
  gap: 26px;
}
footer nav {
  display: flex;
  gap: 28px;
}
footer nav a {
  color: #fff;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  opacity: 0.92;
  padding: 2px 0;
  border-radius: 0;
  transition: opacity 0.18s, color 0.18s;
}
footer nav a:focus, footer nav a:hover {
  color: #69A23F;
  opacity: 1;
}
footer .text-section {
  margin-top: 14px;
  color: #fff;
  font-size: 0.97rem;
  line-height: 1.7;
}
footer .text-section a {
  color: #69A23F;
  text-decoration: underline;
}
footer .text-section a:hover, footer .text-section a:focus {
  color: #F4F7EB;
}

/* =============================================================
  Cards, Lists, Grids & Flex Containers
============================================================= */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  box-shadow: 0 4px 24px rgba(25,90,50,0.07);
  border-radius: 16px;
  padding: 28px 22px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 280px;
  transition: box-shadow 0.23s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(25,90,50,0.12);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 22px;
  }
}

.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 28px 26px 22px 26px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 32px rgba(25,90,50,0.09);
  min-width: 280px;
  flex: 1 1 260px;
  margin-bottom: 20px;
  transition: box-shadow 0.23s;
}
.testimonial-card p {
  color: #183617;
  font-size: 1rem;
  font-style: italic;
  text-align: center;
}
.testimonial-card span {
  color: #195A32;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(25,90,50,0.14);
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 12px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #F4F7EB;
  padding: 24px 20px 20px 20px;
  border-radius: 14px;
  min-width: 200px;
  flex: 1 1 200px;
  box-shadow: 0 2px 12px rgba(25,90,50,0.04);
  transition: box-shadow 0.26s, background 0.18s;
}
.feature-item img {
  height: 36px;
  width: auto;
}
.feature-item h3, .feature-item h2 {
  margin-bottom: 6px;
  font-size: 1.12rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: bold;
  color: #195A32;
}
.feature-item p {
  font-size: 1rem;
  color: #41543d;
}
.feature-item:hover {
  background: #eaf4df;
  box-shadow: 0 8px 32px rgba(105,162,63,0.07);
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}
.service-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 24px rgba(25,90,50,0.07);
  padding: 24px 20px 20px 20px;
  min-width: 210px;
  flex: 1 1 210px;
  gap: 14px;
  margin-bottom: 20px;
  transition: box-shadow 0.23s;
}
.service-item img {
  height: 38px;
  width: auto;
}
.service-item h2 {
  font-size: 1.12rem;
  margin-bottom: 6px;
  color: #195A32;
}
.service-item p {
  font-size: 1rem;
  color: #536949;
}
.service-item:hover {
  box-shadow: 0 8px 32px rgba(25,90,50,0.14);
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: #fff;
  padding: 22px 18px 14px 18px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(25,90,50,0.07);
  transition: box-shadow 0.2s;
}
.faq-item h2 {
  font-size: 1.11rem;
  margin-bottom: 8px;
  color: #195A32;
}
.faq-item p {
  color: #2e4032;
}
.faq-item:hover {
  box-shadow: 0 7px 32px rgba(25,90,50,0.13);
}
@media (max-width: 1100px) {
  .feature-grid, .testimonial-slider, .service-list {
    flex-direction: column;
    gap: 22px;
  }
}
@media (max-width: 700px) {
  .card-container, .feature-grid, .testimonial-slider, .service-list, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .card, .feature-item, .testimonial-card, .service-item { min-width: 0; }
}

/* =============================================================
  Buttons & CTA
============================================================= */
.cta, .cta.primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: bold;
  padding: 12px 32px;
  border-radius: 999px;
  font-size: 1.10rem;
  cursor: pointer;
  border: none;
  outline: none;
  text-align: center;
  background: #195A32;
  color: #fff;
  box-shadow: 0 6px 24px rgba(25,90,50,0.11);
  margin-top: 12px;
  margin-bottom: 8px;
  transition: background 0.21s, color 0.21s, box-shadow 0.20s, transform 0.12s;
}
.cta:hover,.cta:focus,.cta.primary:hover,.cta.primary:focus {
  background: #69A23F;
  color: #fff;
  box-shadow: 0 12px 36px rgba(105,162,63,0.13);
  transform: translateY(-2px) scale(1.03);
}

/* =============================================================
  Tables (Pricing, Comparison)
============================================================= */
.pricing-table, .comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 6px;
  margin-bottom: 28px;
  background: #fff;
  box-shadow: 0 2px 16px rgba(25,90,50,0.06);
  border-radius: 10px;
  overflow: hidden;
}
.pricing-table th, .comparison-table th {
  background: #eaf4df;
  color: #195A32;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.09rem;
  font-weight: 700;
  padding: 16px 10px;
  border-bottom: 2px solid #195A32;
}
.pricing-table td, .comparison-table td {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #384738;
  font-size: 1rem;
  padding: 12px 10px 13px 10px;
  background: #fff;
}
.pricing-table tr:not(:last-child) td, .comparison-table tr:not(:last-child) td {
  border-bottom: 1px solid #e2f2d4;
}
@media (max-width: 700px) {
  .pricing-table td, .pricing-table th, .comparison-table td, .comparison-table th {
    font-size: 0.98rem;
    padding: 8px 6px;
  }
}

/* =============================================================
  Cookie Consent Banner & Modal
============================================================= */
.cookie-banner {
  position: fixed;
  left: 0; bottom: 0;
  width: 100vw;
  background: #fff;
  color: #435e44;
  box-shadow: 0 -3px 16px rgba(25,90,50,0.11);
  z-index: 12000;
  padding: 22px 10px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 28px;
  font-size: 1rem;
  transition: transform 0.4s cubic-bezier(.77,0,.18,1), opacity 0.25s;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    font-size: 0.97rem;
    padding: 18px 7px;
  }
}
.cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
@media (max-width: 420px) {
  .cookie-banner .cookie-actions {
    flex-direction: column;
    gap: 8px;
  }
}
.cookie-banner button {
  padding: 8px 22px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, transform 0.06s;
}
.cookie-banner .accept {
  background: #195A32;
  color: #fff;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #69A23F;
  color: #fff;
  transform: scale(1.04);
}
.cookie-banner .reject {
  background: #fff;
  color: #195A32;
  border: 2px solid #195A32;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #eaf4df;
  color: #195A32;
  transform: scale(1.04);
}
.cookie-banner .settings {
  background: #F4F7EB;
  color: #195A32;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #eaf4df;
  color: #195A32;
  transform: scale(1.04);
}
/* Cookie Modal */
.cookie-modal-backdrop {
  position: fixed;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(25,90,50,0.15);
  z-index: 12100;
  display: none;
}
.cookie-modal-backdrop.open {
  display: block;
}
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, 100vh);
  min-width: 320px;
  max-width: 96vw;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 36px rgba(25,90,50,0.17);
  z-index: 12200;
  padding: 32px 24px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.45s cubic-bezier(0.7,0.1,0.2,1), opacity 0.4s;
  opacity: 0;
}
.cookie-modal.open {
  transform: translate(-50%, -50%);
  opacity: 1;
}
.cookie-modal h2 {
  font-size: 1.39rem;
  color: #195A32;
  margin-bottom: 8px;
}
.cookie-modal .category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.cookie-modal .category label {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.02rem;
  color: #213b21;
}
.cookie-modal .category input[type="checkbox"] {
  accent-color: #195A32;
  width: 22px; height: 22px;
}
.cookie-modal .essentials {
  font-style: italic;
  color: #676767;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 11px;
  margin-top: 10px;
  justify-content: flex-end;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #69A23F;
  cursor: pointer;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  color: #195A32;
}

/* =============================================================
  Misc UI/Utility
============================================================= */
.faq-snippet, .pricing-notes {
  background: #F4F7EB;
  padding: 16px 18px;
  border-radius: 8px;
  color: #37532f;
  margin-bottom: 16px;
}

ol {
  margin-bottom: 16px;
}
ol li {
  margin-bottom: 7px;
  font-size: 1.05rem;
}
ul li {
  font-size: 1.03rem;
}


/* ======================= Animations ======================= */
.cta, .cta.primary, .cookie-banner button {
  transition: background 0.22s, color 0.22s, box-shadow 0.19s, transform 0.14s;
}
.mobile-menu, .cookie-modal {
  will-change: transform, opacity;
}

/* ======================= Utility Classes ======================= */
.text-section {
  margin-bottom: 20px;
}
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-32 { margin-top: 32px !important; }
.mb-32 { margin-bottom: 32px !important; }
.ta-center { text-align: center; }


/* =============================================================
  Accessibility: Outlines
============================================================= */
a:focus, button:focus, .cta:focus {
  outline: 2px dashed #69A23F;
  outline-offset: 2px;
}

/* =============================================================
  Custom Fonts Import
============================================================= */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&family=Roboto:wght@400;500;700&display=swap');
