/* 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 {
  height: 100%;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  background-color: #F5F7FA;
  color: #234171;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
}
*, *:before, *:after {
  box-sizing: inherit;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 20px;
  padding-left: 0;
}
ul li, ol li {
  margin-bottom: 8px;
}
img {
  max-width: 100%;
  height: auto;
  border: 0;
}
figure {
  margin: 0;
}
a {
  color: #234171;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #406440;
  text-decoration: underline;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', Garamond, serif;
  margin-bottom: 16px;
  color: #234171;
  line-height: 1.25;
}
h1 { font-size: 2.5rem; font-weight: 700; }
h2 { font-size: 2rem; font-weight: 700; }
h3 { font-size: 1.5rem; font-weight: 600; }
h4 { font-size: 1.25rem; font-weight: 600; }
h5, h6 { font-size: 1rem; font-weight: 600; }
p { margin-bottom: 16px; }
strong { font-weight: 700; color: #234171; }

/******** BRAND/NATURE ORGANIC COLORS & FONTS ********/
:root {
  --color-primary: #234171;
  --color-secondary: #F5F7FA;
  --color-accent: #D1A956;
  --color-organic-green: #406440;
  --color-earth: #836445;
  --color-earth-light: #ede7df;
  --color-shadow: rgba(35, 65, 113, 0.07);
}

/***************** LAYOUT CONTAINERS *****************/
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 32px;
  background-color: var(--color-secondary);
  box-shadow: 0 4px 28px var(--color-shadow);
}
/*********** FLEX COMPONENTS ACC. TO SPECS ***********/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 26px var(--color-shadow);
  margin-bottom: 20px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.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: center;
  gap: 20px;
  background: #fff;
  border-radius: 22px;
  padding: 32px 26px 26px 26px;
  box-shadow: 0 8px 30px var(--color-shadow);
  border-left: 6px solid var(--color-organic-green);
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.2s;
}
.testimonial-card:after {
  content: '';
  opacity: 0.09;
  width: 78px;
  height: 78px;
  position: absolute;
  right: 18px;
  top: 16px;
  z-index: 0;
  pointer-events: none;
}
.testimonial-meta {
  color: var(--color-organic-green);
  font-weight: 600;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 24px;
}
/********* TABLES FOR PRICING *********/
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 28px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 24px var(--color-shadow);
}
table th, table td {
  padding: 18px 18px;
  border-bottom: 1px solid #ede7df;
  font-family: 'Open Sans', Arial, sans-serif;
}
table th {
  background: var(--color-earth-light);
  color: var(--color-organic-green);
  font-weight: 700;
  text-align: left;
  font-size: 1.08rem;
  border-bottom: 2px solid var(--color-organic-green);
}
table tr:last-child td {
  border-bottom: none;
}
/******************** HEADER ********************/
header {
  background: #fff;
  box-shadow: 0 2px 18px var(--color-shadow);
  border-radius: 0 0 28px 28px;
  width: 100%;
  z-index: 100;
  position: relative;
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
}
nav > a img {
  height: 44px;
  width: auto;
  display: block;
}
nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
  align-items: center;
}
nav ul li {
  margin: 0;
}
nav ul li a {
  color: var(--color-primary);
  font-family: 'Open Sans', Arial, sans-serif;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 1rem;
  transition: background 0.14s, color 0.16s;
}
nav ul li a:hover {
  background: var(--color-earth-light);
  color: var(--color-organic-green);
}
.btn-primary {
  display: inline-block;
  background: var(--color-organic-green);
  color: #fff;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  padding: 11px 32px;
  border-radius: 48px 36px 44px 64px/36px 56px 68px 32px;
  font-size: 1.14rem;
  letter-spacing: 0.01em;
  box-shadow: 0 3px 14px rgba(64, 100, 64, 0.08);
  border: none;
  outline: none;
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.18s, color 0.2s;
  margin-left: 10px;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--color-accent);
  color: var(--color-primary);
  box-shadow: 0 6px 24px rgba(209,169,86,0.09);
  text-decoration: none;
}
/* HERO, FEATURES, SERVICES, CTA section spacing */
main > section {
  margin-bottom: 60px;
  padding: 40px 0 40px 0;
  background: transparent;
}
/* Features/Services lists */
section ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  list-style: none !important;
  padding: 0;
  margin: 20px 0 16px 0;
}
section ul li {
  background: #fff;
  box-shadow: 0 4px 21px var(--color-shadow);
  border-radius: 18px;
  padding: 20px 18px 16px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  flex: 1 1 290px;
  min-width: 220px;
  max-width: 340px;
  position: relative;
}
section ul li img {
  width: 32px;
  height: 32px;
  margin-bottom: 5px;
  opacity: 0.92;
}
/* For nested text lists (about/team), reset background */
.text-section ul, .footer-contact ul {
  background: none;
  box-shadow: none;
  padding: 0 0 0 16px;
}
.text-section ul li, .footer-contact ul li {
  background: none;
  box-shadow: none;
  padding: 0;
  margin: 0 0 8px 0;
  min-width: unset;
  max-width: unset;
}
/****************** CTA SECTIONS ********************/
main > section:last-of-type, .cta-section {
  background: var(--color-organic-green);
  color: #fff;
  border-radius: 32px;
  margin-bottom: 0;
}
main > section:last-of-type h2,
main > section:last-of-type p,
main > section:last-of-type a {
  color: #fff;
}
main > section:last-of-type .btn-primary {
  background: #fff;
  color: var(--color-organic-green);
}
main > section:last-of-type .btn-primary:hover {
  background: var(--color-accent);
  color: #234171;
}
/*********************** FOOTER **********************/
footer {
  background: var(--color-primary);
  color: #fff;
  padding: 44px 0 26px 0;
  width: 100%;
  border-radius: 32px 32px 0 0;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}
footer a {
  color: #fff;
  font-weight: 600;
  transition: color 0.16s;
}
footer a:hover {
  color: var(--color-accent);
}
footer ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
}
footer ul li {
  margin-bottom: 0;
}
.footer-contact {
  font-size: 1rem;
  margin-top: 8px;
}
.footer-contact a { color:#D1A956; }

/*********** RESPONSIVE STYLES (MOBILE-FIRST) ***********/
@media (max-width: 1020px) {
  .container {
    max-width: 880px;
  }
  section ul {
    gap: 18px;
  }
}
@media (max-width: 768px) {
  html { font-size: 100%; }
  .container {
    max-width: 97vw;
    padding: 0 8px;
  }
  nav ul {
    display: none;
  }
  .btn-primary {
    margin-left: 0;
    width: 100%;
    text-align: center;
  }
  .section, main > section {
    padding: 22px 4px !important;
    margin-bottom: 38px;
    border-radius: 20px;
  }
  .content-wrapper {
    gap: 12px;
  }
  section ul {
    flex-direction: column;
    gap: 12px;
  }
  section ul li {
    min-width: unset;
    max-width: unset;
    width: 100%;
    padding: 14px 8px 12px 8px;
    font-size: 1rem;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .testimonial-card {
    padding: 18px 8px 18px 8px;
  }
  .faq-list {
    gap: 14px;
  }
  table th, table td {
    padding: 10px 6px;
    font-size: 0.98em;
  }
  footer .container {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
    padding: 0 10px;
  }
}
@media (max-width: 500px) {
  h1 { font-size: 1.65rem; }
  h2 { font-size: 1.25rem; }
  .testimonial-card {
    border-left: 3px solid var(--color-organic-green);
    border-radius: 9px;
  }
}
/***************** MOBILE MENU STYLES ***************/
.mobile-menu-toggle {
  display: none;
  font-size: 2.3rem;
  color: var(--color-organic-green);
  background: transparent;
  border: none;
  cursor: pointer;
  margin-left: auto;
  z-index: 102;
  padding: 7px 14px 7px 10px;
  border-radius: 14px;
  outline: none;
  transition: background 0.13s;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: #eaefeb;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  width: 94vw;
  max-width: 390px;
  height: 100vh;
  background: #fff;
  box-shadow: -3px 0 30px rgba(35,65,113, 0.30);
  z-index: 1001;
  transform: translateX(110%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.38s cubic-bezier(.69,.08,.36,1), opacity 0.25s;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2rem; 
  background: none;
  border: none;
  padding: 18px;
  color: #234171;
  cursor: pointer;
  border-radius: 8px;
  margin-right: 8px;
  margin-top: 5px;
  transition: background 0.13s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #eaefeb;
  color: var(--color-organic-green);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  margin-top: 18px;
  padding: 0 28px 0 22px;
  gap: 10px;
}
.mobile-nav a {
  color: var(--color-primary);
  font-size: 1.18rem;
  display: block;
  padding: 13px 7px 12px 9px;
  border-radius: 12px;
  transition: background 0.16s, color 0.16s;
  margin-bottom: 1px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-earth-light);
  color: var(--color-organic-green);
  text-decoration: none;
}
@media (max-width: 1200px) {
  .mobile-menu-toggle {
    display: block;
  }
  nav ul, nav .btn-primary {
    display: none !important;
  }
}
@media (min-width: 1201px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
  nav ul, nav .btn-primary {
    display: flex;
  }
}
/******* DARK OVERLAY for mobile menu ******/
body.mobile-menu-open:after {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(35, 65, 113, 0.21);
  z-index: 1000;
  transition: opacity 0.22s;
  pointer-events: all;
}
body:not(.mobile-menu-open):after {
  display: none;
}
/**** ORGANIC SHADOWS ********/
.card, .testimonial-card, section ul li {
  box-shadow: 0 4px 24px var(--color-shadow);
}
/**** ORGANIC SHAPES & NATURAL TEXTURES (SUBTLE) ****/
.section, .card, .testimonial-card, section ul li {
  border-radius: 22px 44px 30px 18px/28px 30px 23px 37px;
}
/********* ORGANIC ACCENTS ON TITLES & DIVIDERS *********/
h2, h3 {
  position: relative;
  z-index: 1;
}
h2:after, h3:after {
  content: '';
  display: block;
  width: 52px;
  height: 5px;
  border-radius: 8px;
  background: var(--color-accent);
  margin-top: 2px;
  opacity: 0.23;
}
/******* MICRO-INTERACTIONS & TRANSITIONS *******/
.btn-primary, nav ul li a, .mobile-nav a {
  transition: background 0.16s, color 0.21s, box-shadow 0.17s;
}
.card, .testimonial-card, section ul li, table {
  transition: box-shadow 0.21s, background 0.20s;
}
.card:hover,
section ul li:hover,
.testimonial-card:hover {
  box-shadow: 0 8px 38px var(--color-shadow), 0 1.5px 9px #e2ebd9;
}
/*********** ACCESSIBILITY & CONTRAST ************/
.testimonial-card, .testimonial-card p, .testimonial-meta, .testimonial-card strong, .testimonial-card span {
  color: #234171 !important;
  background: #fff !important;
}
.testimonial-card span {
  color: var(--color-accent);
  font-size: 1.1em;
}
/************** FAQ STYLES **********/
.faq-list h3 {
  font-size: 1.11rem;
  color: var(--color-organic-green);
  margin-bottom: 4px;
}
.faq-list p {
  font-size: 1rem;
  color: #234171;
  margin-bottom: 0;
}
/******** LOCATION/MAP ********/
.location-map {
  margin-top: 18px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 18px;
}
.location-map .text-section {
  background: var(--color-earth-light);
  border-radius: 14px;
  padding: 18px 13px;
  font-size: 1rem;
  color: var(--color-organic-green);
}
/********* Organic ICONS in lists ******/
section ul li img {
  filter: grayscale(0%) contrast(0.95) hue-rotate(-15deg) saturate(0.9) brightness(1.08);
}
/************* COOKIE CONSENT BANNER ****************/  
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fff;
  color: #234171;
  border-top: 4px solid var(--color-organic-green);
  box-shadow: 0 -2px 20px rgba(35,65,113,0.09);
  padding: 22px 12px;
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 24px;
  z-index: 3000;
  width: 100vw;
  font-size: 1rem;
  animation: slideInCookie 0.5s;
}
@keyframes slideInCookie {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  flex: 1;
  margin: 0;
}
.cookie-banner button {
  margin-left: 10px;
}
.cookie-banner .btn-cookie {
  background: var(--color-organic-green);
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 26px 17px 23px 31px/18px 23px 21px 27px;
  padding: 8px 24px;
  margin-right: 5px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.19s;
}
.cookie-banner .btn-cookie:hover, .cookie-banner .btn-cookie:focus {
  background: var(--color-accent);
  color: #234171;
}
.cookie-banner .btn-cookie-settings {
  background: none;
  border: 2px solid var(--color-organic-green);
  color: var(--color-organic-green);
  padding: 8px 18px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.17s, color 0.18s;
}
.cookie-banner .btn-cookie-settings:hover, .cookie-banner .btn-cookie-settings:focus {
  background: var(--color-organic-green);
  color: #fff;
}
@media (max-width: 640px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 6px;
  }
  .cookie-banner button {
    margin-left: 0 !important;
  }
}
/************* COOKIE SETTINGS MODAL *************/
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(35,65,113,0.26);
  z-index: 4000;
  pointer-events: all;
  animation: fadeInCookieModal 0.34s;
}
@keyframes fadeInCookieModal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  position: fixed;
  bottom: 0; left: 50%;
  transform: translateX(-50%) translateY(110%);
  background: #fff;
  box-shadow: 0 8px 36px rgba(35, 65, 113, 0.23);
  border-top: 5px solid var(--color-organic-green);
  border-radius: 34px 34px 0 0/ 54px 54px 0 0;
  width: 95vw;
  max-width: 420px;
  z-index: 4010;
  padding: 26px 22px 22px 22px;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.37s cubic-bezier(.68,.14,.39,1), opacity 0.29s;
}
.cookie-modal.open {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: all;
}
.cookie-modal h3 {
  font-size: 1.26rem;
  margin-bottom: 12px;
  color: var(--color-organic-green);
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #eae8e2;
  font-size: 1rem;
}
.cookie-modal .cookie-category:last-child {
  border-bottom: none;
}
.cookie-modal .cookie-switch {
  width: 46px; height: 24px;
  background: #e9ece5;
  border-radius: 16px;
  position: relative;
  margin-left: 12px;
  transition: background 0.17s;
}
.cookie-modal .cookie-switch input[type="checkbox"] {
  opacity: 0;
  width: 46px;
  height: 24px;
  position: absolute;
  left: 0; top: 0;
  margin: 0;
  cursor: pointer;
}
.cookie-modal .cookie-switch .slider {
  position: absolute;
  top: 2px; left: 2px;
  width: 20px; height: 20px;
  background: var(--color-organic-green);
  border-radius: 50%;
  transition: left 0.19s, background 0.19s;
}
.cookie-modal .cookie-switch input[type="checkbox"]:checked + .slider {
  left: 24px;
  background: var(--color-accent);
}
.cookie-modal .cookie-switch.disabled, .cookie-modal .cookie-switch.disabled .slider {
  background: #ecebe3 !important;
  cursor: not-allowed;
}
.cookie-modal-footer {
  margin-top: 18px;
  display: flex;
  flex-direction: row;
  gap: 16px;
  justify-content: flex-end;
}
.cookie-modal-footer button {
  margin: 0;
}
/******** FORM STYLES (in other possible pages) ********/
input, select, textarea {
  font-family: inherit;
  background: #fafcf8;
  border: 1.7px solid var(--color-earth-light);
  border-radius: 11px;
  font-size: 1rem;
  padding: 8px 14px;
  color: #234171;
  margin-bottom: 16px;
  outline: none;
  transition: border 0.17s;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--color-organic-green);
}
/********* TYPOGRAPHY HIERARCHY & SPACING *********/
.text-section {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 1.03rem;
}
.text-section p, .text-section ul {
  margin-bottom: 10px;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
section ul li,
table th,
table td {
  /* Organic typography rhythm */
  margin-top: 0px;
}
/********** SEPARATORS (optional) ***********/
hr {
  border: none;
  border-bottom: 2px dashed var(--color-earth);
  margin: 32px 0 !important;
  opacity: 0.3;
}
/********** THANK-YOU & CONFIRMATION **********/
.confirmation, .thanks, .thank-you-section {
  background: var(--color-earth-light);
  border-radius: 24px;
  padding: 36px 22px;
  text-align: center;
  margin: 0 auto 32px auto;
  box-shadow: 0 4px 21px var(--color-shadow);
  color: var(--color-organic-green) !important;
  font-size: 1.12em;
}
/*************** Z-INDEX STAGING **************/
header, .mobile-menu, .cookie-banner, .cookie-modal, .cookie-modal-overlay {
  z-index: 300;
}
.cookie-modal, .cookie-modal-overlay {
  z-index: 4010;
}
/**** Hide visually for a11y ****/
.visually-hidden {
  position: absolute!important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px,1px,1px,1px);
  white-space: nowrap;
  border: 0;
}
/*************** PRINT **************/
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal, .cookie-modal-overlay { display: none !important; }
  .container { max-width: 100vw; }
}
