/* ===================
   CSS RESET & BASELINES
   =================== */
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: 16px;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  background: #F4F7FB;
  color: #21302C;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  line-height: 1.6;
  position: relative;
  /* Subtle organic background texture with SVG data URI - earth tone */
  background-image: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" fill="none" xmlns="http://www.w3.org/2000/svg"><ellipse cx="50" cy="50" rx="49" ry="48" fill="%23efefed"/><ellipse cx="18" cy="33" rx="12" ry="10" fill="%23d7e6dc"/><ellipse cx="87" cy="78" rx="9" ry="7" fill="%23f2e5d8"/><ellipse cx="68" cy="22" rx="7" ry="5" fill="%23e1d5c1"/></svg>');
  background-size: 200px 200px;
}

*, *:before, *:after {
  box-sizing: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #2b6d39;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #FF7A1A;
}

ul, ol {
  margin-left: 1.5em;
  margin-bottom: 1.2em;
}
li {
  margin-bottom: 0.5em;
}

hr {
  border: none;
  border-top: 1px solid #E1D5C1;
  margin: 24px 0;
}

/* ============================
   BRAND TYPOGRAPHY HIERARCHY
   ============================ */
h1, .h1 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  color: #073A5E;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
@media (min-width: 700px) {
  h1, .h1 { font-size: 2.8rem; }
}

h2, .h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.6rem;
  color: #367e41;
  margin-bottom: 16px;
}
@media (min-width: 700px) {
  h2, .h2 { font-size: 2.2rem; }
}

h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1.15rem;
  color: #315c3a;
  margin-bottom: 12px;
}
@media (min-width: 700px) {
  h3 { font-size: 1.25rem; }
}

h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #384a3a;
  font-weight: 500;
  margin-bottom: 8px;
}

p, li, dd, th, td {
  font-size: 1rem;
  color: #21302C;
}

blockquote {
  font-style: italic;
  background: #EDF4EC;
  border-left: 4px solid #367e41;
  color: #3e543a;
  margin: 0 0 12px 0;
  padding: 16px 20px;
  border-radius: 12px 28px 16px 16px / 16px 28px 24px 12px;
  position: relative;
}

strong, b {
  font-weight: 700;
  color: #073A5E;
}

/* =====================
   FLEX LAYOUT CONTAINERS
   ===================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0; /* direct children manage their own gap */
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 0;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  background: #fff;
  border-radius: 22px 12px 22px 12px/18px 18px 22px 18px;
  box-shadow: 0 3px 18px 2px rgba(39, 54, 38, 0.07);
  margin-bottom: 20px;
  position: relative;
  transition: transform 0.18s, box-shadow 0.2s;
  min-width: 240px;
  padding: 24px 18px 20px 18px;
  border: 1px solid #e1d5c1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.card:hover {
  box-shadow: 0 8px 36px 0 rgba(37,87,43,0.14);
  transform: translateY(-2px) scale(1.015);
}

.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;
    align-items: flex-start;
  }
}

.testimonial-card {
  background: #fff;
  border-left: 5px solid #367e41;
  border-radius: 24px 12px 32px 12px/22px 22px 20px 28px;
  box-shadow: 0 3px 18px 2px rgba(70, 110, 70, 0.12);
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  min-width: 220px;
  max-width: 600px;
  color: #183823;
}
.testimonial-info {
  margin-left: 12px;
  font-size: 0.98em;
  color: #073A5E;
  font-weight: 500;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #EDF4EC;
  border-radius: 26px 18px 20px 18px/18px 22px 30px 12px;
  padding: 20px 18px 20px 18px;
  min-width: 200px;
  min-height: 160px;
  box-shadow: 0 1px 4px rgba(76, 95, 71, 0.06);
  margin-bottom: 20px;
}
.feature-item h3 {
  margin-bottom: 0;
}

/* Safety / badge section, organic touch */
.safety-badges {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  margin: 24px 0 24px 0;
  color: #367e41;
  flex-wrap: wrap;
}
.safety-badges img {
  height: 32px;
  width: 32px;
}

/* =========================
   NAVIGATION & HEADER STYLE
   ========================= */
header {
  background: #fff;
  box-shadow: 0 2px 10px 0 rgba(29, 46, 20, 0.08);
  padding: 0;
  z-index: 10;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
}
header img {
  height: 46px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 500;
}
.main-nav a {
  color: #073A5E;
  padding: 9px 18px;
  border-radius: 22px;
  background: none;
  transition: background 0.2s, color 0.2s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: #EDF4EC;
  color: #367e41;
}
.main-nav .cta-primary {
  background: #2b6d39;
  color: #fff;
  font-size: 1rem;
  border-radius: 24px 18px 24px 18px/22px 18px 24px 22px;
  box-shadow: 0 2px 9px 1px rgba(44, 100, 57, 0.13);
  transition: background 0.22s, color 0.18s, box-shadow 0.17s;
  padding: 10px 26px;
  margin-left: 8px;
}
.main-nav .cta-primary:hover, .main-nav .cta-primary:focus {
  background: #FF7A1A;
  color: #073A5E;
  box-shadow: 0 3px 16px 0 rgba(231, 127, 28, 0.13);
}

.mobile-menu-toggle {
  background: none;
  color: #073A5E;
  border: none;
  font-size: 2.2rem;
  line-height: 1;
  padding: 4px 10px 4px 10px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  cursor: pointer;
  margin-left: 10px;
  transition: background 0.18s;
  z-index: 22;
  outline: none;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #EDF4EC;
}

/* Hide desktop nav on mobile, show mobile burger */
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
}
@media (min-width: 901px) {
  .mobile-menu-toggle {
    display: none;
  }
}

/* ======================
   MOBILE MENU OVERLAY
   ====================== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(35,46,30,0.44);
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(0.62,0,0.21,1);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu .mobile-menu-close {
  color: #2b6d39;
  background: #fff;
  font-size: 2.2rem;
  border: none;
  border-radius: 20px;
  margin: 20px 28px 12px 0;
  padding: 4px 15px 4px 15px;
  cursor: pointer;
  z-index: 102;
  box-shadow: 0 2px 10px 1px rgba(57,137,80,0.12);
  transition: background 0.18s;
}
.mobile-menu .mobile-menu-close:hover, .mobile-menu .mobile-menu-close:focus {
  background: #EDF4EC;
}
.mobile-menu .mobile-nav {
  background: #EDF4EC;
  height: 100vh;
  min-width: 270px;
  width: 85vw;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding-top: 60px;
  padding-left: 32px;
  padding-right: 26px;
  box-shadow: -3px 0 24px 2px rgba(49, 115, 63, 0.18);
  position: relative;
}
.mobile-menu .mobile-nav a {
  color: #073A5E;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.11rem;
  border-radius: 20px 10px 18px 11px/12px 18px 12px 11px;
  padding: 14px 14px;
  margin-bottom: 6px;
  width: 100%;
  background: none;
  transition: background 0.18s, color 0.15s;
  display: block;
}
.mobile-menu .mobile-nav a:hover, .mobile-menu .mobile-nav a:focus {
  background: #cee9d7;
  color: #2b6d39;
}

/* Menu accessibility: body.no-scroll when menu open */
body.menu-open {
  overflow-y: hidden;
}

/* =====================
   HERO & SECTION ROOTS
   ===================== */
.section,
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
  border-radius: 0 0 64px 0 / 0 0 54px 0;
}
@media (max-width: 899px) {
  .section, section {
    padding-left: 6px;
    padding-right: 6px;
  }
}

.hero-section {
  background: #d7e6dc;
  border-radius: 0 0 100px 0 / 0 0 80px 0;
  padding: 38px 0 74px 0;
  margin-bottom: 60px;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
}
.hero-section .container {
  min-height: unset;
}
.hero-section h1 {
  font-size: 2.4rem;
  color: #073A5E;
  margin-bottom: 18px;
}
.hero-section p {
  font-size: 1.18rem;
  color: #153315;
}
@media (min-width: 700px) {
  .hero-section h1 { font-size: 2.9rem; }
}

.features-section {
  background: #EEF5E8;
  border-radius: 0 60px 67px 0 / 0 40px 47px 0;
  margin-bottom: 60px;
  padding-top: 40px;
  padding-bottom: 40px;
}
.features-section h2 {
  color: #2b6d39;
}

.cta-section {
  background: #ffecd0;
  border-radius: 0 96px 92px 0 / 0 64px 62px 0;
  margin-bottom: 60px;
  text-align: center;
}
.cta-section h2 {
  color: #367e41;
  margin-bottom: 12px;
}

.trust-section {
  background: #EDF4EC;
  border-radius: 0 50px 45px 0 / 0 40px 38px 0;
  margin-bottom: 60px;
}
.trust-section h2 {
  color: #2b6d39;
}

@media (max-width: 768px) {
  .hero-section, .features-section, .cta-section, .trust-section, .section, section {
    margin-bottom: 45px;
    border-radius: 0 0 32px 0 / 0 0 28px 0;
    padding: 24px 5px 24px 5px;
  }
}

/* =====================
   GRID / LIST VARIANTS
   ===================== */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.feature-item img {
  height: 40px;
  width: auto;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.service-item {
  background: #fff;
  border-radius: 20px 13px 19px 9px/12px 16px 21px 13px;
  box-shadow: 0 2px 10px 1px rgba(54, 84, 60, 0.10);
  min-width: 220px;
  padding: 24px 16px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: box-shadow 0.15s, transform 0.15s;
  margin-bottom: 20px;
}
.service-item:hover {
  box-shadow: 0 8px 36px 0 rgba(72, 121, 79, 0.14);
  transform: translateY(-2px) scale(1.015);
}
.service-item img {
  height: 40px;
  margin-bottom: 0.5em;
}

.step-list-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.step-item {
  background: #EEF5E8;
  border-radius: 20px 12px 19px 11px/12px 16px 21px 13px;
  box-shadow: 0 2px 10px 0 rgba(54, 84, 60, 0.06);
  min-width: 200px;
  padding: 18px 14px 16px 14px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  margin-bottom: 20px;
}
.step-item img {
  height: 38px;
  margin-bottom: 0.3em;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
}

/* Responsive layouts for card-like containers */
@media (max-width: 900px) {
  .feature-grid, .service-grid, .step-list-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
}

/* =========================
   TABLES
   ========================= */
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 1px 8px 2px rgba(39, 54, 38, 0.06);
}
th, td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid #e1d5c1;
}
th {
  background: #EEF5E8;
  color: #073A5E;
  font-weight: 600;
  font-size: 1.06em;
}
tr:last-child td {
  border-bottom: none;
}

/* =====================
   BUTTONS & CTA's
   ===================== */
.cta-primary, .cta-primary:visited {
  display: inline-block;
  background: #2b6d39;
  color: #fff !important;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 28px 19px 24px 18px/22px 18px 28px 22px;
  border: none;
  box-shadow: 0 2px 10px 2px rgba(44, 100, 57, 0.10);
  padding: 12px 36px;
  margin-top: 12px;
  cursor: pointer;
  outline: none;
  text-align: center;
  text-shadow: none;
  transition: background 0.19s, color 0.18s, box-shadow 0.17s;
  letter-spacing: 0.02em;
}
.cta-primary:hover, .cta-primary:focus {
  background: #FF7A1A;
  color: #073A5E!important;
  box-shadow: 0 4px 15px 0 rgba(231, 127, 28, 0.12);
  transform: translateY(-1px) scale(1.012);
}

button, .button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  border: none;
  border-radius: 22px 12px 22px 16px/16px 16px 19px 12px;
  padding: 10px 26px;
  background: #EDF4EC;
  color: #367e41;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, color 0.11s;
  outline: none;
}
button:active, .button:active {
  background: #d7e6dc;
  color: #073A5E;
}
button:focus, .button:focus {
  background: #cde7cf;
}

/* =====================
   FOOTER
   ===================== */
footer {
  background: #073A5E;
  color: #f4f7fb;
  border-radius: 60px 0 0 0 / 36px 0 0 0;
  padding: 38px 0 30px 0;
  margin-top: 38px;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}
.footer-logo img {
  height: 44px;
  width: auto;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav a {
  color: #f4f7fb;
  font-size: 1em;
  transition: color 0.15s;
  border-radius: 10px;
  padding: 4px 8px 4px 0;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #FF7A1A;
  background: #EDF4EC;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 6px;
}
.footer-contact img {
  height: 16px;
  margin-right: 9px;
  vertical-align: middle;
}
.footer-contact div {
  display: flex;
  align-items: center;
  color: #f4f7fb;
  font-size: 0.98em;
}

@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
}

/* ===================================
   COOKIE CONSENT BANNER & MODAL
   =================================== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100vw;
  background: #fff8ef;
  color: #21302C;
  border-top: 2px solid #FF7A1A;
  box-shadow: 0 -2px 16px 1px rgba(124, 97, 36, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8em;
  padding: 18px 10px 20px 10px;
  z-index: 199;
  font-size: 1rem;
  animation: slideUp 0.38s cubic-bezier(0.21,0.92,0.52,0.99);
}
@keyframes slideUp {
  from { transform: translateY(110%); opacity:0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner__actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 8px;
}
.cookie-banner button,
.cookie-banner .button {
  padding: 10px 22px;
  border-radius: 22px 12px 18px 11px/12px 18px 12px 11px;
  font-size: 1em;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  background: #EDF4EC;
  color: #2b6d39;
  border: none;
  transition: background 0.13s, color 0.13s;
  min-width: 115px;
  margin: 0 2px;
  cursor: pointer;
  box-shadow: 0 1px 2px 1px rgba(124, 160, 95, 0.08);
}
.cookie-banner button.accept {
  background: #2b6d39;
  color: #fff;
}
.cookie-banner button.accept:hover, .cookie-banner button.accept:focus {
  background: #FF7A1A;
  color: #073A5E;
}
.cookie-banner button.reject {
  background: #fbe8e6;
  color: #ad2a14;
}
.cookie-banner button.reject:hover, .cookie-banner button.reject:focus {
  background: #FF7A1A;
  color: #f4f7fb;
}
.cookie-banner button.settings {
  background: #EDF4EC;
  color: #2b6d39;
}
.cookie-banner button.settings:hover, .cookie-banner button.settings:focus {
  background: #cee9d7;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(35,46,30,0.22);
  z-index: 299;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.cookie-modal.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal__content {
  background: #fff;
  border-radius: 22px 48px 22px 18px/22px 28px 22px 26px;
  padding: 32px 18px 28px 22px;
  box-shadow: 0 5px 38px 1px rgba(59, 71, 46, 0.18);
  min-width: 320px;
  max-width: 96vw;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 16px 0 12px 0;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.05em;
}
.cookie-category .toggle {
  width: 42px; height: 22px;
  background: #EEF5E8;
  border-radius: 12px;
  position: relative;
  margin-left: auto;
  margin-right: 8px;
  flex-shrink: 0;
}
.cookie-category input[type="checkbox"] {
  opacity: 0;
  width: 0; height: 0;
}
.cookie-category .slider {
  position: absolute;
  left: 3px; top: 3px;
  width: 16px; height: 16px;
  background: #fbe8e6;
  border-radius: 50%;
  transition: left 0.18s, background 0.18s;
}
.cookie-category input[type="checkbox"]:checked + .slider {
  left: 23px;
  background: #2b6d39;
}
.cookie-modal__actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 8px;
}
.cookie-modal__title {
  color: #073A5E;
  font-weight: 700;
  font-size: 1.34em;
}
.cookie-modal__close {
  border: none;
  background: none;
  font-size: 2rem;
  position: absolute;
  top: 14px; right: 18px;
  color: #2b6d39;
  cursor: pointer;
  transition: background 0.13s;
  border-radius: 12px;
  padding: 2px 8px 2px 8px;
}
.cookie-modal__close:hover, .cookie-modal__close:focus {
  background: #EEF5E8;
}
@media (max-width: 600px) {
  .cookie-modal__content {
    min-width: 94vw;
    padding: 22px 5px 18px 7px;
  }
}

/* ================================
   FAQ: Definition list formatting
   ================================ */
dl {
  margin-bottom: 16px;
}
dt {
  font-weight: 600;
  color: #367e41;
  padding-top: 12px;
}
dd {
  margin-left: 0;
  padding-left: 20px;
}

/* ===============================
   ANIMATIONS & INTERACTIONS
   =============================== */
.card, .testimonial-card, .feature-item, .service-item, .step-item {
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover, .feature-item:hover, .service-item:hover, .step-item:hover {
  box-shadow: 0 6px 22px 2px rgba(32,78,44,0.13);
  transform: translateY(-2px) scale(1.01);
}
.cta-primary:active, .feature-item:active {
  transform: scale(0.97);
}

/* Subtle fade-in for sections */
.section, section {
  opacity: 1;
  animation: fadeinSection 0.34s ease;
}
@keyframes fadeinSection {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===============================
   ACCESSIBILITY & USABILITY
   =============================== */
a:focus {
  outline: 2px solid #FF7A1A;
  outline-offset: 3px;
}
button:focus, .cta-primary:focus, .button:focus {
  outline: 2px solid #367e41;
  outline-offset: 2px;
}

/* ===============================
   RESPONSIVE DESIGN
   =============================== */
@media (max-width: 700px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.22rem; }
  .footer-logo img {
    height: 36px;
  }
  .hero-section h1 { font-size: 1.42rem; }
}

@media (max-width: 500px) {
  .container { padding-left: 4px; padding-right: 4px; }
  .cookie-modal__content { min-width: 98vw; padding: 12px 2px 12px 2px; }
}

/* ===============================
   FORMS (Minimal for contact info)
   =============================== */
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  padding: 10px 14px;
  border-radius: 10px 18px 10px 18px/10px 18px 10px 18px;
  border: 1px solid #e1d5c1;
  background: #f7f5f2;
  margin-bottom: 20px;
  width: 100%;
  transition: border-color 0.13s, box-shadow 0.13s;
}
input:focus, textarea:focus, select:focus {
  border-color: #2b6d39;
  outline: 1px solid #367e41;
}

label {
  font-weight: 600;
  color: #073A5E;
  margin-bottom: 6px;
  display: block;
}

/* ================================
   ORGANIC CORNERS & SHADOWS
   ================================ */
/* All main cards, features, hero etc. already styled with organic border-radius */

/* ================================
   MISC
   ================================ */
::-webkit-scrollbar {
  width: 10px;
  background: #f0f0ed;
}
::-webkit-scrollbar-thumb {
  background: #cee9d7;
  border-radius: 5px;
}
