/* ========================================================
   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;
  background: #fff;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-size: 16px;
  color: #1C2F23;
  background: #F2EFE6;
  min-height: 100vh;
  overflow-x: hidden;
}
ul, ol {
  padding-left: 1.5em;
  margin-bottom: 1.5em;
}
li {
  margin-bottom: 0.5em;
}
a {
  color: #225D4A;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #183F2E;
  text-decoration: underline;
}
img {
  max-width: 100%;
  height: auto;
  display: inline-block;
  vertical-align: middle;
}

/* Headings & Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Georgia, serif;
  color: #225D4A;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 28px;
  letter-spacing: -1.2px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 24px;
}
h3 {
  font-size: 1.375rem;
  margin-bottom: 18px;
}
h4 {
  font-size: 1.125rem;
  margin-bottom: 14px;
}
p {
  margin-bottom: 18px;
  font-family: 'Georgia', Times, serif;
  color: #2A4233;
  font-size: 1.05rem;
  letter-spacing: 0.1px;
}
strong, b {
  font-weight: 700;
}

/* Containers & Layouts */
.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 24px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 12px 0 rgba(50,80,60,0.06);
}

/* Spacing & Utility */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-2 { margin-top: 16px; }
.mb-2 { margin-bottom: 16px; }
.gap-24 { gap: 24px; }

/* Flexbox Layout Patterns */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 8px 0 rgba(50,80,60,0.07);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  flex: 1 1 320px;
  min-width: 280px;
  max-width: 385px;
}
.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;
  align-items: center;
  gap: 20px;
  background: #F5F8F3;
  border-radius: 16px;
  box-shadow: 0 1px 6px 0 rgba(34,43,33,0.08);
  padding: 20px 28px;
  margin-bottom: 24px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  padding: 20px 20px 16px 20px;
  border-radius: 14px;
  box-shadow: 0 2px 10px 0 rgba(35,93,74,0.05);
}

/* HERO & SECTIONS */
.hero {
  background: linear-gradient(90deg, #F2EFE6 75%, #C3D1C6 100%);
  padding: 58px 0 58px 0;
  margin-bottom: 60px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
}
.hero h1 { color: #225D4A; }
.hero p {
  color: #4D665A;
  font-size: 1.25rem;
}

/* FEATURES GRID STYLE */
.features {
  background: #FAF9F5;
  border-radius: 20px;
  margin-bottom: 60px;
  padding: 40px 0;
}
.feature-grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 10px;
  justify-content: space-between;
}
.feature {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px 0 rgba(35,93,74,0.06);
  padding: 28px 22px 18px 22px;
  text-align: left;
  min-width: 220px;
  max-width: 350px;
}
.feature img {
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
  display: block;
}
.feature h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: #225D4A;
}
.feature p {
  font-size: 1rem;
  color: #4D665A;
  margin-bottom: 0;
}

/* Testimonials */
.testimonials .testimonial-list {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.testimonial-card {
  flex: 1 1 260px;
  min-width: 270px;
  max-width: 380px;
  border: 1px solid #E1EDE6;
  font-size: 1rem;
  box-shadow: 0 4px 14px rgba(35,93,74,0.07);
  background: #fff;
  color: #24382A;
  align-items: flex-start;
  flex-direction: column;
}
.testimonial-card p {
  color: #1C2F23;
  font-style: italic;
  margin-bottom: 8px;
}
.testimonial-author {
  color: #4D665A;
  font-family: 'Georgia', serif;
  font-size: 1rem;
}

/* FAQ Styles */
.faq dl {
  width: 100%;
  margin-bottom: 0;
}
.faq dt {
  margin-top: 18px;
  font-family: 'Montserrat', Georgia, serif;
  font-size: 1.125rem;
  color: #225D4A;
  font-weight: 600;
}
.faq dd {
  margin-left: 0;
  margin-bottom: 10px;
  margin-top: 6px;
  color: #375140;
  font-size: 1rem;
}

/* BUTTONS & LINKS */
.cta-btn,
button.cta-btn,
input[type="submit"].cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  background: #225D4A;
  color: #fff;
  border: none;
  padding: 14px 32px;
  border-radius: 36px;
  box-shadow: 0 2px 10px 0 rgba(35,93,74,0.07);
  cursor: pointer;
  transition: background 0.25s, box-shadow 0.2s, color 0.2s;
  margin-top: 6px;
  text-decoration: none;
  outline: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: #183F2E;
  color: #fff;
  box-shadow: 0 4px 16px -2px rgba(34,93,74,0.13);
}

/* HEADER & NAVIGATION */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 10px 0 rgba(65,80,65,0.02);
  padding: 0;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 86px;
}
header img {
  height: 48px;
  margin-right: 18px;
}
nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
}
nav a {
  font-family: 'Montserrat', Georgia, serif;
  color: #225D4A;
  font-size: 1rem;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 3px;
  transition: background 0.13s, color 0.18s;
}
nav a:hover, nav a:focus {
  background: #C3D1C6;
  color: #1C2F23;
  text-decoration: none;
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #225D4A;
  cursor: pointer;
  margin-left: 18px;
  z-index: 90;
  transition: color 0.2s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  color: #183F2E;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(242,239,230, 0.96);
  box-shadow: 0 0 40px 10px rgba(40,60,50,0.04);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100vw);
  transition: transform 0.32s cubic-bezier(.65,.05,.36,1);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.25rem;
  color: #225D4A;
  align-self: flex-end;
  margin: 32px 28px 16px 0;
  cursor: pointer;
  z-index: 2100;
  transition: color 0.2s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: #183F2E;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding: 24px 36px 12px 36px;
  width: 100%;
}
.mobile-nav a {
  color: #183F2E;
  font-size: 1.35rem;
  font-family: 'Montserrat', Georgia, serif;
  padding: 10px 2px;
  border-radius: 4px;
  font-weight: 600;
  letter-spacing: 0.1px;
  transition: background 0.14s, color 0.17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #C3D1C6;
  color: #192E23;
  text-decoration: none;
}

/* FOOTER */
footer {
  background: #225D4A;
  color: #fff;
  padding: 42px 0 36px 0;
  font-size: 1rem;
  margin-top: 60px;
}
footer .container {
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
footer nav {
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  color: #fff;
}
footer nav a {
  color: #C3D1C6;
  font-size: 1rem;
  transition: color 0.14s;
  display: inline-block;
}
footer nav a:hover,
footer nav a:focus {
  color: #fff;
  background: none;
  text-decoration: underline;
}
.footer-contact {
  color: #FAF9F5;
  font-size: 1rem;
  font-family: 'Georgia', serif;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.footer-contact img {
  width: 18px;
  height: 18px;
  margin-right: 6px;
  vertical-align: middle;
  opacity: 0.97;
}
.footer-contact span {
  display: inline-flex;
  align-items: center;
  margin-bottom: 5px;
}

/* CARDS & LISTS */
.card-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
ul, ol {
  margin-bottom: 20px;
}
ul li, ol li {
  font-size: 1rem;
  color: #273B2A;
  line-height: 1.7;
}

/* CTA SECTION */
.cta {
  background: #225D4A;
  padding: 50px 0;
  border-radius: 22px;
  text-align: center;
}
.cta .content-wrapper {
  align-items: center;
}
.cta p {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 14px;
}
.cta .cta-btn {
  background: #fff;
  color: #225D4A;
}
.cta .cta-btn:hover, .cta .cta-btn:focus {
  background: #C3D1C6;
  color: #1C2F23;
}

/* Special Styles for Cookie Banner */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fff;
  color: #225D4A;
  border-top: 2px solid #C3D1C6;
  box-shadow: 0 -4px 30px 0 rgba(35,93,74,0.07);
  width: 100%;
  z-index: 4000;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
  padding: 18px 24px;
  font-size: 1rem;
  transition: transform 0.32s cubic-bezier(.55,.05,.36,1);
  animation: bannerFadeIn 0.8s;
}
@keyframes bannerFadeIn {
  0% { transform: translateY(60px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner__text {
  flex: 1 1 200px;
  color: #225D4A;
  font-family: 'Georgia', serif;
  font-size: 1rem;
}
.cookie-banner__buttons {
  display: flex;
  gap: 14px;
}
.cookie-btn {
  border: none;
  border-radius: 32px;
  font-size: 1rem;
  font-family: 'Montserrat', Georgia, serif;
  padding: 10px 22px;
  margin: 0 2px;
  transition: background 0.18s, color 0.2s, box-shadow 0.13s;
  cursor: pointer;
}
.cookie-btn--accept {
  background: #225D4A;
  color: #fff;
}
.cookie-btn--accept:hover, .cookie-btn--accept:focus {
  background: #183F2E;
  color: #fff;
}
.cookie-btn--reject {
  background: #fff;
  color: #225D4A;
  border: 1px solid #C3D1C6;
}
.cookie-btn--reject:hover,
.cookie-btn--reject:focus {
  background: #F5F8F3;
  color: #183F2E;
}
.cookie-btn--settings {
  background: #C3D1C6;
  color: #225D4A;
}
.cookie-btn--settings:hover, .cookie-btn--settings:focus {
  background: #A1B7A8;
  color: #192E23;
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  z-index: 4200;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(34,93,74, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s cubic-bezier(.65,.05,.36,1);
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 36px 0 rgba(34,93,74,0.13);
  max-width: 500px;
  padding: 38px 34px 28px 34px;
  color: #225D4A;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: modalPopIn 0.32s;
}
@keyframes modalPopIn {
  0% { transform: scale(0.9) translateY(16px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.4rem;
  color: #225D4A;
  margin-bottom: 18px;
}
.cookie-modal-category {
  margin-bottom: 13px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-modal-category label {
  font-family: 'Montserrat', Georgia, serif;
  color: #273B2A;
  font-size: 1.06rem;
  font-weight: 600;
}
.cookie-modal-category input[type="checkbox"] {
  accent-color: #225D4A;
  width: 20px;
  height: 20px;
}
.cookie-modal-category--essential label {
  color: #aaa;
  font-style: italic;
}
.cookie-modal-footer {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

/* Responsive Design - Mobile First */
@media (max-width: 1200px) {
  .container { max-width: 93vw; }
  .feature-grid { gap: 16px; }
  .testimonials .testimonial-list { gap: 18px; }
}
@media (max-width: 992px) {
  .feature-grid { flex-direction: column; gap: 20px; }
  .features .content-wrapper { gap: 18px; }
  .testimonials .testimonial-list { flex-direction: column; gap: 18px; }
  .faq dl { max-width: 96vw; }
}
@media (max-width: 820px) {
  .features { padding: 28px 0; }
  .section { padding: 28px 8px;}
  header .container {
    height: auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  nav { gap: 20px; font-size: 0.98rem; }
}
@media (max-width: 768px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.45rem; }
  .container { padding: 0 8px; }
  .hero { padding: 34px 0; }
  .section { margin-bottom: 38px; padding: 26px 4px; }
  .footer-contact { font-size: 0.98rem; }
  .feature { max-width: 98vw; }
  .feature-grid { flex-direction: column; }
  .card-container, .content-grid, .testimonials .testimonial-list, .card-list {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header nav, header .cta-btn {
    display: none;
  }
  .mobile-menu { display: flex; }
}
@media (max-width: 480px) {
  .container { padding: 0 2px; }
  .section { margin-bottom: 22px; padding: 12px 2px; }
  .feature, .card {
    padding: 16px 8px;
    min-width: 0;
  }
  .testimonial-card {
    padding: 12px 8px;
    font-size: 0.96rem;
  }
  footer {
    padding: 20px 0 20px 0;
    font-size: 0.97rem;
  }
  .footer-contact { gap: 3px; }
}

/* Animations for Focus & Interactions */
a, .cta-btn, .cookie-btn, .mobile-menu-toggle, .mobile-menu-close, .cookie-modal-category input[type="checkbox"] {
  outline: none;
  transition: box-shadow 0.13s, border 0.11s;
}
a:focus, .cta-btn:focus, .cookie-btn:focus, .mobile-menu-toggle:focus, .mobile-menu-close:focus {
  box-shadow: 0 0 0 3px #C3D1C6;
}

/* Hide cookie banner when not active (optional class) */
.cookie-banner--hidden { display: none !important; }

/* Utility Z-indexes */
header { z-index: 500; position: relative; }
.mobile-menu { z-index: 2000; }
footer { z-index: 400; position: relative; }
.cookie-banner { z-index: 4000; }
.cookie-modal-overlay { z-index: 4200; }

/* Miscellaneous */
.text-section {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 10px 0 rgba(50,80,60,0.05);
  padding: 34px 20px 30px 20px;
  margin-bottom: 32px;
}
.text-section > ul, .text-section > ol {
  margin-bottom: 22px;
  padding-left: 28px;
}
.text-section > ul li, .text-section > ol li {
  font-size: 1.05rem;
}
.text-section > h3 {
  color: #225D4A;
  font-size: 1.18rem;
  font-weight: 700;
  margin-top: 16px;
}

/* Ensure all cards content is readable */
.card, .testimonial-card, .feature, .feature-item {
  color: #1C2F23;
}

/* End of style.css */
