/* =======================
   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;
}

html {
  font-size: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  line-height: 1.6;
  background: #F7F6F2;
  color: #28341A;
  font-family: 'Open Sans', Arial, sans-serif;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #225A39;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #19486A;
}

ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

button {
  cursor: pointer;
  font-family: inherit;
  background: none;
  border: none;
  outline: none;
}

/* =================================
   BRAND FONTS (Google Fonts import)
=================================== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  color: #19486A;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.3rem; margin-bottom: 18px; }
h2 { font-size: 1.6rem; margin-bottom: 16px; }
h3 { font-size: 1.2rem; margin-bottom: 12px; }

strong, b {
  font-weight: 700;
}
p {
  margin-bottom: 1.2em;
  font-size: 1rem;
}


/* ==========================
   GLOBAL CONTAINER & LAYOUT
============================*/
.container {
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 18px;
  padding-right: 18px;
  display: flex;
  flex-direction: column;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 6px 30px rgba(34,90,57,0.06), 0 1.5px 3px rgba(90,101,83,0.07);
}

@media (max-width: 768px) {
  .section {
    padding: 28px 8px;
    margin-bottom: 38px;
    border-radius: 19px;
  }
  .container { padding-left: 7px; padding-right: 7px; }
}

/* ==========================
   ORGANIC DESIGN ELEMENTS
===========================*/
body {
  background: #F7F6F2;
}
.section {
  background: #F7F6F2;
  /* Organic wavy edges using SVG can be added for extra effect if desired */
}

/* Organic card look */
.card {
  background: #fff;
  border-radius: 19px 38px 31px 25px/27px 19px 33px 20px;
  box-shadow: 0 2px 12px 0 rgba(87, 103, 71, 0.09);
  padding: 28px 22px;
  margin-bottom: 20px;
  transition: box-shadow 0.3s, transform 0.3s;
}
.card:hover {
  box-shadow: 0 8px 32px 0 rgba(34,90,57,0.12);
  transform: translateY(-5px);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 22px;
}

.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;
    gap: 18px;
  }
  .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .card-container { flex-direction: column; gap: 17px; }
}

/* ===========
   HEADER
=============*/
header {
  background: #EAF5EA;
  box-shadow: 0 1px 10px 0 rgba(87, 103, 71, 0.025);
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
header nav a {
  color: #19486A;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.01em;
  padding: 8px 13px;
  border-radius: 12px;
  transition: background 0.18s, color 0.18s;
}
header nav a.cta,
main a.cta,
.cta {
  background: #55A350;
  color: #fff !important;
  padding: 10px 22px !important;
  border-radius: 23px 19px 17px 21px/22px 17px 27px 19px;
  box-shadow: 0 2px 18px rgba(52,101,67,0.17);
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-left: 12px;
  display: inline-block;
  transition: background 0.22s, color 0.18s, box-shadow 0.22s, transform 0.13s;
}
header nav a.cta:hover,
main a.cta:hover,
.cta:hover {
  background: #225A39;
  color: #fff;
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 38px rgba(52,101,67,0.21);
}
header nav a:hover,
header nav a:focus {
  background: #C2E7CB;
  color: #225A39;
}

/* Logo */
header img {
  height: 43px;
  width: auto;
}

/* =============
 MOBILE NAV
==============*/
.mobile-menu-toggle {
  display: none;
  background: #225A39;
  color: #fff;
  font-size: 2.1rem;
  border-radius: 50%;
  padding: 7px 15px;
  z-index: 1020;
  margin-left: 14px;
  transition: background 0.2s, color 0.1s, transform 0.18s;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: #72BB63;
}

@media (max-width: 1020px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: #F0F8F2;
  box-shadow: 0 6px 38px 2px rgba(34,90,57,0.14);
  z-index: 2001;
  padding: 44px 28px 22px 28px;
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(0.61,0,0.37,1);
  min-width: 70vw;
  min-height: 100vh;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: #FFF;
  color: #225A39;
  font-size: 2rem;
  border-radius: 50%;
  padding: 5px 12px 4px 12px;
  margin-bottom: 10px;
  box-shadow: 0 3px 12px rgba(38,72,50,0.08);
  transition: background 0.18s, color 0.15s;
  z-index: 2010;
}
.mobile-menu-close:hover {
  background: #D4ECD2;
  color: #19486A;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
}
.mobile-nav a {
  color: #225A39;
  font-weight: 600;
  font-size: 1.14rem;
  background: none;
  padding: 10px 6px;
  border-radius: 10px;
  transition: background 0.18s, color 0.12s;
}
.mobile-nav a:active,
.mobile-nav a:focus,
.mobile-nav a:hover {
  background: #D4ECD2;
  color: #19486A;
}
@media (min-width: 1021px) {
  .mobile-menu, .mobile-menu-toggle { 
    display: none !important; 
  }
}

/* ===============================================
   MAIN SECTIONS, CONTENT TYPOGRAPHY & SPACING
================================================*/
main {
  margin-top: 0;
  padding-bottom: 38px;
}
section {
  margin-bottom: 60px;
}

.text-section {
  padding: 18px 0;
}

ul, ol {
  margin-bottom: 14px;
}
ul li,
ol li {
  position: relative;
  padding-left: 0px;
  font-size: 1.01rem;
  margin-bottom: 9px;
  color: #225A39;
  line-height: 1.7;
}
ul li img {
  display: inline-block;
  width: 21px;
  height: 21px;
  vertical-align: middle;
  margin-right: 7px;
  border-radius: 8px;
  background: #D4ECD2;
  box-shadow: 0 2px 4px rgba(87, 103, 71, 0.04);
}

@media (max-width: 768px) {
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.15rem; }
  h3 { font-size: 1rem; }
  .content-wrapper { gap: 13px; }
}

/* Cards for Blog, Courses, etc */
.card-grid, .card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
}
.card {
  min-width: 230px;
  flex: 1 0 275px;
  max-width: 100%;
}
@media (max-width: 800px) {
  .card-grid, .card-container {
    flex-direction: column;
    gap: 17px;
  }
  .card { min-width: unset; }
}

/* Features section */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 15px 28px 17px 20px/17px 18px 28px 16px;
  padding: 14px 19px;
  box-shadow: 0 2px 7px 0 rgba(43, 63, 52, 0.04);
}

/* ===============================
   TABLES
==================================*/
table {
  border-collapse: collapse;
  border-radius: 15px 30px 20px 25px/22px 19px 23px 15px;
  box-shadow: 0 2px 13px rgba(51, 69, 51, 0.10);
  background: #fff;
  margin-bottom: 20px;
  font-size: 1rem;
  width: 100%;
  overflow: hidden;
}
thead {
  background: #EAEFF2;
}
th, td {
  padding: 13px 19px;
  text-align: left;
  border-bottom: 1px solid #EAEFF2;
  font-family: 'Open Sans', Arial, sans-serif;
}
th {
  color: #19486A;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 1.05rem;
}
tr:last-child td { border-bottom: none; }
@media (max-width: 650px) {
  table, thead, tbody, tr, th, td { display: block; width: 100%; }
  th, td { padding-left: 8px; padding-right: 8px; }
}

/* ===============================
   TESTIMONIALS
==================================*/
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F7FAF7;
  border-radius: 22px 20px 21px 30px/20px 17px 28px 18px;
  box-shadow: 0 2px 12px 0 rgba(31, 64, 42, 0.10);
  margin-bottom: 20px;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #23381D;
  transition: box-shadow 0.22s, transform 0.18s;
}
.testimonial-card p {
  flex: 1;
  font-style: italic;
  color: #225A39;
  margin-bottom: 5px;
  font-size: 17px;
  line-height: 1.7;
}
.testimonial-card span {
  min-width: 130px;
  color: #19486A;
  font-weight: 600;
  font-size: 1rem;
}
.testimonial-card.highlighted {
  background: #DEF3E7;
  border-left: 7px solid #55A350;
}
.testimonial-card:hover {
  box-shadow: 0 7px 28px rgba(52,101,67,0.08);
  transform: translateY(-3px) scale(1.01);
}
@media (max-width: 650px) {
  .testimonial-card, .testimonial-card.highlighted {
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
  }
  .testimonial-card span { min-width: unset; }
}

/* ================================
   FOOTER
===================================*/
footer {
  background: #EAF5EA;
  margin-top: 39px;
  border-radius: 32px 32px 0 0;
  box-shadow: 0 -2px 22px rgba(52,101,67,0.05);
  padding-top: 33px;
  padding-bottom: 36px;
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  gap: 38px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-main nav {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-main nav a {
  color: #225A39;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  transition: color 0.16s;
}
.footer-main nav a:hover {
  color: #19486A;
  text-decoration: underline;
}
footer img {
  height: 38px;
  margin-bottom: 13px;
}
.contact-info {
  font-size: 1rem;
  color: #225A39;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-info a {
  color: #225A39;
  text-decoration: underline;
}
.contact-info img {
  width: 18px; height: 18px; margin-right: 7px; vertical-align: middle; border-radius: 5px; background: #D4ECD2;
}
@media (max-width: 850px) {
  .footer-main { flex-direction: column; gap: 20px; align-items: flex-start; }
  footer { padding-top: 22px; padding-bottom: 27px; }
  footer img { height: 32px; }
}

/* ========================
   COOKIE CONSENT BANNER  
==========================*/
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2120;
  background: #23381D;
  color: #fff;
  padding: 20px 18px 20px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 -4px 16px rgba(36,59,21,0.15);
  transition: transform 0.34s cubic-bezier(0.6,0,0.37,1), opacity 0.12s;
  border-radius: 18px 18px 0 0;
}
.cookie-banner.hide {
  transform: translateY(100%);
  opacity: 0;
}
.cookie-banner .cookie-text {
  font-size: 1.04rem;
  margin-bottom: 16px;
  text-align: center;
  letter-spacing: 0.03em;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-bottom: 2px;
}
.cookie-banner button {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 17px 16px 14px 20px/15px 20px 18px 16px;
  padding: 9px 20px;
  background: #EAF5EA;
  color: #225A39;
  margin: 0 1px;
  transition: background 0.18s, color 0.14s, box-shadow 0.14s;
  box-shadow: 0 2px 8px rgba(47,78,35,0.04);
}
.cookie-banner button.accept {
  background: #55A350;
  color: #fff;
}
.cookie-banner button.reject {
  background: #D76652;
  color: #fff;
}
.cookie-banner button:hover {
  background: #225A39;
  color: #fff;
  box-shadow: 0 4px 12px rgba(36,59,21,0.12);
}
.cookie-banner button.settings {
  background: #f7f6f2;
  color: #225A39;
  border: 1px solid #BCE2B5;
}

/* Cookie modal popup */
.cookie-modal-overlay {
  position: fixed;
  z-index: 3000;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(35,54,29,0.36);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}
.cookie-modal {
  background: #fff;
  color: #19486A;
  padding: 36px 26px 18px 26px;
  border-radius: 28px 23px 19px 27px/28px 22px 25px 16px;
  box-shadow: 0 16px 44px rgba(36,59,21,0.15);
  min-width: 320px;
  min-height: 210px;
  max-width: 94vw;
  max-height: 90vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 12px;
  right: 15px;
  background: #EAF5EA;
  color: #225A39;
  font-size: 1.55rem;
  border-radius: 50%;
  padding: 3px 9px;
  box-shadow: 0 1.5px 7px rgba(31,61,21,0.06);
  transition: background 0.18s, color 0.15s;
  z-index: 4000;
}
.cookie-modal .modal-close:hover {
  background: #D4ECD2;
  color: #D76652;
}
.cookie-modal h3 {
  font-size: 1.19rem;
  margin-bottom: 7px;
  margin-top: 0;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 13px;
  background: #F7F6F2;
  border-radius: 14px;
  padding: 11px 13px;
  font-size: 1rem;
}
.cookie-category .toggle {
  display: flex;
  align-items: center;
  margin-left: auto;
}
/* Custom toggle switch */
.switch {
  position: relative; display: inline-block; width: 44px; height: 24px;
}
.switch input { opacity: 0; width: 0; height: 0; }
.slider {
  position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0;
  background: #C2E7CB; border-radius: 20px; transition: background 0.2s;
}
.switch input:checked + .slider { background: #55A350; }
.slider:before {
  position: absolute; content: ""; height: 18px; width: 18px; left: 4px; top: 3px;
  background: #fff; border-radius: 50%; transition: 0.18s;
}
.switch input:checked + .slider:before { transform: translateX(20px); }
.cookie-category.disabled {
  opacity: 0.45;
}
/* Modal actions */
.cookie-modal .modal-actions {
  margin-top: 18px;
  display: flex;
  flex-direction: row;
  gap: 11px;
  align-items: center;
}
.cookie-modal button {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 13px 18px 15px 11px/18px 9px 19px 17px;
  padding: 9px 19px;
  background: #EAF5EA;
  color: #225A39;
  margin: 0 1px;
  transition: background 0.15s, color 0.11s, box-shadow 0.13s;
}
.cookie-modal button.accept {
  background: #55A350;
  color: #fff;
}
.cookie-modal button.reject {
  background: #D76652;
  color: #fff;
}
.cookie-modal button:focus,
.cookie-modal button:hover {
  background: #225A39;
  color: #fff;
}

@media (max-width: 600px) {
  .cookie-modal {
    padding: 18px 7px 8px 7px;
    min-width: 78vw;
  }
}

/* ==============================
   MICRO-INTERACTIONS AND EFFECTS
===============================*/
button, a, .cta, .card, .testimonial-card, .mobile-menu, .mobile-menu-toggle, .cookie-banner, .cookie-modal {
  transition: box-shadow 0.22s, background 0.21s, color 0.18s, transform 0.21s;
}

/* ===========
   MISC & UTILS
=============*/
::-webkit-scrollbar {
  width: 8px; height: 7px;
}
::-webkit-scrollbar-thumb {
  background: #C2E7CB;
  border-radius: 13px;
}
::-webkit-scrollbar-track {
  background: #F7F6F2;
}

/* ============================
   ACCESSIBILITY
==============================*/
:focus {
  outline: 2px solid #72BB63;
  outline-offset: 2px;
}

/* ===============================
   NATURE ORGANIC FLAVOR
==================================*/
/* Earthy color accents, subtle textures, and rounded edges have been infused throughout the design via background, box-shadow, and border-radius patterns.  */

/* Extra: Slight paper-fiber look for major backgrounds, but only via subtle box-shadow, not background-image for max compatibility. */

/* ============================
   PRINT STYLES
==============================*/
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal, .modal-overlay { display: none !important; }
  * { background: #fff !important; color: #000 !important; box-shadow: none !important; }
}
