/* ======================== RESET & NORMALIZATION ======================== */
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,main,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;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  background: #F3F6F9;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #25312c;
  min-height: 100vh;
}
ul, ol {
  list-style: none;
}
a {
  color: #40784a;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #609964;
  text-decoration: underline;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button,
input,
textarea,
select {
  font-family: inherit;
  font-size: 100%;
}

/* ========================== COLOR & TYPOGRAPHY ========================= */
:root {
  /* Earth tones & green accents for nature_organic */
  --color-primary: #1A2A37;   /* Deep soil/navy */
  --color-secondary: #7A6234; /* Warm earth/taupe */
  --color-accent: #40784a;    /* Muted green accent */
  --color-light: #F3F6F9;     /* Brand light background */
  --color-bg-card: #fffaf3;   /* Subtle parchment */
  --color-bg-section: #f3f6f9;
  --color-grey: #8BA2B2;      /* Neutral secondary */
  --color-text: #25312c;      /* Soil dark text */
  --color-text-light: #607067;/* Muted for less contrast */
  --color-shadow: rgba(64, 120, 74, 0.10);
  --color-border: #d1c8bc;
  --color-success: #38a169;
  --color-error: #c53030;
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Open Sans', Arial, Helvetica, sans-serif;
  --radius-card: 24px;
  --radius-button: 22px;
}
body {
  font-family: var(--font-body);
  background: var(--color-bg-section);
  color: var(--color-text);
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--color-primary);
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; line-height: 1.15; margin-bottom: 24px; }
h2 { font-size: 2rem; line-height: 1.2; margin-bottom: 20px; }
h3 { font-size: 1.4rem; line-height: 1.25; margin-bottom: 12px; }
h4, h5, h6 { font-size: 1.1rem; }
p, ul, ol {
  font-size: 1rem;
  color: var(--color-text);
  line-height: 1.6;
  margin-bottom: 16px;
}
strong, b { color: var(--color-primary); font-weight: 700; }

/* ========================== LAYOUT STRUCTURE ========================== */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-bg-section);
  border-radius: var(--radius-card);
}

/* ===================== FLEXBOX-FORCED SPACING PATTERNS ================ */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: var(--radius-card);
  background: var(--color-bg-card);
  box-shadow: 0 4px 18px var(--color-shadow);
  padding: 36px 24px;
  transition: box-shadow 0.3s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 8px 28px rgba(64, 120, 74, 0.22);
  transform: translateY(-4px) scale(1.02);
}
.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;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  /* Padding below for min height testimonial spacing */
  padding: 20px;
  border-radius: 18px;
  background: #fafbf6;
  box-shadow: 0 2px 8px rgba(94, 113, 51, 0.08);
  margin-bottom: 24px;
  border: 1px solid var(--color-border);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--color-bg-card);
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(64, 120, 74, 0.10);
  padding: 28px 20px;
  transition: box-shadow 0.22s, transform 0.19s;
  margin-bottom: 20px;
}
.feature-item:hover {
  box-shadow: 0 6px 22px rgba(64, 120, 74, 0.20);
  transform: translateY(-2px) scale(1.015);
}

/************* ARTICLE, TEASERS, ACCORDIONS *************/
.article-teasers,
.article-list,
.article-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.article-teasers,
.article-list { flex-direction: column; }
.article-preview, .teaser {
  background: var(--color-bg-card);
  border-radius: 16px;
  box-shadow: 0 1px 6px var(--color-shadow);
  padding: 24px 20px 20px 20px;
  margin-bottom: 20px;
  flex: 1 1 0px;
}
.article-preview a,
.teaser a {
  color: var(--color-accent);
  font-weight: bold;
  text-decoration: underline;
  transition: color 0.2s;
}
.article-preview a:hover,
.teaser a:hover {
  color: #2b5b2e;
}

/************* FAQ ACCORDION Styles *************/
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: #f5f7f4;
  border-radius: 14px;
  box-shadow: 0 1px 5px rgba(94, 113, 51, 0.07);
  padding: 20px 18px;
  margin-bottom: 10px;
  transition: box-shadow 0.19s;
}
.faq-item h3 {
  font-size: 1.07rem;
  margin-bottom: 10px;
}

/************* BREADCRUMB *************/
.breadcrumb {
  margin-top: 0;
  font-size: 0.98rem;
  color: var(--color-grey);
}
.breadcrumb a { color: var(--color-accent); text-decoration: underline; }

/************* INFOGRAPHICS / STATS / PANELS *************/
.stats-section, .data-visuals, .infographics-list {
  margin-bottom: 60px;
}
.data-visuals,
.infographics-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.infographic-panel {
  background: var(--color-bg-card);
  border-radius: 22px;
  padding: 22px 22px;
  font-family: var(--font-display);
  font-weight: 500;
  box-shadow: 0 1px 7px var(--color-shadow);
  margin-bottom: 12px;
  color: #35633b;
  font-size: 1.1rem;
}
.infographics {
  font-size: 1.08rem;
  color: var(--color-accent);
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}
.facts-section ul li {
  padding-bottom: 10px;
}

/******************* HEADER & NAVIGATION ******************/
header {
  background: #f9fdf6;
  box-shadow: 0 2px 18px rgba(77, 102, 42, 0.03);
  position: relative;
  z-index: 20;
  width: 100%;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 16px;
  padding-bottom: 16px;
  flex-wrap: wrap;
}
.logo img {
  width: 52px;
  height: auto;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
.main-nav a {
  font-family: var(--font-display);
  color: var(--color-primary);
  font-size: 1.08rem;
  letter-spacing: 0.02em;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 14px;
  transition: background 0.18s, color 0.13s;
}
.main-nav a:hover,
.main-nav a.active {
  background: var(--color-accent);
  color: #fff;
}
.cta-btn {
  font-family: var(--font-display);
  background: var(--color-accent);
  color: #fff;
  border-radius: var(--radius-button);
  padding: 13px 32px;
  font-size: 1.07rem;
  font-weight: 600;
  border: none;
  outline: none;
  box-shadow: 0 2px 16px var(--color-shadow);
  cursor: pointer;
  margin-left: 16px;
  transition: background 0.17s, transform 0.17s, box-shadow 0.21s;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: #2e6040;
  color: #fff;
  transform: scale(1.04);
  box-shadow: 0 4px 30px rgba(64,120,74,0.17);
  text-decoration: none;
}

/********************* HERO SECTION *********************/
.hero-section {
  background: linear-gradient(92deg, #edefea 70%, #fafbf6 100%);
  border-radius: 0 0 60px 60px;
  min-height: 280px;
  padding: 56px 0 36px 0;
}
.hero-section .content-wrapper {
  align-items: center;
  justify-content: center;
  gap: 24px;
  text-align: center;
}
.hero-section h1 {
  color: #365732;
  margin-bottom: 18px;
}
.hero-section p {
  color: #485940;
  margin-bottom: 14px;
}
.hero-section .cta-btn {
  margin: 0 auto;
  display: inline-block;
}

/******************* FEATURES/OVERVIEW **********************/
.features-overview, .features-section, .feature-section {
  padding-top: 32px;
  padding-bottom: 32px;
  background: var(--color-bg-section);
  border-radius: var(--radius-card);
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-item img {
  width: 46px;
  height: 46px;
  border-radius: 11px;
  background: #f0f9f2;
  box-shadow: 0 1px 7px var(--color-shadow);
  margin-bottom: 10px;
}

/******************* TESTIMONIALS SECTION ********************/
.testimonials-section {
  margin-bottom: 60px;
  padding: 40px 20px 0 20px;
}
.testimonial-card {
  flex-direction: row;
  background: #fafbf6;
  color: #31422f;
  font-size: 1.04rem;
  margin-bottom: 20px;
  min-height: 70px;
}
.testimonial-meta {
  font-size: 0.93rem;
  color: #718465;
  margin-left: 10px;
  font-style: italic;
}

/********************* NEWSLETTER SECTION *******************/
.newsletter-section {
  background: #f0f9f2;
  border-radius: var(--radius-card);
  padding: 38px 20px 34px 20px;
  text-align: center;
  margin-bottom: 50px;
}
.newsletter-section h2 {
  color: #2d4530;
}
.privacy-note {
  font-size: 0.97rem;
  color: #839774;
  margin-top: 8px;
}
.privacy-note a { color: #477b4d; text-decoration: underline; }

/********************* CTA SECTION/ THANK YOU *******************/
.cta-section, .thank-you-section {
  background: #f5f8f0;
  border-radius: calc(var(--radius-card) + 5px);
  padding: 42px 20px;
  text-align: center;
  margin-bottom: 60px;
}
.cta-section h2, .thank-you-section h1 { color: #345c2d; }

/******************** ABOUT PAGE STEPS/STATS ********************/
.text-section ul {
  margin-bottom: 16px;
}
.text-section ul li {
  padding-left: 0.6em;
  padding-bottom: 7px;
  display: flex;
  align-items: flex-start;
  color: #46643e;
}
.text-section ul li img {
  width: 22px; height: 22px; margin-right: 6px;
  display: inline-block; vertical-align: middle;
}
.stats-section .facts-section ul {
  margin-bottom: 0;
}
.stats-section .facts-section ul li {
  color: #46643e;
}

/************************* LEGAL/INFORMATIONAL SECTIONS *********************/
.legal-section {
  margin-top: 38px;
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fffef8;
  border-radius: var(--radius-card);
  box-shadow: 0 3px 18px var(--color-shadow);
}
.legal-section h1 {
  color: #1a3d26;
  margin-bottom: 22px;
}
.legal-section a { color: var(--color-accent); text-decoration: underline; }

/**************************** FOOTER ******************************/
footer {
  background: #f3f6f9;
  border-top: 1.5px solid #e5e2d7;
  padding-top: 25px;
  padding-bottom: 18px;
  margin-top: 70px;
  position: relative;
  z-index: 10;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.footer-nav {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
}
.footer-nav a {
  color: var(--color-accent);
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.99rem;
  transition: background 0.14s, color 0.14s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  background: #e3f5df;
  color: #305726;
}
.footer-contact {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  font-size: 1rem;
  color: #46643e;
}
.footer-contact img { width: 19px; height: 19px; }
.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}
.footer-social img { width: 26px; height: 26px; opacity: 0.8; transition: opacity 0.2s; }
.footer-social img:hover { opacity: 1; }
.footer-copy {
  text-align: center;
  font-size: 0.95rem;
  color: #839774;
  margin-top: 6px;
}

/*********************** COOKIE CONSENT BANNER ********************/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #f3f6f9;
  color: #25401d;
  z-index: 9999;
  padding: 24px 19px 20px 19px;
  box-shadow: 0 -2px 22px rgba(94, 113, 51, 0.08);
  border-top: 2px solid #e5e2d7;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 1rem;
  transition: transform 0.35s ease;
}
.cookie-banner.hidden {
  transform: translateY(110%);
  pointer-events: none;
  opacity: 0.2;
}
.cookie-banner .cookie-text {
  flex: 2 1 320px;
  margin-right: 20px;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.cookie-btn {
  background: var(--color-accent);
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.16s, transform 0.13s;
  font-size: 1rem;
}
.cookie-btn:hover { background: #2b5333; }
.cookie-btn.secondary {
  background: #f8eee1;
  color: #40784a;
  border: 1.2px solid #c9cbb5;
}
.cookie-btn.secondary:hover { background: #edefea; }

/* Cookie settings/modal overlay */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  z-index: 10100;
  background: rgba(58, 76, 44, 0.25);
  align-items: center;
  justify-content: center;
  animation: fadeInOverlay 0.29s;
}
.cookie-modal-overlay.active { display: flex; }
@keyframes fadeInOverlay { from { opacity: 0; } to { opacity: 1; } }
.cookie-modal {
  background: #f3f6f9;
  border-radius: 24px;
  padding: 36px 26px 30px 26px;
  box-shadow: 0 6px 40px rgba(64, 120, 74, 0.22);
  min-width: 320px;
  max-width: 98vw;
  color: #2b3e2d;
  animation: modalPopIn 0.25s cubic-bezier(.4,1.3,.27,.99);
}
@keyframes modalPopIn { from { transform: scale(0.90); opacity: 0.1; } to { transform: scale(1); opacity: 1; } }
.cookie-modal h2 {
  font-size: 1.3rem;
  margin-bottom: 14px;
  color: #375d2c;
}
.cookie-modal .cookie-categories {
  margin-top: 18px;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-modal .cookie-category {
  background: #f8eee1;
  padding: 15px 14px;
  border-radius: 13px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-modal input[type='checkbox'],
.cookie-modal input[type='radio'] {
  accent-color: var(--color-accent);
}
.cookie-modal .cookie-category.essential label {
  font-weight: 600;
  color: #38602b;
}
.cookie-modal .modal-actions {
  margin-top: 19px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cookie-modal .close-modal {
  background: none;
  border: none;
  color: #2d4530;
  font-size: 1.65em;
  position: absolute;
  top: 15px; right: 19px;
  cursor: pointer;
}

/********************* MOBILE NAV & BURGER MENU ********************/
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 16px;
  top: 24px;
  background: var(--color-accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  width: 44px;
  height: 44px;
  font-size: 2em;
  align-items: center;
  justify-content: center;
  z-index: 111;
  transition: background 0.12s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #31542b;
  outline: 2px solid #305726;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #ecf6e7;
  z-index: 10010;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.46,.03,.52,.96);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: -6px 0 32px rgba(77,102,42,0.11);
}
.mobile-menu-close {
  position: absolute;
  top: 19px;
  right: 26px;
  background: none;
  border: none;
  color: #385b2c;
  font-size: 2.3em;
  cursor: pointer;
  z-index: 10012;
}
.mobile-nav {
  margin-top: 75px;
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 18px;
  align-items: flex-start;
  padding-left: 36px;
  padding-right: 20px;
  max-width: 98vw;
}
.mobile-nav a {
  color: #32542b;
  font-size: 1.4rem;
  font-weight: 600;
  padding: 10px 0;
  border-radius: 10px;
  width: 100%;
  transition: background 0.14s, color 0.14s;
}
.mobile-nav a:focus,
.mobile-nav a:hover {
  background: #e3f5df;
  color: #25401c;
  outline: none;
}

/********************* RESPONSIVE DESIGN **********************/
@media (max-width: 1150px) {
  .container { max-width: 98vw; }
  .main-nav { gap: 12px; }
  .footer-nav { gap: 10px; }
}
@media (max-width: 980px) {
  html { font-size: 96%; }
  .main-nav { gap: 10px; }
  .container { padding-left: 6px; padding-right: 6px; }
}
@media (max-width: 900px) {
  .content-wrapper, .container { padding-left: 0; padding-right: 0; }
}
@media (max-width: 800px) {
  .feature-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  html { font-size: 92%; }
  .section, .hero-section, .newsletter-section, .about-section, .cta-section {
    padding-left: 8px; padding-right: 8px;
  }
  header .container { flex-direction: row; gap: 9px; }
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .cta-btn {
    margin-left: 0;
    padding: 12px 18px;
    font-size: 1rem;
  }
  .content-grid, .card-container, .feature-grid {
    flex-direction: column;
    gap: 16px !important;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .testimonials-section {
    padding: 28px 8px 0 8px;
  }
  .feature-item, .card {
    padding: 22px 12px;
  }
  .article-teasers, .article-list {
    gap: 13px;
  }
}
@media (max-width: 600px) {
  .container { padding-left: 0; padding-right: 0; }
  .section, .hero-section, .about-section, .cta-section, .newsletter-section {
    padding-left: 4px; padding-right: 4px;
  }
}
@media (max-width: 480px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.15rem; }
  .hero-section { padding: 25px 0 14px 0; }
  .feature-item, .card {
    padding: 14px 5px;
  }
  .infographic-panel { font-size: 0.97rem; }
}

/********************* ANIMATIONS & MICRO-INTERACTIONS **********************/
.card, .feature-item, .teaser, .article-preview, .faq-item, .testimonial-card {
  transition: box-shadow 0.2s, transform 0.16s;
}
.card:hover, .feature-item:hover, .teaser:hover, .article-preview:hover {
  box-shadow: 0 5px 24px rgba(47, 76, 50, 0.11);
  transform: translateY(-2px) scale(1.013);
}
a.cta-btn, .cta-btn, .cookie-btn {
  transition: background 0.17s, color 0.12s, transform 0.1s, box-shadow 0.18s;
}
.cta-btn:active { transform: scale(0.97); }

/********************* MISC: DARK MODE IDEA (NOT ACTIVATED) ******************/
/*
@media (prefers-color-scheme: dark) {
  body { background: #222c24; color: #d3f2c8; }
  .section, .card, .feature-item, .article-preview, .teaser, .faq-item, .testimonial-card { background: #212b20; color: #e3ede6; }
  header, footer, .cookie-banner { background: #202c21; color: #f0fff0; }
}
*/
