/* RESET & BASE STYLES */
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;
}
body {
  background: #F8F7F4;
  color: #3c3320;
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.6;
  font-size: 16px;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #195642;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #38C3BF;
}
::-webkit-input-placeholder { color: #88867d; }
::-moz-placeholder { color: #88867d; }
:-ms-input-placeholder { color: #88867d; }
::placeholder { color: #88867d; }
button, input, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}

/* BRAND COLORS (EARTHY TONES + ACCENTS) */
:root {
  --primary: #232846;
  --secondary: #38C3BF;
  --accent: #FFFFFF;
  --earth: #9E7F66;
  --deep-forest: #195642;
  --moss: #C6D7AE;
  --nature-bg: #F8F7F4;
  --clay: #CAB89D;
  --shadow-1: 0 2px 8px rgba(30,50,30,0.07);
  --shadow-2: 0 4px 16px rgba(30,50,30,0.10);
}

/* TYPOGRAPHY */
h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  letter-spacing: -0.5px;
  font-weight: 700;
  color: var(--primary);
}
h1 { font-size: 2.6rem; margin-bottom: 16px; }
h2 { font-size: 2rem; margin-bottom: 14px; }
h3 { font-size: 1.3rem; margin-bottom: 10px; }
h4 { font-size: 1.1rem; margin-bottom: 8px; }
.subheadline {
  font-size: 1.15rem;
  color: var(--deep-forest);
  margin-bottom: 18px;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
}
p, ul, ol, li, dl, dt, dd {
  color: #3c3320;
  font-size: 1rem;
}
strong { color: var(--primary); font-weight: 600; }

/* CONTAINER & LAYOUTS */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.text-section {
  background: var(--nature-bg);
  border-radius: 24px;
  padding: 32px 20px;
  box-shadow: var(--shadow-1);
  margin-bottom: 32px;
}

/* SPACING (MANDATORY STRUCTURES) */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-1);
  padding: 28px 20px 24px 20px;
  transition: box-shadow 0.22s, transform 0.22s;
}
.card:hover {
  box-shadow: var(--shadow-2);
  transform: translateY(-4px) 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;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin: 28px 0 28px 0;
  border-radius: 18px;
  background: var(--moss);
  box-shadow: var(--shadow-1);
  border-left: 5px solid var(--deep-forest);
  max-width: 720px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.feature-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: 24px 0;
}
.feature-grid > div {
  flex: 1 1 280px;
  min-width: 230px;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow-1);
  padding: 26px 18px 20px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.2s, transform 0.2s;
  border: 1px solid var(--moss);
}
.feature-grid > div:hover {
  box-shadow: var(--shadow-2);
  border-color: var(--deep-forest);
  transform: translateY(-3px) scale(1.01);
}

/* CARD/SPECIAL VISUALS (ORGANIC FEEL) */
.card, .feature-grid > div, .testimonial-card, .text-section {
  border-radius: 20px 40px 32px 24px/32px 20px 40px 24px;
  /* gentle organic, uneven rounding */
}

/* HERO SECTION */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(122deg, #C6D7AE 0%, #F8F7F4 100%);
  border-bottom-left-radius: 60px 35px;
  border-bottom-right-radius: 120px 65px;
  margin-bottom: 44px;
  min-height: 320px;
  box-shadow: var(--shadow-1);
}
.hero h1 {
  color: var(--deep-forest);
  font-size: 2.1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  text-shadow: 0 2px 8px rgb(130,160,110,0.10);
  margin-bottom: 12px;
}
.hero .subheadline {
  color: #60693a;
  font-size: 1.08rem;
  margin-bottom: 28px;
}

/* NAVIGATION */
header {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  padding: 16px 20px 10px 20px;
  box-shadow: var(--shadow-1);
  position: relative;
  min-height: 72px;
  z-index: 50;
}
header > a img {
  height: 36px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 22px;
  flex-grow: 1;
  margin-left: 34px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
  letter-spacing: 0.04em;
  color: var(--deep-forest);
  padding: 4px 8px;
  transition: color 0.22s;
  border-radius: 8px;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--moss);
  color: var(--primary);
}
.cta-button {
  background: var(--secondary);
  color: var(--accent);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  padding: 12px 26px;
  border: none;
  border-radius: 24px 38px 24px 32px;
  box-shadow: 0 2px 8px rgba(56, 195, 191, 0.13);
  font-size: 1.07rem;
  margin-left: 18px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  outline: none;
  display: inline-block;
}
.cta-button:hover, .cta-button:focus {
  background: var(--deep-forest);
  color: var(--accent);
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow-2);
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: var(--earth);
  color: var(--accent);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.8rem;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: 18px;
  transition: background 0.16s;
  z-index: 102;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--deep-forest);
  color: var(--accent);
}
.mobile-menu {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(34, 40, 70, 0.96);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(0.48,0.04,0.52,1.02);
  z-index: 200;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  color: var(--secondary);
  font-size: 2.1rem;
  border: none;
  align-self: flex-end;
  margin: 28px 22px 12px 0;
  cursor: pointer;
  z-index: 3;
  transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 18px 44px 32px 38px;
  width: 100%;
}
.mobile-nav a {
  color: var(--accent);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.18rem;
  border-radius: 10px;
  padding: 8px 0;
  transition: background 0.18s, color 0.15s;
  width: 100%;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary);
  color: var(--deep-forest);
}

@media (max-width: 1023px) {
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

@media (max-width: 1023px) {
  .cta-button {
    margin-left: 0;
  }
}
@media (min-width: 1024px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* FOOTER */
footer {
  padding: 38px 20px 20px 20px;
  background: #E6E3DA;
  border-top-left-radius: 64px 32px;
  border-top-right-radius: 88px 52px;
  margin-top: 64px;
  box-shadow: 0 -2px 10px rgba(22,34,22,0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
footer > a img {
  height: 38px;
  margin-bottom: 10px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 10px;
}
.footer-nav a {
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.97rem;
  font-weight: 600;
  transition: color 0.18s;
  border-radius: 8px;
  padding: 2px 6px;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--moss);
  color: var(--deep-forest);
}
.footer-contact {
  color: #4E452A;
  font-size: 0.97rem;
  line-height: 1.5;
  padding: 7px 0 0 0;
  text-align: center;
}

/* TESTIMONIALS */
.testimonial-card blockquote {
  color: #11210F;
  font-style: italic;
  font-size: 1.08rem;
  font-family: 'Roboto', sans-serif;
  line-height: 1.5;
}
.testimonial-card cite {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: var(--deep-forest);
  font-size: 1rem;
  margin-left: 16px;
}

/* FORMS */
form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 20px;
}
input[type="text"],
input[type="email"],
input[type="password"],
textarea {
  background: #fff;
  border: 1.7px solid var(--moss);
  border-radius: 12px 20px 14px 16px;
  padding: 12px 15px;
  font-size: 1rem;
  color: var(--primary);
  transition: border 0.17s;
  resize: none;
  margin-bottom: 2px;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
textarea:focus {
  border-color: var(--deep-forest);
}
label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: var(--deep-forest);
  margin-bottom: 4px;
  margin-top: 8px;
}
button[type="submit"], form button {
  background: var(--secondary);
  color: var(--accent);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  padding: 10px 28px;
  border: none;
  border-radius: 20px 40px 28px 12px;
  font-size: 1.07rem;
  cursor: pointer;
  box-shadow: var(--shadow-1);
  transition: background 0.2s, transform 0.18s, box-shadow 0.18s;
}
button[type="submit"]:hover, form button:hover,
button[type="submit"]:focus, form button:focus {
  background: var(--deep-forest);
  color: var(--accent);
  box-shadow: var(--shadow-2);
  transform: translateY(-2px) scale(1.018);
}

/* LISTS */
ul, ol {
  padding-left: 26px;
  margin-bottom: 18px;
  margin-top: 6px;
}
dt {
  font-weight: 700;
  color: var(--primary);
  margin-top: 10px;
}
dd {
  color: #414a32;
  margin-bottom: 8px;
  margin-left: 0;
  font-size: 1rem;
}

/* TABLES */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
}
th, td {
  border: 1px solid var(--moss);
  padding: 10px 14px;
  font-size: 1rem;
}
th {
  background: var(--clay);
  color: var(--deep-forest);
}
td {
  background: #fff;
}

/* ORGANIC/BRAND DECORATIVE ELEMENTS */
.hero, .text-section, .section {
  border-radius: 50px 12px 32px 80px / 60px 42px 56px 38px;
}

/* MODAL + OVERLAY BASE STYLE FOR COOKIES */
[data-modal], .cookie-modal {
  display: none;
}
.cookie-modal.open {
  display: flex;
  flex-direction: column;
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(34,40,70,0.70);
  z-index: 3000;
  align-items: center;
  justify-content: center;
}
.cookie-modal .content {
  background: #fff;
  border-radius: 22px 44px 18px 32px;
  box-shadow: 0 6px 24px rgba(30,50,30, 0.18);
  padding: 38px 20px 28px 28px;
  max-width: 98vw;
  width: 390px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}
.cookie-modal-close {
  background: transparent;
  font-size: 2rem;
  color: var(--deep-forest);
  align-self: flex-end;
  border: none;
  cursor: pointer;
  margin-right: 0;
  transition: color 0.18s;
}
.cookie-modal-close:hover { color: var(--secondary); }
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-family: 'Roboto', sans-serif;
}
.cookie-category input[type="checkbox"]:not(:disabled) {
  accent-color: var(--secondary);
  width: 19px;
  height: 19px;
  margin-right: 2px;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 3100;
  width: 100vw;
  background: #fffdf2;
  border-top: 3px solid var(--moss);
  box-shadow: 0 -2px 16px rgba(34,35,21,0.10);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 28px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  transition: transform 0.32s cubic-bezier(.22,1,.36,1), opacity 0.15s;
  opacity: 1;
}
.cookie-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner-message {
  color: #4a3d20;
  font-size: 1rem;
  flex: 1 1 auto;
  margin-right: 10px;
}
.cookie-banner-actions {
  display: flex;
  gap: 14px;
}
.cookie-banner button {
  padding: 7px 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border: none;
  border-radius: 16px 34px 18px 19px;
  cursor: pointer;
  box-shadow: 0 1px 6px rgba(30,50,30,0.07);
  background: var(--secondary);
  color: #fff;
  margin: 0;
  transition: background 0.15s, color 0.16s;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--deep-forest);
  color: var(--accent);
}
.cookie-banner .cookie-settings {
  background: var(--earth);
  color: var(--primary);
  font-weight: 600;
}
.cookie-banner .cookie-settings:hover, .cookie-banner .cookie-settings:focus {
  background: var(--deep-forest);
  color: var(--accent);
}

/* ANIMATIONS */
@media (prefers-reduced-motion: no-preference) {
  .mobile-menu,
  .cookie-banner,
  .cookie-modal {
    transition: transform 0.38s cubic-bezier(0.48,0.04,0.52,1.02), opacity 0.23s;
  }
}

/* RESPONSIVE STYLES */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  .container {
    padding: 0 12px;
  }
  .feature-grid {
    flex-direction: column;
    gap: 18px;
  }
  .feature-grid > div {
    min-width: 0;
    width: 100%;
  }
  .content-grid {
    flex-direction: column;
    gap: 12px;
  }
  .section {
    margin-bottom: 34px;
    padding: 22px 5px;
  }
  .testimonial-card {
    flex-direction: column;
    text-align: left;
    align-items: flex-start;
    gap: 10px;
    padding: 16px;
  }
  .main-nav {
    display: none !important;
  }
  .hero {
    min-height: 180px;
    padding: 28px 0 34px 0;
  }
  .mobile-menu {
    padding-top: 34px;
  }
}

@media (max-width: 480px) {
  .footer-nav {
    gap: 18px;
    flex-direction: column;
    align-items: center;
  }
  .footer-contact {
    font-size: 0.95rem;
  }
  .cookie-banner-message {
    font-size: 0.95rem;
  }
}

/* UTILITIES */
.mt-24 { margin-top: 24px !important; }
.mb-24 { margin-bottom: 24px !important; }
.mt-32 { margin-top: 32px !important; }
.mb-32 { margin-bottom: 32px !important; }

/* SCROLL */
html { scroll-behavior: smooth; }

/* ACCESSIBILITY: FOCUS STYLES */
a:focus, button:focus, input:focus, textarea:focus {
  outline: 2px solid var(--secondary);
  outline-offset: 1px;
}

/* CLEARING FLOATS (legacy support) */
.clearfix::after { content: ""; display: table; clear: both; }

/* Hide visually but accessible to screen readers */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
