/* === CSS 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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F3F7F0;
  color: #205763;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, picture {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #205763;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #EA7692;
  outline-offset: 2px;
}
a:hover, nav a:hover {
  color: #B13B57;
  text-decoration: underline;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 1em;
  outline: none;
}
button:focus {
  outline: 2px solid #EA7692;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: #205763;
  line-height: 1.2;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  letter-spacing: -1.2px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 14px;
}
h4 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}
p, ul, ol {
  color: #34534a;
  font-size: 1rem;
  margin-bottom: 16px;
}
strong {
  font-weight: 600;
  color: #205763;
}

/* === LAYOUT & STRUCTURE === */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
}

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

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 32px 24px 36px 28px;
  box-shadow: 0 4px 20px rgba(32,87,99,0.07);
  transition: box-shadow 0.25s;
}
.section:hover {
  box-shadow: 0 8px 32px rgba(32,87,99,0.12);
}

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

.card {
  background: #F3F7F0;
  border-radius: 28px;
  box-shadow: 0 2px 8px rgba(32,87,99,0.05);
  padding: 28px 24px;
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 240px;
  min-width: 0;
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 4px 16px rgba(32,87,99,0.13);
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #f3f7f0;
  border-radius: 32px;
  box-shadow: 0 2px 10px rgba(32,87,99,0.08);
  margin-bottom: 20px;
  min-width: 220px;
  max-width: 580px;
  border-left: 6px solid #EA7692;
  color: #205763;
  font-size: 1.08rem;
}
.testimonial-card strong {
  color: #B13B57;
  font-weight: 700;
  letter-spacing: 0.2px;
  font-size: 1rem;
}

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

.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.map-snippet {
  background: #EDF3EB;
  border-radius: 25px 40px 28px 19px;
  padding: 18px 20px;
  color: #205763;
  font-size: 0.97em;
  margin-top: 10px;
}

/* === LISTS & ICONS === */
ul, ol {
  padding-left: 28px;
  margin-bottom: 16px;
}
ul li, ol li {
  margin-bottom: 9px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
ul li img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #EDF3EB;
  padding: 4px;
  margin-right: 8px;
}

/* === BUTTONS & CTA === */
.cta, .cta.primary, .cookie-banner button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.07em;
  padding: 14px 32px;
  border-radius: 32px;
  background: #EA7692;
  color: #fff;
  border: none;
  box-shadow: 0 2px 8px rgba(186,59,87,0.10);
  margin-top: 10px;
  transition: background 0.17s, box-shadow 0.17s, transform 0.12s;
  cursor: pointer;
  letter-spacing: 0.35px;
}
.cta.primary {
  background: #205763;
  color: #fff;
  border: none;
}
.cta:hover, .cta.primary:hover, .cookie-banner button:hover {
  background: #B13B57;
  color: #fff;
  transform: translateY(-2px) scale(1.025);
  box-shadow: 0 4px 16px rgba(32,87,99,0.17);
}

/* === HEADER & NAVIGATION === */
header {
  background: #fff;
  box-shadow: 0 2px 17px rgba(32,87,99,0.08);
  padding: 0;
  position: relative;
  z-index: 101;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 18px;
}
header img {
  height: 54px;
  width: auto;
  border-radius: 24px 38px 32px 16px;
  background: #EDF3EB;
  padding: 2px;
}
header nav {
  display: flex;
  gap: 18px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #205763;
  font-weight: 500;
  font-size: 1.05em;
  padding: 8px 13px;
  border-radius: 22px;
  transition: background 0.13s, color 0.13s;
}
header nav a:hover {
  background: #faf5fa;
  color: #B13B57;
}

header .cta.primary {
  margin-left: 10px;
}

.mobile-menu-toggle {
  display: none;
  background: #EA7692;
  color: #fff;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 2rem;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  margin-left: 12px;
  transition: background 0.13s, box-shadow 0.13s;
  z-index: 110;
}
.mobile-menu-toggle:hover {
  background: #B13B57;
}

/* === MOBILE NAV === */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(32,87,99,0.94);
  color: #fff;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(.36,1.25,.21,1);
  box-shadow: -2px 0 32px rgba(32,87,99,0.16);
  overscroll-behavior: contain;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.3rem;
  position: absolute;
  top: 22px;
  right: 28px;
  cursor: pointer;
  z-index: 210;
}
.mobile-nav {
  margin-top: 80px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  padding-left: 36px;
  padding-bottom: 30px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.08em;
  background: none;
  padding: 10px 0;
  border-radius: 12px;
  transition: background 0.1s, color 0.1s;
  min-width: 160px;
}
.mobile-nav a:hover {
  background: #EA7692;
  color: #fff;
}

/* === FOOTER === */
footer {
  background: #EDF3EB;
  padding: 44px 0 20px 0;
  font-size: 0.98rem;
  color: #205763;
  border-radius: 32px 32px 0 0;
  box-shadow: 0 -3px 16px rgba(32,87,99,0.08);
  margin-top: 40px;
}
footer .container {
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  gap: 16px;
}
footer nav {
  display: flex;
  gap: 22px;
  align-items: center;
  margin-bottom: 8px;
}
footer nav a {
  color: #34534a;
  font-size: 1em;
  padding: 7px 10px;
  border-radius: 19px;
  transition: background 0.13s;
}
footer nav a:hover {
  background: #EA7692;
  color: #fff;
}
footer p {
  margin: 0;
  color: #205763;
  font-size: 0.97em;
}

/* === COOKIE BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100vw;
  background: #205763;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 20px;
  z-index: 500;
  box-shadow: 0 -2px 28px rgba(32,87,99,0.19);
  transition: transform 0.3s;
}
.cookie-banner.hide {
  transform: translateY(110%);
}
.cookie-banner p {
  flex: 1 1 240px;
  margin: 0 14px 0 0;
  font-size: 1rem;
  color: #fff;
}
.cookie-banner button {
  margin-left: 8px;
  min-width: 120px;
  min-height: 44px;
  font-size: 1.1em;
  font-weight: 600;
  border-radius: 24px;
  border: none;
}
.cookie-banner .reject {
  background: #fff;
  color: #205763;
}
.cookie-banner .settings {
  background: #B13B57;
  color: #fff;
}
.cookie-banner .reject:hover {
  background: #EA7692;
  color: #fff;
}
.cookie-banner .settings:hover {
  background: #205763;
  color: #fff;
}

/* === COOKIE PREFERENCES MODAL === */
.cookie-modal {
  position: fixed;
  z-index: 700;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(32,87,99,0.66);
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.23s;
}
.cookie-modal.open {
  visibility: visible;
  opacity: 1;
}
.cookie-modal .modal-content {
  background: #fff;
  border-radius: 28px;
  padding: 38px 22px 28px 22px;
  min-width: 310px; max-width: 96vw;
  color: #205763;
  display: flex;
  flex-direction: column;
  gap: 22px;
  box-shadow: 0 4px 28px rgba(32,87,99,0.15);
  position: relative;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 17px; right: 11px;
  background: none;
  border: none;
  color: #EA7692;
  font-size: 1.9rem;
  cursor: pointer;
}
.cookie-modal h2 {
  color: #205763;
  margin-bottom: 9px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 12px;
}
.cookie-category label {
  font-size: 1.07em;
}
.cookie-category input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: #EA7692;
}
.cookie-modal .category-desc {
  font-size: 0.99em;
  color: #34534a;
  margin-left: 18px;
  margin-bottom: 0;
}
.cookie-modal .save {
  background: #EA7692;
  color: #fff;
  font-weight: 600;
  border-radius: 24px;
  font-size: 1.1em;
  border: none;
  padding: 13px 36px;
  margin-top: 16px;
  cursor: pointer;
  transition: background 0.15s;
}
.cookie-modal .save:hover {
  background: #205763;
}

/* === RESPONSIVENESS (MOBILE-FIRST) === */
@media (max-width: 1140px) {
  .container {
    max-width: 95vw;
  }
}
@media (max-width: 980px) {
  header .container, footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
  .container {
    max-width: 99vw;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 98%;
  }
  body {
    font-size: 15px;
  }
  .section {
    padding: 28px 10px;
    margin-bottom: 36px;
    border-radius: 20px 16px 22px 13px;
  }
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  footer {
    padding: 28px 0 12px 0;
    border-radius: 19px 19px 0 0;
    margin-top: 18px;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  header nav,
  header .cta.primary {
    display: none !important;
  }
  header .container {
    min-height: 64px;
  }
  .testimonial-card {
    max-width: 100%;
    min-width: 0;
    border-radius: 20px;
  }
}
/* Show mobile menu on open */
@media (max-width: 900px) {
  .mobile-menu-toggle {
    display: flex;
  }
  header nav,
  header .cta.primary {
    display: none !important;
  }
}

/* === ORGANIC SHAPES AND EFFECTS === */
.section, .card, .testimonial-card, .map-snippet {
  /* Use organic border-radius for natural feel */
  border-radius: 32px 24px 36px 28px;
}
@media (max-width:600px) {
  .section, .card, .testimonial-card, .map-snippet {
    border-radius: 16px 8px 17px 12px;
  }
}

/* Subtle nature-inspired shadow */
.card, .testimonial-card, .map-snippet {
  box-shadow: 0 2px 10px rgba(64,112,89,0.10);
}

/* === ANIMATION & HOVER === */
.cta, .cta.primary, .cookie-banner button {
  transition: background 0.16s, box-shadow 0.18s, color 0.14s, transform 0.2s;
}
.card:hover, .testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(32,87,99,0.13);
  transform: translateY(-3px) scale(1.015);
}
.mobile-menu,
.cookie-banner,
.cookie-modal .modal-content {
  transition: all 0.32s cubic-bezier(.33,.66,.67,1.1);
}

/* === FORM ELEMENTS (if present) === */
input[type="text"], input[type="email"], textarea {
  padding: 10px 16px;
  border: 1px solid #D5E3DC;
  border-radius: 19px;
  font-size: 1em;
  margin-bottom: 18px;
  background: #F3F7F0;
  transition: border 0.13s;
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
  border-color: #EA7692;
  background: #fff;
}
label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  margin-bottom: 6px;
  display: block;
  color: #205763;
}

/* === VISUAL DECORATIVE ELEMENTS === */
/* Add soft, leaf-like or wavy backgrounds as effect */
.section {
  background: linear-gradient(119deg, #FFF 89%, #EDF3EB 100%);
  position: relative;
  overflow: hidden;
}
.section::before {
  content: '';
  position: absolute;
  opacity: 0.06;
  width: 120px; height: 90px;
  border-radius: 99px 76px 88px 99px/55px 99px 79px 99px;
  top: -35px; right: -48px;
  background: #B9DBB9;
  z-index: 0;
  pointer-events: none;
}
.section::after {
  content: '';
  position: absolute;
  opacity: 0.08;
  width: 100px; height: 54px;
  border-radius: 95px 29px 88px 65px/45px 80px 49px 99px;
  bottom: -32px; left: -26px;
  background: #F7E6D7;
  z-index: 0;
  pointer-events: none;
}

/* Ensures z-index for content */
.section > *, .card > *, .testimonial-card > * {
  position: relative;
  z-index: 1;
}

/* === ACCESSIBILITY & UTILITIES === */
:focus-visible {
  outline: 2px solid #EA7692;
  outline-offset: 2px;
}

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

/* === PRINT SUPPORT === */
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
  body { background: #fff; }
}
