/* ========================================================
   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,
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: #F9F6F2;
  color: #37423D;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; height: auto; }
a { text-decoration: none; color: inherit; transition: color 0.2s; }
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  background: none;
  border: none;
  outline: none;
}
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
}
h1 { font-size: 2.5rem; line-height: 1.1; margin-bottom: 16px; }
h2 { font-size: 2rem; margin-bottom: 14px; }
h3 { font-size: 1.375rem; margin-bottom: 10px; }
h4 { font-size: 1.125rem; margin-bottom: 8px; }
p { margin-bottom: 16px; }
strong { font-weight: 700; }
em { font-style: italic; }

/* ========================
   CONTAINER & SECTIONS
   ======================== */
.container {
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 18px;
  padding-right: 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FAF8F5;
  border-radius: 24px;
  box-shadow: 0 2px 8px 0 rgba(40, 85, 116, 0.05);
}

/* ORGANIC/NATURE-LIKE DESIGN DECOR */
.section {
  position: relative;
  overflow: hidden;
}
.section::before {
  content: '';
  position: absolute;
  left: 0; bottom: 0; width: 140px; height: 80px;
  background: rgba(104,185,154,0.10);
  border-radius: 60% 70% 60% 80%/80% 70% 60% 90%;
  z-index: 0;
}
.section > .container { position: relative; z-index: 1; }

/* For main backgrounds */
body {
  background:
    linear-gradient(120deg, #F2E9DE 0%, #F9F6F2 60%);
}

/* ========================
   NAVIGATION & HEADER
   ======================== */
header {
  width: 100%;
  background: #F9F6F2;
  padding-top: 24px;
  padding-bottom: 24px;
  box-shadow: 0 2px 14px 0 rgba(40, 85, 116, 0.04);
  position: relative;
  z-index: 50;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
}
header nav a {
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  color: #285574;
  padding: 8px 12px;
  border-radius: 18px;
  transition: background 0.18s, color 0.18s;
}
header nav a.button-primary {
  background: #68B99A;
  color: #fff;
  margin-left: auto;
  margin-right: 0;
  font-weight: 700;
  font-size: 1.08rem;
  box-shadow: 0 2px 8px 0 rgba(104,185,154,0.12);
  border-radius: 24px;
  letter-spacing: 0.04em;
}
header nav a:hover, header nav a:focus {
  background: rgba(104,185,154,0.12);
  color: #1B4229;
}
header nav a.button-primary:hover, header nav a.button-primary:focus {
  background: #285574;
  color: #fff;
}

header nav a img {
  height: 48px; width: auto; vertical-align: middle;
  border-radius: 25% 40% 30% 56%/46% 33% 43% 41%;
  background: #DFEBDD;
  padding: 6px;
  box-shadow: 0 2px 6px rgba(40,85,116,0.05);
}

/* ==================
   MOBILE NAVIGATION
   ================== */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  top: 22px;
  right: 26px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #285574;
  cursor: pointer;
  z-index: 120;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 92vw;
  max-width: 390px;
  background: #FAF8F5;
  box-shadow: -5px 0 30px 0 rgba(40,85,116,0.12);
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(0.83,0,0.17,1);
  z-index: 150;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: #285574;
  align-self: flex-end;
  margin: 22px 26px 6px 0;
  cursor: pointer;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 40px 32px 0 32px;
}
.mobile-nav a {
  padding: 16px 0;
  border-bottom: 1px solid rgba(40,85,116,0.1);
  font-size: 1.08rem;
  color: #285574;
  letter-spacing: 0.03em;
  transition: color 0.18s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #68B99A;
}

/* Hamburger shows on mobile only */
@media (max-width: 991px) {
  header nav { display: none; }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 992px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
}

/* Prevent body scroll when mobile menu open */
body.menu-open { overflow: hidden; }

/* =============
   MAIN & LAYOUT
   ============= */
main {
  margin-top: 0;
  margin-bottom: 50px;
}
.content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  justify-content: flex-start;
  margin-top: 10px;
  margin-bottom: 10px;
}
.text-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  max-width: 650px;
}

/* Text with images (when used) */
.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;
  }
.content-wrapper, .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
}

/* ===========
   CARDS, GRIDS
   =========== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  padding: 28px 24px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 18px 0 rgba(104,185,154,0.10);
  transition: box-shadow 0.23s, border-color 0.17s;
  position: relative;
  display: flex;
  flex-direction: column;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 22px 0 rgba(40,85,116,0.12);
  border-color: #68B99A;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
}

/* ============
   BUTTONS
   ============ */
.button-primary, .button-secondary {
  display: inline-block;
  padding: 14px 30px;
  font-size: 1.08rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  border-radius: 32px;
  box-shadow: 0 2px 8px 0 rgba(40,85,116, 0.08);
  cursor: pointer;
  border: none;
  outline: none;
  transition: background 0.22s, color 0.16s, box-shadow 0.19s, transform 0.1s;
  margin-top: 7px;
  margin-bottom: 7px;
}
.button-primary {
  background: #68B99A;
  color: #fff;
}
.button-primary:hover, .button-primary:focus {
  background: #285574;
  color: #fff;
  box-shadow: 0 6px 18px 0 rgba(40,85,116, 0.15);
  transform: translateY(-1px) scale(1.045);
}
.button-secondary {
  background: #285574;
  color: #fff;
  border: 2px solid #68B99A;
}
.button-secondary:hover, .button-secondary:focus {
  background: #68B99A;
  color: #fff;
}
a.button-primary, a.button-secondary {
  text-align: center;
}

/* ============
   FEATURE LISTS
   ============ */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #F2E9DE;
  border-radius: 16px;
  padding: 18px 22px;
  box-shadow: 0 2px 8px 0 rgba(104,185,154,0.04);
  margin-bottom: 20px;
}

/* ===========
   ICON LISTS
   =========== */
ul li img {
  width: 24px;
  height: 24px;
  object-fit: cover;
  margin-right: 10px;
  vertical-align: middle;
  filter: drop-shadow(0 1px 2px rgba(104,185,154,0.12));
}
ul li {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 1rem;
  line-height: 1.6;
  color: #335352;
}
ul li:last-child { margin-bottom: 0; }

/* =================
   TESTIMONIAL CARDS
   ================= */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  max-width: 570px;
  background: #fff;
  border-left: 5px solid #68B99A;
  border-radius: 22px;
  box-shadow: 0 2px 16px 0 rgba(40,85,116,0.08);
  color: #243227;
  font-size: 1.07rem;
  transition: box-shadow 0.2s;
}
.testimonial-card strong {
  color: #285574;
}
.testimonial-card em {
  color: #5C7F68;
}

.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 8px 24px 0 rgba(104,185,154,0.13);
  border-left: 5px solid #285574;
}

/* =================
   MODALS & OVERLAYS
   ================= */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(40,85,116,0.20);
  z-index: 251;
  display: flex;
  align-items: center; justify-content: center;
}
.modal {
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 8px 40px 0 rgba(40,85,116,0.16);
  padding: 42px 26px 32px 26px;
  max-width: 410px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.modal h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}

/* ===================
   COOKIE CONSENT BANNER
   =================== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #285574;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 22px 16px 20px 18px;
  font-size: 1rem;
  z-index: 250;
  box-shadow: 0 -3px 22px 0 rgba(40,85,116,0.10);
  border-radius: 28px 28px 0 0;
  animation: cookieSlideUp 0.6s cubic-bezier(0.22,0.92,0.58,0.98) forwards;
}
@keyframes cookieSlideUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p { max-width: 430px; margin-bottom: 0; font-weight: 400; }
.cookie-banner .cookie-actions {
  display: flex;
  gap: 18px;
  margin-top: 10px;
}
.cookie-banner button {
  padding: 10px 22px;
  border-radius: 14px;
  border: none;
  font-size: 1rem;
  font-family: 'Montserrat',Arial,Helvetica,sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.cookie-banner .accept {
  background: #68B99A;
  color: #fff;
}
.cookie-banner .accept:hover {
  background: #6fd1ad;
  color: #1B4229;
}
.cookie-banner .reject {
  background: #fff;
  color: #285574;
  border: 2px solid #68B99A;
}
.cookie-banner .reject:hover {
  background: #F2E9DE;
}
.cookie-banner .settings {
  background: none;
  color: #68B99A;
  border: 2px solid #68B99A;
}
.cookie-banner .settings:hover {
  background: #F2E9DE;
  color: #285574;
}

@media (max-width: 610px) {
  .cookie-banner {
    flex-direction: column;
    padding: 18px 11px 16px 12px;
    border-radius: 20px 20px 0 0;
  }
  .cookie-banner .cookie-actions {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }
  .cookie-banner p { max-width: 100%; }
}

/* ===== COOKIE PREFERENCES MODAL ===== */
.cookie-modal {
  background: #FAF8F5;
  color: #285574;
  border-radius: 28px;
  box-shadow: 0 0 44px 0 rgba(40,85,116,0.22);
  padding: 38px 22px 28px 22px;
  font-size: 1rem;
  width: 95vw;
  max-width: 410px;
  z-index: 251;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cookie-modal h4 {
  font-size: 1.12rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #285574;
  margin-bottom: 8px;
  font-weight: 600;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1rem;
  margin-bottom: 14px;
  color: #1B4229;
}
.cookie-modal input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-right: 5px;
  accent-color: #68B99A;
}
.cookie-modal .modal-actions {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  width: 100%;
}
.cookie-modal .modal-actions button {
  padding: 9px 18px;
  border-radius: 14px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  background: #68B99A;
  color: #fff;
  transition: background 0.15s, color 0.15s;
}
.cookie-modal .modal-actions button.cancel {
  background: #fff;
  border: 2px solid #68B99A;
  color: #285574;
}
.cookie-modal .modal-actions button.cancel:hover {
  background: #F2E9DE;
}
.cookie-modal .modal-actions button.save:hover {
  background: #285574;
  color: #fff;
}

/* ============
   FOOTER
   ============ */
footer {
  background: #204135;
  color: #F2E9DE;
  padding: 40px 18px 26px 18px;
  border-radius: 26px 26px 0 0;
  margin-top: 60px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}
footer nav a {
  color: #F2E9DE;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  opacity: 0.95;
  transition: color 0.18s, opacity 0.17s;
  padding: 0 8px;
}
footer nav a:hover, footer nav a:focus {
  color: #68B99A;
  text-decoration: underline;
  opacity: 1;
}
footer .text-section {
  max-width: 650px;
  text-align: center;
  margin: 0 auto;
  color: #F9F6F2;
  font-size: 1rem;
  letter-spacing: 0.03em;
}

/* =============
   RESPONSIVE DESIGN
   ============= */
@media (max-width: 991px) {
  .container {
    max-width: 98vw;
    padding-left: 8px;
    padding-right: 8px;
  }
  .section {
    padding: 24px 8px;
    border-radius: 16px;
  }
  footer {
    padding: 24px 8px 18px 8px;
    border-radius: 12px 12px 0 0;
  }
  h1 { font-size: 2.0rem; }
  h2 { font-size: 1.4rem; }
}
@media (max-width: 768px) {
  body { font-size: 15px; }
  .card, .testimonial-card {
    max-width: 100%;
    border-radius: 14px;
    padding: 18px 9px;
  }
  .section {
    margin-bottom: 36px;
    padding: 18px 1px;
    border-radius: 10px;
  }
  .text-section { max-width: 100%; }
}

/* =============
   ANIMATIONS & MICRO-INTERACTIONS
   ============= */
a, button, .card, .testimonial-card {
  transition: box-shadow 0.2s, background 0.2s, color 0.16s, border-color 0.18s, transform 0.1s;
}
.card:hover, .testimonial-card:hover {
  transform: translateY(-3px) scale(1.02);
}
.button-primary:active, .button-secondary:active {
  transform: scale(0.98);
}

/* =============
   MISC UTILS / HELPER CLASSES
   ============= */
.hide { display: none !important; }
.flex-row { display: flex; flex-direction: row; }
.flex-col { display: flex; flex-direction: column; }
.align-center { align-items: center; }
.gap-20 { gap: 20px; }

/* ==============
   TYPOGRAPHY EXTRAS
   ============== */
.display {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 2.9rem;
  font-weight: 700;
  line-height: 1.1;
  color: #285574;
  margin-bottom: 20px;
}
.subtitle {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  color: #68B99A;
  margin-bottom: 14px;
}

/* =======
   FORMS (For future/optional use)
   ======= */
input, textarea, select {
  border: 2px solid #F2E9DE;
  border-radius: 12px;
  padding: 11px 13px;
  background: #fff;
  color: #243227;
  font-size: 1rem; line-height: 1.5;
  box-shadow: 0 1px 4px 0 rgba(40,85,116,0.045);
  margin-bottom: 16px;
  transition: border-color 0.16s, box-shadow 0.18s;
}
input:focus, textarea:focus, select:focus {
  border-color: #68B99A;
  box-shadow: 0 3px 12px 0 rgba(104,185,154, 0.08);
}

/* ======
   ACCESSIBILITY
   ====== */
:focus { outline: 2px solid #68B99A; outline-offset: 2px; }
::-webkit-input-placeholder { color: #A4B6A9; }
::-moz-placeholder { color: #A4B6A9; }
:-ms-input-placeholder { color: #A4B6A9; }
::-ms-input-placeholder { color: #A4B6A9; }
::placeholder { color: #A4B6A9; }

/* =============
   ORGANIC SHAPES DECORATIVE
   ============= */
.section::after {
  content: '';
  position: absolute;
  top: -28px; right: -45px;
  width: 160px; height: 110px;
  background: rgba(40,85,116,0.05);
  border-radius: 84% 56% 80% 44%/50% 44% 60% 74%;
  z-index: 0;
}

/* Add organic shadow beneath some cards */
.card, .testimonial-card {
  box-shadow: 0 4px 24px 0 rgba(104,185,154,0.10);
}

/* ===================
   END OF CSS
   =================== */
