/* CSS 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, main, section, article, aside, header, nav, footer, figure, figcaption, details, summary, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #f5f3ee;
}
body {
  line-height: 1.6;
  font-family: 'Open Sans', Arial, sans-serif;
  background: #f5f3ee;
  color: #37352F;
  min-height: 100vh;
  letter-spacing: 0.03em;
  transition: background .2s;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #397552;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #22223B;
}
ul, ol {
  list-style: none;
}
table {
  border-collapse: collapse;
  width: 100%;
  margin: 24px 0;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px 0 rgba(55,90,70,0.05);
  overflow: hidden;
}
th, td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid #e0dfd5;
}
th {
  background: #f0eee9;
  color: #397552;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.02em;
}
tr:last-child td {
  border-bottom: none;
}

/* BRAND COLORS (nature_organic twist) */
:root {
  --primary: #22223B;
  --accent: #A3B18A;
  --accent2: #397552;
  --secondary: #6029A7;
  --yellow-accent: #FFC857;
  --bg-light: #f5f3ee;
  --bg-paper: #f0eee9;
  --bg-card: #fff;
  --error: #B8483A;
  --shadow: 0 4px 24px 0 rgba(60,68,56,0.08);
}

/* TYPOGRAPHY (nature_organic + brand) */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.02em;
}
h1 { font-size: 2.75rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.25rem; margin-bottom: 12px; color: var(--accent2); }
h4, h5, h6 { font-size: 1rem; margin-bottom: 10px; }
p, li, th, td { font-size: 1rem; }
p { margin-bottom: 1.1em; }
.tagline, .section .tagline { font-size: 1.25rem; font-family: 'Montserrat', Arial, sans-serif; color: var(--accent2); margin-bottom: 16px; }

/* GENERAL LAYOUT */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--bg-paper);
  border-radius: 32px;
  box-shadow: var(--shadow);
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .section {
    padding: 24px 10px;
    margin-bottom: 40px;
    border-radius: 18px;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.25rem; }
}

/* FLEXBOX PATTERNS */
.card-container, .content-grid, .features, .card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.card {
  margin-bottom: 20px;
  border-radius: 20px;
  background: var(--bg-card);
  box-shadow: var(--shadow);
  position: relative;
  padding: 26px 20px;
  min-width: 240px;
  flex: 1 1 240px;
  transition: box-shadow .2s, transform .2s;
}
.card:hover {
  box-shadow: 0 8px 32px 0 rgba(55, 117, 82, 0.15);
  transform: translateY(-2px) scale(1.03);
}

.content-grid {
  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: 16px;
  }
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #f6faf7;
  border-left: 6px solid var(--accent2);
  border-radius: 16px;
  margin-bottom: 24px;
  box-shadow: 0 2px 12px 0 rgba(73, 112, 85, 0.05);
}
.testimonial-card span {
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: var(--accent2);
}
.testimonial-card p {
  font-size: 1.05rem;
  font-style: italic;
  color: #384735;
}
.testimonial-card div {
  color: #D6A12D;
  font-size: 1.5rem;
  letter-spacing: 0.1125em;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* HEADER & NAVIGATION */
header {
  background: var(--bg-card);
  border-bottom: 2px solid #e3e7de;
  box-shadow: 0 2px 12px 0 rgba(95,124,85,0.04);
  position: sticky;
  top: 0;
  z-index: 100;
}
header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  padding: 12px 0;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--primary);
  margin-right: 10px;
  border-radius: 7px;
  padding: 6px 14px;
  transition: background 0.17s, color 0.17s;
}
header nav a.cta-primary {
  background: var(--accent2);
  color: #fff;
  letter-spacing: 0.04em;
  padding: 8px 28px;
  border-radius: 18px;
  margin-left: 8px;
  font-weight: 800;
  box-shadow: 0 2px 8px 0 rgba(55,117,82,0.10);
  transition: box-shadow .2s, background .25s;
}
header nav a.cta-primary:hover,
header nav a.cta-primary:focus {
  background: #22223b;
  color: #FFC857;
  box-shadow: 0 6px 16px 0 rgba(34,34,59,0.12);
}
header nav a:hover, header nav a:focus {
  background: #EBF1EC;
  color: var(--accent2);
}
header img {
  height: 44px;
  margin-right: 22px;
  vertical-align: middle;
}

.mobile-menu-toggle {
  display: none;
  margin-left: auto;
  font-size: 2rem;
  background: none;
  border: none;
  color: var(--accent2);
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--accent2);
}

/* MOBILE NAVIGATION */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(61, 78, 66, 0.85);
  z-index: 9999;
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(.7,0,.2,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  background: #fff;
  color: var(--accent2);
  border: none;
  font-size: 2rem;
  margin: 26px 16px 12px 14px;
  border-radius: 50%;
  width: 44px; height: 44px;
  align-self: flex-end;
  box-shadow: 0 2px 6px 0 rgba(55,117,82,0.07);
  cursor: pointer;
  transition: background 0.22s, color 0.17s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #EBF1EC;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  padding: 28px 33px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.025em;
  background: rgba(162,177,138,0.22);
  padding: 10px 18px;
  border-radius: 14px;
  transition: background 0.19s;
  margin-bottom: 2px;
}
.mobile-nav a:active, .mobile-nav a:focus, .mobile-nav a:hover {
  background: #A3B18A;
  color: var(--primary);
}

@media (max-width: 992px) {
  header nav {
    gap: 10px;
  }
}
@media (max-width: 840px) {
  header nav a {
    font-size: 0.97rem;
    padding: 6px 9px;
  }
  header img {
    height: 34px;
  }
}
@media (max-width: 768px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* FOOTER */
footer {
  padding: 36px 0 22px 0;
  background: #ede8de;
  color: #414838;
  font-size: 1rem;
  border-top: 2px solid #e0dec9;
  margin-top: 40px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 14px;
}
footer nav a {
  color: var(--accent2);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 4px 7px;
  border-radius: 5px;
  transition: background 0.11s;
  font-size: 0.93rem;
}
footer nav a:hover, footer nav a:focus {
  background: #e3e8df;
  color: var(--secondary);
}
footer span {
  display: block;
  margin-top: 11px;
  color: #bbb;
  font-size: 0.92rem;
}

@media (max-width: 600px) {
  footer nav {
    gap: 15px;
  }
  footer p {
    font-size: 0.96rem;
  }
}

/* BUTTONS & LINKS */
.cta-primary {
  display: inline-block;
  background: var(--accent2);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: 30px;
  font-size: 1.18rem;
  padding: 15px 36px;
  margin: 16px 0 0 0;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.12s;
  box-shadow: 0 4px 16px 0 rgba(33,62,44,0.10);
  border: none;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
}
.cta-primary:hover, .cta-primary:focus {
  background: #486d3a;
  color: #FFC857;
  outline: none;
  box-shadow: 0 8px 18px 0 rgba(67,86,64,0.18);
  transform: translateY(-2px) scale(1.02);
}

/* ORGANIC/NATURE STYLES */
.section {
  background: linear-gradient(120deg,#f5f3ee 50%,#e2e8d8 100%);
  border-radius: 38px 80px 32px 44px/34px 38px 70px 62px;
  box-shadow: 0 6px 36px 0 rgba(105,125,92,0.07);
  border: 1px solid #e0dfd5;
}
.card {
  background: #f6faf7;
  border-radius: 30px 40px 24px 26px/28px 28px 40px 42px;
  border: 1.5px solid #e4efe1;
  box-shadow: 0 2px 14px 0 rgba(65,99,51,0.07);
  padding: 28px 26px;
}
.feature-item, .text-section ul, .section ul {
  background: transparent;
}
.section ul li, .feature-item li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  font-size: 1.05rem;
  gap: 10px;
  color: #3A5234;
}
.section ul li img, .feature-item li img {
  height: 23px;
  width: 23px;
  margin-right: 8px;
  filter: grayscale(22%) brightness(1.08) sepia(0.13) hue-rotate(-22deg) saturate(0.9);
}

hr {
  border: none;
  border-top: 2px solid #e0dfd5;
  margin: 36px 0;
}

.map-placeholder {
  background: #e2ede2;
  border: 2.5px dashed #B7C9A0;
  border-radius: 24px;
  padding: 32px 22px;
  margin-top: 22px;
  color: #497350;
  font-size: 1.07rem;
  box-shadow: 0 2px 18px 0 rgba(110,126,90,.09);
}

/* TABLET AND MOBILE ADOPTIONS */
@media (max-width: 580px) {
  .content-wrapper, .section {
    padding: 10px 4px;
    border-radius: 13px;
  }
  .container {
    padding: 0 5px;
  }
}

/* MICRO-INTERACTIONS & TRANSITIONS */
a, button, .cta-primary, .card {
  transition-property: background, color, box-shadow, transform, border;
  transition-duration: 0.18s;
  transition-timing-function: cubic-bezier(.76,.11,.32,.99);
}

/* FOCUS STATES */
a:focus, .cta-primary:focus, button:focus {
  outline: 2.5px solid var(--accent2);
  outline-offset: 3px;
}

/* COOKIE CONSENT BANNER  */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #f9faef;
  color: var(--primary);
  border-top: 2px solid var(--accent2);
  box-shadow: 0 -2px 26px 0 rgba(154,180,129,0.11);
  padding: 20px 16px 24px 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
  z-index: 12000;
  font-size: 1.06rem;
  flex-wrap: wrap;
}
.cookie-banner p {
  flex: 1 1 320px;
  margin: 0;
}
.cookie-banner button {
  background: var(--accent2);
  color: #fff;
  border: none;
  border-radius: 16px;
  padding: 11px 26px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.01rem;
  font-weight: 600;
  margin-left: 6px;
  cursor: pointer;
  transition: background .16s, color .18s, box-shadow .22s;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #3a442e;
  color: #FFC857;
  box-shadow: 0 4px 16px 0 rgba(115,125,112,0.09);
}
.cookie-banner .cookie-settings {
  background: var(--yellow-accent);
  color: var(--primary);
  margin-right: 0;
}
.cookie-banner .cookie-settings:hover {
  background: #FCEDCD;
  color: var(--primary);
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 18px 8px 20px 8px;
    font-size: 0.97rem;
  }
}

/* Cookie Preferences Modal */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 13000;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(51, 64, 57, 0.25);
  align-items: center;
  justify-content: center;
  transition: background .28s;
}
.cookie-modal-overlay.open {
  display: flex;
  animation: fadePopIn .33s cubic-bezier(.15,1.1,.73,.98);
}
.cookie-modal {
  background: #f8fbea;
  border-radius: 28px;
  box-shadow: 0 8px 38px 0 rgba(83,104,78,0.13);
  border: 2px solid #e6ede0;
  max-width: 410px;
  width: 97%;
  padding: 32px 26px 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  font-size: 1.06rem;
}
.cookie-modal h3 {
  color: var(--accent2);
  font-size: 1.15rem;
  margin-bottom: 10px;
  font-weight: 700;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  margin-bottom: 7px;
  color: #375038;
}
.cookie-modal input[type="checkbox"] {
  accent-color: var(--accent2);
  width: 18px; height: 18px;
  margin-right: 8px;
}
.cookie-modal .modal-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-top: 10px;
}
.cookie-modal .close-modal {
  position: absolute;
  right: 13px; top: 12px;
  background: none;
  color: var(--accent2);
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  width: 32px; height: 32px;
  border-radius: 13px;
  transition: background .16s;
}
.cookie-modal .close-modal:hover {
  background: #eff6f0;
}
/* Essential is always on and disabled */
.cookie-modal input[type="checkbox"][disabled] {
  filter: grayscale(70%) opacity(.8);
}
@keyframes fadePopIn {
  0% { opacity: 0; transform: scale(.93) translateY(40px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

/* RESPONSIVE UTILITIES */
@media (max-width: 480px) {
  .content-wrapper, .container {
    padding-left: 2px; padding-right: 2px;
  }
  h1 { font-size: 1.35rem; }
  .section { padding: 12px 2px; }
}

/* NATURE ORGANIC 'SHAPES' (for visual deco only, not for content flow!) */
.section::after {
  content: "";
  position: absolute;
  bottom: -38px;
  right: -60px;
  width: 160px;
  height: 74px;
  background: radial-gradient(ellipse at bottom right, #B7C9A0cc 80%, transparent 100%);
  border-radius: 90px 120px 60px 100px/70px 90px 40px 120px;
  opacity: 0.20;
  z-index: 1;
  pointer-events: none;
  display: none;
}
@media (min-width: 1000px) {
  .section::after { display: block; }
}

/* FORMS (future proof / generic) */
input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  border: 1.5px solid #c3d8bc;
  border-radius: 10px;
  padding: 12px 13px;
  margin-bottom: 20px;
  background: #fefff7;
  transition: border .18s;
}
input:focus, textarea:focus {
  border: 2px solid var(--accent2);
  outline: none;
}

/* ACCESSIBILITY */
.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  background: #fff79f;
  color: #1A4412;
  padding: 8px 14px;
  z-index: 99999;
  border-radius: 8px;
  transition: left .25s;
}
.skip-link:focus { left: 22px; top: 11px; }

/* MISC UTILS */
.text-section {
  margin-bottom: 24px;
  padding: 0;
  color: #3c4632;
  font-size: 1.05rem;
}
.text-section ul {
  margin-bottom: 8px;
  margin-top: 6px;
}
.text-section ul li {
  margin-bottom: 8px;
}

/* HIDE SCROLLBAR ON MOBILE MENU */
.mobile-menu, .cookie-modal {
  scrollbar-width: thin;
  scrollbar-color: #A3B18A #e3e8df;
}
.mobile-menu::-webkit-scrollbar { width: 9px; background: #e9fbe3; }
.mobile-menu::-webkit-scrollbar-thumb { background: #A3B18A; border-radius: 6px; }

/* ------------- END OF STYLE.CSS ------------- */
