/* CSS RESET & NORMALIZATION */
html { box-sizing: border-box; }
*, *::before, *::after { box-sizing: inherit; margin: 0; padding: 0; border: 0; font: inherit; vertical-align: baseline; }
html, body { width: 100%; height: 100%; }
body { min-height: 100vh; background: #F4E6D1; font-family: 'Roboto', Arial, sans-serif; color: #15334A; font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
img, svg { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; transition: color 0.2s; }
h1, h2, h3, h4, h5, h6 { font-family: 'Merriweather', Georgia, serif; font-weight: 700; margin-bottom: 16px; color: #15334A; letter-spacing: 0.01em; }
h1 { font-size: 2.5rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.3rem; margin-bottom: 12px; }
p { font-size: 1rem; margin-bottom: 16px; }
strong { font-weight: 700; }
em { font-style: italic; }

:root {
  --primary: #15334a;
  --secondary: #F4E6D1;
  --accent: #A05C12;
  --success: #3C6E37;
  --warning: #C77C30;
  --bg: #faf7f1;
  --card-bg: #FFFFFF;
  --card-shadow: 0 4px 32px rgba(33, 53, 39, 0.09);
  --radius: 22px;
  --radius-sm: 14px;
  --organic0: #EFE6D8;
  --organic1: #DAE4DB;
  --organic2: #D9CBB2;
  --organic3: #B0C9A9;
  --organic4: #61856D;
}

body {
  background: var(--secondary);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/*************************************
 * HEADER & NAVIGATION
 *************************************/
header {
  width: 100%;
  background: var(--bg);
  box-shadow: 0 4px 20px rgba(97, 133, 109, 0.08);
  border-bottom-left-radius: var(--radius);
  border-bottom-right-radius: var(--radius);
  margin-bottom: 24px;
}
header .container {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  padding: 18px 20px 18px 0;
}
header nav {
  display: flex;
  gap: 24px;
}
header nav a {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: var(--primary);
  padding: 5px 0;
  transition: color 0.18s;
  position: relative;
}
header nav a:hover,
header nav a:focus {
  color: var(--accent);
}

.cta-button {
  background: var(--accent);
  color: #fff;
  font-family: 'Merriweather', serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  border-radius: 32px 15px 22px 32px/38px 18px 22px 22px;
  box-shadow: 0 2px 8px rgba(160, 92, 18, 0.09);
  padding: 13px 32px;
  font-size: 1.13rem;
  cursor: pointer;
  border: none;
  outline: none;
  transition: background 0.22s, transform 0.16s;
  position: relative;
}
.cta-button:hover,
.cta-button:focus {
  background: var(--success);
  transform: translateY(-2px) scale(1.04);
}

/****** BURGER NAV (mobile only) ******/
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 22px;
  right: 24px;
  z-index: 2200;
  background: var(--card-bg);
  box-shadow: 0 2px 12px rgba(97, 133, 109, 0.10);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 2rem;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  cursor: pointer;
  border: none;
  transition: background 0.14s, color 0.15s;
  outline: none;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: var(--accent);
  color: #fff;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--bg);
  box-shadow: 0 8px 36px rgba(33, 53, 39, 0.13);
  transform: translateX(-100%);
  transition: transform 0.45s cubic-bezier(.71,0,.24,1);
  z-index: 3000;
  padding: 34px 40px 24px 32px;
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  align-self: flex-end;
  margin-bottom: 18px;
  background: transparent;
  border: none;
  font-size: 2rem;
  color: var(--primary);
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus { color: var(--accent); }
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.mobile-nav a {
  color: var(--primary);
  font-size: 1.2rem;
  font-family: 'Merriweather', serif;
  padding: 12px 0;
  border-radius: 18px;
  transition: background 0.13s,color 0.16s;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: left;
  width: 100%;
  touch-action: manipulation;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--organic3);
  color: var(--accent);
}

/********** MAIN LAYOUT & SECTION SPACING **********/
main {
  background: none;
}
.section, section {
  background: transparent;
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: var(--radius);
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 260px;
  min-width: 250px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  padding: 28px 26px;
  transition: box-shadow 0.18s, transform 0.2s;
}
.card:hover,
.card:focus-within {
  box-shadow: 0 8px 30px rgba(160, 92, 18, 0.13), var(--card-shadow);
  transform: translateY(-4px) scale(1.025);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--organic0);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  margin-bottom: 20px;
  box-shadow: 0 1px 8px rgba(181, 201, 176, 0.10);
}

/* Feature/Highlight List Icons */
.content-wrapper ul li img {
  width: 30px;
  height: 30px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--organic3);
  box-shadow: 0 1px 6px rgba(97,133,109,.11);
  padding: 4px;
  display: inline-block;
  vertical-align: middle;
}
/**** List styling under organic theme ****/
.content-wrapper ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 12px;
}
.content-wrapper li {
  background: var(--organic0);
  border-radius: 15px 30px 22px 18px/20px 28px 14px 19px;
  padding: 13px 18px;
  color: var(--primary);
  font-size: 1.04rem;
  line-height: 1.6;
  box-shadow: 0 0.5px 6px rgba(97,133,109,0.10);
  margin-bottom: 8px;
  align-items: center;
  display: flex;
  gap: 10px;
}
/*************************************
 * TESTIMONIALS
 *************************************/
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  border-radius: var(--radius-sm);
  background: #fff;
  color: #15334A;
  box-shadow: 0 4px 20px rgba(160, 92, 18, 0.07), 0 1px 8px rgba(97,133,109,0.13);
  font-size: 1.08rem;
  margin-bottom: 22px;
  max-width: 520px;
}
.testimonial-card p {
  margin-bottom: 0;
  font-family: 'Merriweather', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: #15334A;
}
.testimonial-card span {
  font-size: 0.98rem;
  color: var(--accent);
  font-family: 'Roboto', Arial, sans-serif;
}
.testimonial-card div {
  color: var(--success);
  font-size: 1.12rem;
  font-family: 'Roboto', Arial, sans-serif;
  letter-spacing: 0.1em;
}
/*************************************
 * FOOTER
 *************************************/
footer {
  width: 100%;
  margin-top: 32px;
  background: var(--organic3);
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
  box-shadow: 0 -3px 18px rgba(97,133,109,.07);
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 32px 20px 20px 20px;
}
footer nav {
  display: flex;
  gap: 18px;
}
footer nav a {
  color: var(--primary);
  font-size: 1.02rem;
  font-family: 'Roboto', Arial, sans-serif;
  padding: 6px 8px;
  border-radius: 10px;
  transition: background 0.13s, color 0.14s;
}
footer nav a:hover,
footer nav a:focus {
  background: var(--accent);
  color: #fff;
}
footer img {
  height: 46px;
  margin-right: 12px;
}

/*************************************
 * Responsive Design (Mobile-First)
 *************************************/
@media (max-width: 1100px) {
  .container { max-width: 100%; }
}
@media (max-width: 900px) {
  header .container, footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  header nav { gap: 16px; flex-wrap: wrap; }
  .cta-button { font-size: 1rem; padding: 12px 20px; }
}
@media (max-width: 768px) {
  .container {
    padding-left: 10px; padding-right: 10px;
  }
  .section, section {
    margin-bottom: 40px;
    padding: 24px 8px;
  }
  header .container, footer .container {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 12px 8px 12px;
  }
  header nav,
  footer nav { flex-wrap: wrap; }
  /* Hide desktop nav, show burger */
  header nav,
  .cta-button { display: none; }
  .mobile-menu-toggle { display: flex; }
  .mobile-menu { padding: 36px 18px 18px 18px; }
  .content-grid, .card-container {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .card {
    min-width: 0;
    padding: 20px 12px;
  }
  .testimonial-card {
    max-width: 100%;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}
@media (max-width: 520px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.13rem; }
  .container { padding: 0 5px; }
  .section, section { padding: 16px 3px; }
  .cta-button {
    font-size: 0.97rem;
    padding: 11px 12px;
    border-radius: 18px 10px 16px 18px;
  }
}

/***********************
 * Micro-interactions & Effects
 ***********************/
.card, .cta-button, .testimonial-card, .feature-item {
  transition: box-shadow 0.16s, transform 0.15s, background 0.13s;
}
.card:active, .cta-button:active, .feature-item:active {
  transform: scale(0.99);
}

/* Spacing between all content cards/sections ensured
   by individual .section, .card, .feature-item rules */

/*************************************
 * COOKIE CONSENT BANNER & MODAL
 *************************************/
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--organic2);
  color: #15334A;
  box-shadow: 0 -2px 16px rgba(160,92,18,0.13);
  z-index: 3500;
  padding: 20px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 22px;
  font-size: 1.05rem;
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
  animation: fadeIn 0.5s;
}
@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(50px); }
  100% { opacity: 1; transform: translateY(0); }
}
.cookie-banner button {
  cursor: pointer;
  border: none;
  background: var(--accent);
  color: #fff;
  font-size: 1rem;
  padding: 9px 20px;
  border-radius: 18px;
  margin-right: 8px;
  transition: background 0.17s, color 0.15s;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
}
.cookie-banner button:last-child { margin-right: 0; }
.cookie-banner .reject-btn {
  background: #15334a;
  color: #fff;
}
.cookie-banner .settings-btn {
  background: var(--organic4);
  color: #fff;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--success);
  color: #fff;
}

/* Cookie Settings Modal Overlay */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(21,51,74,0.41);
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInModal 0.38s;
}
@keyframes fadeInModal {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: var(--secondary);
  padding: 36px 26px 30px 26px;
  border-radius: var(--radius);
  box-shadow: 0 12px 60px rgba(21,51,74,0.17);
  max-width: 430px;
  width: 95vw;
  display: flex;
  flex-direction: column;
  gap: 19px;
  font-size: 1.05rem;
}
.cookie-modal .modal-title {
  font-family: 'Merriweather', serif;
  font-size: 1.16rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--primary);
}
.cookie-modal .modal-close {
  position: absolute;
  top: 16px; right: 20px;
  background: transparent;
  border: none;
  font-size: 1.6rem;
  color: var(--primary);
  cursor: pointer;
}
.cookie-modal .cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--organic0);
  padding: 12px 14px;
  border-radius: 12px;
  margin-bottom: 6px;
}
.cookie-modal .cookie-category input[type="checkbox"] {
  width: 20px; height: 20px;
  accent-color: var(--success);
}
.cookie-modal .cookie-category input[disabled] { opacity: 0.55; }
.cookie-modal .cookie-category label {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.06rem;
  color: var(--primary);
  font-weight: 500;
}
.cookie-modal .cookie-modal-btns {
  display: flex;
  gap: 15px;
  margin-top: 16px;
}
.cookie-modal .cookie-modal-btns button {
  font-size: 1rem;
  padding: 9px 20px;
  border-radius: 18px;
  font-family: 'Roboto', Arial, sans-serif;
  border: none;
  cursor: pointer;
  background: var(--accent);
  color: #fff;
  transition: background 0.15s;
}
.cookie-modal .cookie-modal-btns button:hover, .cookie-modal .cookie-modal-btns button:focus {
  background: var(--success);
}

/*************************************
 * Miscellaneous UI Details (Nature Organic)
 *************************************/
/* Organic shape accent */
.section, .card, .feature-item, .testimonial-card, .cookie-modal, .cookie-banner {
  border-radius: 22px 38px 27px 15px/32px 20px 22px 35px;
  border: none;
}

/* Natural textures and accents with shadow/hues */
.section {
  background: var(--organic1);
  box-shadow: 0 3px 21px rgba(160, 92, 18, 0.06);
}
.card {
  border: 1.5px solid var(--organic3);
  background: var(--card-bg) url('data:image/svg+xml;utf8,<svg width="100%25" height="100%25" viewBox="0 0 180 70" fill="none" xmlns="http://www.w3.org/2000/svg"><ellipse opacity="0.04" cx="90" cy="35" rx="90" ry="35" fill="%2361856D"/></svg>') repeat;
  background-size: 220% 140%;
}
.testimonial-card {
  border: 1.5px solid var(--organic3);
}
.feature-item {
  border: 1.5px solid var(--organic2);
}

/* Botanically inspired hover ring */
.card:hover:after, .feature-item:hover:after {
  content: "";
  display: block;
  position: absolute;
  left: 10px; top: 7px;
  width: 85%; height: 80%;
  border-radius: 30% 70% 68% 32%/40% 80% 20% 60%;
  border: 2px dashed var(--organic4);
  opacity: 0.04;
  pointer-events: none;
}

/***********************
 * Accessibility focus styles
 ***********************/
a:focus,
button:focus,
.cta-button:focus { outline: 2px solid var(--accent); outline-offset: 2px; }

/*************************************
 * Overlay scroll lock when modals are open
 *************************************/
body.modal-open {
  overflow: hidden;
}

/*************************************
 * Hide cookie/modal by default
 *************************************/
.cookie-banner,
.cookie-modal-overlay { display: none; }
.cookie-banner.active { display: flex; }
.cookie-modal-overlay.active { display: flex; }

/************************
 * Utility Flex Container Classes
 ************************/
.flex-row { display: flex; flex-direction: row; }
.flex-col { display: flex; flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.align-center { align-items: center; }
.align-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-20 { gap: 20px; }
.gap-30 { gap: 30px; }
.gap-10 { gap: 10px; }

/*************************************
 * END
 *************************************/
