/* 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 {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  background: #F4F6F9;
  color: #353D2F;
  font-family: 'Source Sans Pro', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #27653b;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F2994A;
}
ul, ol {
  margin-left: 20px;
  margin-bottom: 1em;
}
strong {
  font-weight: bold;
}

/* BRAND/NATURE ORGANIC COLORS */
:root {
  --primary: #1B2336; /* Navy, for text/headers */
  --secondary: #F4F6F9; /* off-white, backgrounds */
  --accent: #F2994A; /* sunny accent */
  --green: #27653b; /* nature green accent */
  --earth: #C2B280; /* earthy sand for backgrounds */
  --brown: #8C7156; /* brown for cards, shadows */
  --beige: #EFE8D8; /* light beige for contrast */
}

/* TYPOGRAPHY */
h1, .h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--green);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.16;
  margin-bottom: 24px;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--green);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 14px;
}

h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
}
p, li, span, a, button, input, textarea {
  font-family: 'Source Sans Pro', Arial, sans-serif;
  color: #353D2F;
}
p {
  margin-bottom: 1em;
  font-size: 1rem;
  line-height: 1.7;
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.13rem; }
}

/* LAYOUT CONTAINERS */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

/* Sections / Spacing Patterns */
section, .section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--secondary);
  border-radius: 32px 48px 36px 24px / 36px 24px 32px 48px; /* organic shape */
  box-shadow: 0 4px 24px rgba(140, 113, 86, 0.06);
  transition: background 0.3s;
}
section:last-child, .section:last-child {
  margin-bottom: 0;
}

@media (max-width: 540px) {
  section, .section {
    padding: 28px 8px;
    border-radius: 18px 32px 22px 13px / 22px 13px 18px 32px;
    margin-bottom: 32px;
  }
}

/* CARD & FLEX PATTERNS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--beige);
  border-radius: 24px 16px 32px 20px / 32px 18px 16px 22px;
  box-shadow: 0 2px 12px rgba(34, 52, 15, 0.09);
  margin-bottom: 20px;
  padding: 28px 22px 24px 22px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.18s, transform 0.19s;
}
.card:hover {
  box-shadow: 0 8px 36px rgba(34, 52, 15, 0.18);
  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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  margin-bottom: 20px;
  border-radius: 28px 18px 28px 18px / 18px 28px 18px 28px;
  box-shadow: 0 2px 12px rgba(27,35,54,0.07);
  flex-direction: column;
  align-items: flex-start;
  min-width: 240px;
  max-width: 580px;
  transition: box-shadow 0.19s;
}
.testimonial-card p {
  color: #1B2336;
  font-size: 1.08rem;
  margin-bottom: 0.3em;
}
.testimonial-card span {
  font-size: 0.98rem;
  color: var(--green);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.testimonial-card:hover {
  box-shadow: 0 6px 30px rgba(27,35,54,0.14);
}

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

/* Hero Section */
.hero-section {
  background: linear-gradient(120deg, var(--beige) 60%, var(--earth) 130%);
  border-radius: 42px 32px 54px 16px / 35px 23px 24px 54px;
  box-shadow: 0 7px 24px rgba(39,101,59,0.08);
  text-align: left;
}
.hero-section h1 {
  color: var(--green);
}
.hero-section p {
  color: var(--primary);
}
@media (max-width: 768px) {
  .hero-section {
    padding: 32px 12px;
    border-radius: 18px 14px 26px 9px / 14px 26px 18px 22px;
    text-align: left;
  }
}

/* Feature Grid */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.feature-grid > div {
  background: var(--beige);
  border-radius: 22px 36px 17px 26px / 26px 22px 36px 17px;
  box-shadow: 0 3px 14px rgba(34, 52, 15, 0.08);
  min-width: 220px;
  padding: 22px 16px 18px 16px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.18s, background 0.17s;
}
.feature-grid > div img {
  margin-bottom: 8px;
  height: 44px;
  width: 44px;
}
.feature-grid > div:hover {
  box-shadow: 0 10px 36px rgba(34, 52, 15, 0.12);
  background: #e3efd8;
}
@media (max-width: 980px) {
  .feature-grid {
    flex-direction: column;
    gap: 18px;
  }
  .feature-grid > div {
    width: 100%;
    min-width: 0;
  }
}

/* Quick Links */
.quick-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.quick-links a {
  color: var(--green);
  font-weight: 600;
  font-size: 1.05em;
  transition: color 0.17s;
}
.quick-links a:hover {
  color: var(--accent);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(100deg, #e3efd8 42%, var(--beige) 120%);
  border-radius: 40px 12px 30px 60px / 24px 32px 60px 44px;
  text-align: left;
  box-shadow: 0 4px 22px rgba(39,101,59,0.09);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 50px 24px;
}
.cta-section h2 { color: var(--green); }
.cta-section p { color: #1B2336; }

/* CTA Button */
.cta-button,
input[type="submit"],
button.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 19px 36px 19px 36px / 36px 19px 36px 19px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 14px 32px;
  margin-top: 14px;
  box-shadow: 0 2px 10px rgba(39,101,59,0.06);
  cursor: pointer;
  transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
}
.cta-button:hover, .cta-button:focus {
  background: var(--accent);
  color: #1B2336;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 24px rgba(242,153,74,0.14);
}

/* HEADER & NAVIGATION */
header {
  width: 100%;
  background: var(--earth);
  box-shadow: 0 4px 16px rgba(27,35,54,0.06);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
}
header img {
  height: 54px;
  width: auto;
}

.main-nav {
  display: flex;
  gap: 18px;
  align-items: center;
}
.main-nav a {
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  padding: 10px 16px 10px 0;
  font-size: 1em;
  border-radius: 9px 18px 9px 18px / 18px 9px 18px 9px;
  transition: background 0.14s, color 0.14s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--beige);
  color: var(--green);
}

.header .cta-button {
  margin-left: 12px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--green);
  cursor: pointer;
  padding: 0 8px;
  margin-left: 10px;
  z-index: 110;
  transition: color 0.18s, transform 0.18s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  color: var(--accent);
  transform: scale(1.07);
}

@media (max-width: 980px) {
  .main-nav {
    display: none;
  }
  .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}

/* Mobile Navigation Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(244,246,249, 0.97);
  padding: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(.77,0,.18,1);
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}

.mobile-menu-close {
  font-size: 2.1rem;
  background: none;
  border: none;
  margin: 20px 0 0 24px;
  color: var(--green);
  cursor: pointer;
  transition: color 0.18s, transform 0.15s;
  z-index: 1010;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--accent);
  transform: scale(1.11);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 28px 24px 0 36px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  font-size: 1.15em;
  font-weight: 500;
  padding: 14px 0;
  border-radius: 12px 28px 12px 28px / 28px 12px 28px 12px;
  transition: background 0.16s, color 0.14s;
  min-width: 180px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #e3efd8;
  color: var(--green);
}

@media (max-width: 540px) {
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  .mobile-nav {
    padding-left: 12px;
    font-size: 1em;
  }
}

/* ABOUT PREVIEW & HIGHLIGHTED TIPS */
.about-preview-section, .highlighted-tips {
  background: linear-gradient(80deg, #e8dbc1 45%, #e3efd8 120%);
  border-radius: 30px 42px 20px 38px / 38px 20px 32px 26px;
}
.about-preview-section ul, .highlighted-tips ul {
  list-style: disc;
  margin-bottom: 20px;
}
.about-preview-section a, .highlighted-tips a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.15s;
}
.about-preview-section a:hover, .highlighted-tips a:hover {
  color: var(--green);
}

/* Map Embed */
.map-embed {
  margin: 22px 0;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  max-width: 340px;
}
.map-embed svg {
  background: var(--earth);
  border-radius: 18px 14px 22px 9px / 14px 22px 18px 22px;
  width: 250px;
  height: 100px;
  box-shadow: 0 2px 12px rgba(27,35,54,0.10);
}
@media (max-width: 540px) {
  .map-embed svg {
    width: 92vw;
    height: 80px;
  }
}

/* Footer */
footer {
  background: var(--earth);
  padding: 40px 0 16px 0;
  margin-top: 24px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
footer .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
footer img {
  height: 40px;
  width: auto;
  margin-bottom: 6px;
}
.footer-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin: 4px 0 7px 0;
}
.footer-nav a {
  color: var(--primary);
  font-weight: 500;
  font-size: 1em;
  padding: 5px 12px;
  border-radius: 7px 13px 7px 13px / 13px 7px 13px 7px;
  transition: background 0.15s, color 0.14s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--beige);
  color: var(--green);
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  align-items: center;
  font-size: 0.98em;
  color: var(--primary);
}
.footer-contact img {
  height: 18px;
  width: 18px;
  margin: 0 3px 0 0;
}
.social-links {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 6px;
}
.social-links img {
  height: 28px;
  width: 28px;
  opacity: 0.86;
  transition: opacity 0.16s;
  border-radius: 50%;
}
.social-links img:hover {
  opacity: 1;
  background: var(--beige);
}
.copyright {
  font-size: 0.96em;
  color: #69562C;
  margin-top: 7px;
}

@media (max-width: 700px) {
  .footer-nav, .footer-contact, .social-links {
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
  }
}

/* Text Sections */
.text-section {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  font-size: 1.04em;
  color: #1B2336;
}
.text-section img {
  height: 22px;
  width: 22px;
  margin: 0 5px 0 0;
}
.text-section a {
  color: var(--green);
  text-decoration: underline;
  transition: color 0.12s;
}
.text-section a:hover {
  color: var(--accent);
}

/* Cookie Banner */
.cookie-consent-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100vw;
  background: #e3efd8;
  color: #1B2336;
  box-shadow: 0 -3px 14px rgba(39,101,59,0.10);
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  padding: 18px 38px 18px 24px;
  font-size: 1.02em;
  z-index: 3000;
  animation: cookieSlideUp 0.4s cubic-bezier(.66,0,.24,1); 
}
@media (max-width: 700px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 8px 14px 8px;
    font-size: 1em;
  }
}
@keyframes cookieSlideUp {
  from { transform: translateY(100%); opacity: 0.2; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner .cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-consent-banner button {
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1em;
  border-radius: 12px 24px 12px 24px / 24px 12px 24px 12px;
  padding: 10px 22px;
  cursor: pointer;
  font-weight: 600;
  margin: 0;
  box-shadow: 0 1px 4px rgba(39,101,59,0.04);
  transition: background 0.14s, color 0.13s, transform 0.17s;
}
.cookie-consent-banner .accept {
  background: var(--green);
  color: #fff;
}
.cookie-consent-banner .accept:hover, .cookie-consent-banner .accept:focus {
  background: var(--accent);
  color: #1B2336;
}
.cookie-consent-banner .reject {
  background: var(--beige);
  color: var(--primary);
}
.cookie-consent-banner .reject:hover, 
.cookie-consent-banner .reject:focus {
  background: #ffe5c2;
  color: var(--green);
}
.cookie-consent-banner .settings {
  background: #fff;
  color: var(--green);
  border: 1.5px solid var(--green);
}
.cookie-consent-banner .settings:hover,
.cookie-consent-banner .settings:focus {
  background: var(--beige);
  color: var(--accent);
  border-color: var(--accent);
}

/* Cookie Consent Modal */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 4000;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(41, 63, 20, 0.33);
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.open {
  display: flex;
  animation: fadeIn 0.2s;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border: 2px solid var(--earth);
  border-radius: 36px 28px 36px 28px / 28px 36px 28px 36px;
  padding: 36px 32px 28px 32px;
  max-width: 390px;
  box-shadow: 0 7px 32px rgba(27,35,54,0.14);
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: modalAppear 0.35s cubic-bezier(.49,.19,.17,1);
  position: relative;
}
@keyframes modalAppear {
  from { transform: translateY(32px) scale(0.95); opacity: 0.25; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.35rem;
  color: var(--green);
  margin-bottom: 10px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.06em;
  margin-bottom: 11px;
}
.cookie-modal .toggle {
  appearance: none;
  width: 38px;
  height: 20px;
  background: #d2e2c7;
  border-radius: 10px 16px 10px 16px / 16px 10px 16px 10px;
  position: relative;
  outline: none;
  transition: background 0.12s;
  cursor: pointer;
}
.cookie-modal .toggle:checked {
  background: var(--green);
}
.cookie-modal .toggle:before {
  content: '';
  position: absolute;
  left: 4px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  transition: left 0.14s;
}
.cookie-modal .toggle:checked:before {
  left: 22px;
}
.cookie-modal .category-label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: var(--primary);
}
.cookie-modal .always-on {
  font-size: 0.96em;
  color: #729a65;
}
.cookie-modal .cookie-buttons {
  margin-top: 12px;
}
.cookie-modal .close-modal {
  position: absolute;
  right: 16px; top: 18px;
  font-size: 1.55rem;
  color: var(--accent);
  background: none;
  border: none;
  cursor: pointer;
}
.cookie-modal .close-modal:hover {
  color: var(--green);
}

/* FORM ELEMENTS */
input, textarea {
  font-size: 1em;
  padding: 10px 12px;
  border-radius: 8px 18px 8px 18px / 18px 8px 18px 8px;
  border: 1px solid #d2e2c7;
  margin-bottom: 16px;
  width: 100%;
  outline: none;
  box-shadow: 0 1px 4px rgba(39,101,59, 0.04);
  background: #fff;
  color: #353D2F;
  transition: border-color 0.14s;
}
input:focus, textarea:focus {
  border-color: var(--green);
}

/* Animations & Transitions */
*:focus {
  outline: 2px dotted var(--green);
  outline-offset: 2px;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 12px;
  background: var(--earth);
}
::-webkit-scrollbar-thumb {
  background: var(--green);
  border-radius: 16px;
}

/* Utilities */
.mb-0       { margin-bottom: 0 !important; }
.gap-20     { gap: 20px !important; }
.text-center{ text-align: center !important; }

@media (max-width: 700px) {
  .content-wrapper, .card-container, .content-grid, .feature-grid {
    flex-direction: column !important;
    gap: 18px !important;
    align-items: flex-start !important;
  }
  .feature-grid > div {
    min-width: 0;
    width: 100%;
  }
  .card {
    min-width: 0;
    width: 100%;
  }
}

/* Remove absolute position for cards; only allowed for decorative ::before/::after */
.card:before, .card:after {
  display: none !important;
}
/* Prevent overlapping and visually reinforce cards/sections */
.card, .testimonial-card, .feature-grid > div, section, .section {
  margin-bottom: 20px;
}

/* FORBIDDEN CSS GRID/ COLUMNS - NONE USED */
/* END OF FLEXBOX-ONLY STYLESHEET */