/* =======================================================
   CSS RESET & BASE 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;
  font-family: 'Roboto', Arial, sans-serif;
  background: #F2F2F2;
}
* {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  color: #263030;
  background: #f7f6f3;
  line-height: 1.6;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #23492d;
  text-decoration: underline;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #E6B168;
  text-decoration: none;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 20px;
}
li {
  margin-bottom: 12px;
}
strong {
  color: #204060;
  font-weight: bold;
}

/* ================================
   TYPOGRAPHY
   ================================ */
h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #1d2b20;
  font-weight: 700;
  letter-spacing: 0.5px;
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 20px;
  line-height: 1.15;
}
h2 {
  font-size: 1.8rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.subheadline {
  font-family: 'Roboto', Arial, sans-serif;
  color: #496345;
  font-size: 1.2rem;
  margin-bottom: 20px;
}
p {
  margin-bottom: 16px;
  color: #334d30;
  font-size: 1rem;
}


/* ================================
   CONTAINERS & STRUCTURE
   ================================ */
.container {
  width: 100%;
  max-width: 980px;
  padding: 0 16px;
  margin: 0 auto;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ===============================
   SECTION STYLES (Nature Organic)
   =============================== */
section {
  background: #F8F7F4;
  border-radius: 32px 32px 38px 18px/38px 18px 32px 32px;
  box-shadow: 0 2px 14px 0 rgb(82 78 50 / 8%);
  margin-bottom: 60px;
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
}
section:nth-child(even) {
  background: #f3ede3;
}

@media (max-width: 640px) {
  section {
    border-radius: 18px;
    margin-bottom: 34px;
    padding: 24px 6px;
  }
}

/* ================================
   MAIN FLEX LAYOUTS
   ================================ */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  border-radius: 24px 30px 18px 32px/32px 18px 24px 30px;
  box-shadow: 0 1px 10px rgba(78,63,30,0.07);
  background: #fff;
  padding: 28px 24px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover, .card:focus {
  box-shadow: 0 8px 32px rgba(42,83,44,0.23);
  transform: translateY(-4px) scale(1.01);
  z-index: 2;
}

.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
  }
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonial-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  background: #F2F7F3;
  border-radius: 24px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 1px 10px rgba(78,63,30,0.09);
  border-left: 6px solid #6CB28E;
  font-family: 'Roboto', Arial, sans-serif;
}
.testimonial-card p {
  color: #18381f;
  font-size: 1.13rem;
  margin-bottom: 0;
  font-weight: 400;
}
.testimonial-card span {
  color: #345622;
  opacity: 0.78;
  font-size: 1rem;
  margin-left: 6px;
  font-style: italic;
}
@media (max-width: 600px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
  }
}

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

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: #F2F7F3;
  border-radius: 16px;
  padding: 18px 16px;
  margin-bottom: 6px;
  box-shadow: 0 1px 6px rgba(60,72,53,0.07);
  border-left: 5px solid #6CB28E;
  transition: box-shadow 0.2s;
}
.faq-item:hover {
  box-shadow: 0 6px 16px rgba(60,72,53,0.12);
}

/* =================================
   HEADER & NAVIGATION
   ================================= */
header {
  background: #FEFBF6;
  box-shadow: 0 2px 16px rgba(48,64,32,0.07);
  padding: 0 0 0 0;
  position: sticky;
  top: 0;
  z-index: 30;
}
header .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
  min-height: 80px;
}
header img {
  height: 48px;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}
header nav a {
  font-size: 1rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  text-decoration: none;
  color: #23492d;
  padding: 8px 10px;
  border-radius: 12px;
  transition: background 0.18s, color 0.2s;
}
header nav a:hover, header nav a:focus {
  background: #E6B16820;
  color: #204060;
}
.cta-button {
  display: inline-block;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  background: #6CB28E;
  color: #fff;
  border: none;
  border-radius: 22px 30px 18px 22px/30px 18px 22px 30px;
  padding: 12px 30px;
  margin-left: 12px;
  font-size: 1.14rem;
  letter-spacing: 0.2px;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(44,62,30,0.11);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.13s, transform 0.18s, box-shadow 0.18s;
}
.cta-button:hover, .cta-button:focus {
  background: #204060;
  color: #fff;
  box-shadow: 0 6px 18px rgba(24,58,31,0.17);
  transform: translateY(-2px) scale(1.04);
}

@media (max-width: 900px) {
  header .container nav {
    gap: 12px;
  }
}
@media (max-width: 720px) {
  header nav {
    display: none;
  }
  .cta-button {
    display: none;
  }
}

/* =====================================
   MOBILE BURGER MENU & MOBILE NAV
   ===================================== */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.4rem;
  color: #23492d;
  cursor: pointer;
  border-radius: 14px;
  height: 48px;
  width: 56px;
  transition: background 0.14s;
  position: absolute;
  right: 14px;
  top: 15px;
  z-index: 33;
}
@media (max-width: 720px) {
  .mobile-menu-toggle { display: block; }
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: #F8F7F4ee;
  box-shadow: 0 2px 24px rgba(32,60,32,0.09);
  z-index: 103;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 0 0 0;
  transform: translateX(-100vw);
  transition: transform 0.38s cubic-bezier(0.72,0.18,0.22,1);
  opacity: 0.99;
  overflow-y: auto;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: #23492d;
  position: absolute;
  top: 16px;
  right: 24px;
  z-index: 300;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background 0.15s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #E6B16830;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding: 80px 36px 36px 36px;
  margin-top: 10px;
}
.mobile-nav a {
  padding: 16px 12px;
  font-size: 1.13rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #18381f;
  width: 100%;
  text-decoration: none;
  background: none;
  border-radius: 12px;
  transition: background 0.17s, color 0.13s;
  font-weight: 600;
  box-sizing: border-box;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #6CB28E18;
  color: #204060;
}

body.mobile-menu-open {
  overflow: hidden;
  touch-action: none;
}

/* ============================
   FOOTER
   ============================ */
footer {
  background: #ffffff;
  padding: 40px 0 0 0;
  border-top: 3px solid #E6B168;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 20px;
  min-height: 120px;
}
footer img {
  height: 38px;
}
footer nav {
  display: flex;
  gap: 18px;
}
footer nav a {
  font-size: 1rem;
  color: #204060;
  text-decoration: none;
  transition: color 0.16s;
}
footer nav a:hover, footer nav a:focus {
  color: #E6B168;
}
footer .text-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
footer .text-section li {
  font-size: 0.95rem;
  color: #496345;
  display: flex;
  gap: 8px;
  align-items: center;
}
footer .text-section img {
  height: 19px;
  width: 19px;
  opacity: 0.8;
  margin-right: 3px;
}
@media (max-width: 850px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding-bottom: 14px;
  }
}

/* ============================
   UTILITY: ORGANIC/ARTISTIC SHAPES
   ============================ */
.organicsvg {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

/* ============================
   ORGANIC BUTTONS
   ============================ */
button,
.button, .cta-button {
  outline: none;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  border: none;
}
button:focus-visible,
.cta-button:focus-visible {
  outline: 2px solid #204060;
  outline-offset: 3px;
}

/* ============================
   RESPONSIVE DESIGN
   ============================ */
@media (max-width: 600px) {
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.25rem; }
  .container { padding: 0 8px; }
  section { padding: 15px 4px; }
  .card { padding: 16px 9px; }
}

/* ============================
   COOKIE CONSENT BANNER
   ============================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  width: calc(100% - 24px);
  max-width: 430px;
  background: #fffbe9;
  border-radius: 20px 24px 22px 14px/24px 18px 20px 22px;
  box-shadow: 0 -2px 18px rgba(50,60,32,0.11);
  padding: 24px 22px 22px 22px;
  z-index: 5000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  border: 2px solid #E6B168;
  font-family: 'Roboto', Arial, sans-serif;
  opacity: 1;
  transition: transform 0.45s cubic-bezier(0.85,0.1,0.17,1), opacity 0.18s;
}
.cookie-banner.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}
.cookie-banner h4 {
  font-size: 1.14rem;
  color: #18381f;
  margin-bottom: 0px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}
.cookie-banner p {
  color: #204060;
  font-size: 0.99rem;
  margin-bottom: 4px;
}
.cookie-actions {
  display: flex;
  gap: 12px;
  width: 100%;
  justify-content: flex-end;
}
.cookie-btn {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  border-radius: 16px;
  padding: 8px 20px;
  border: none;
  font-size: 1rem;
  background: #E6B168;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.16s, color 0.13s, box-shadow 0.13s;
  box-shadow: 0 1px 6px rgba(110,128,84,0.09);
}
.cookie-btn.reject {
  background: #204060;
}
.cookie-btn.settings {
  background: #6CB28E;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #204060;
  color: #fffbe9;
}
@media (max-width: 520px) {
  .cookie-banner {
    max-width: 99vw;
    left: 4px;
    right: 4px;
    transform: translateY(120%);
    border-radius: 14px;
    padding: 12px 7px 10px 13px;
  }
  .cookie-actions { gap: 5px; }
}

/* ============================
   COOKIE PREFERENCES MODAL
   ============================ */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(44,52,28,0.30);
  z-index: 5100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #f8f7f2;
  border-radius: 22px 30px 18px 30px/30px 18px 22px 24px;
  box-shadow: 0 2px 30px rgba(50,50,30,0.13);
  padding: 32px 38px;
  min-width: 335px;
  max-width: 98vw;
  z-index: 5200;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  border: 2px solid #E6B168;
  font-family: 'Roboto', Arial, sans-serif;
  opacity: 1;
  animation: fadeInModal 0.6s cubic-bezier(0.67,0,0.36,1);
}
@keyframes fadeInModal {
  from { transform: translateY(100px) scale(0.95); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal h3 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #18381f;
  font-size: 1.23rem;
  margin-bottom: 6px;
}
.cookie-modal ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookie-modal li {
  font-size: 1rem;
  color: #23492d;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #F2F7F3;
  border-radius: 10px;
  padding: 9px 15px;
}
.cookie-toggle {
  margin-left: auto;
}
.switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 24px;
}
.switch input {display:none;}
.slider {
  position: absolute;
  cursor: pointer;
  background: #E6B168;
  border-radius: 16px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: background 0.2s;
}
.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(38,56,32,0.10);
  transition: transform 0.2s;
}
.switch input:checked + .slider {
  background: #6CB28E;
}
.switch input:checked + .slider:before {
  transform: translateX(16px);
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 10px;
}
.cookie-modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.3rem;
  color: #23492d;
  cursor: pointer;
  border-radius: 7px;
  padding: 2px 6px;
  transition: background 0.15s;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  background: #E6B16833;
}
@media (max-width: 500px) {
  .cookie-modal {
    padding: 22px 7vw 18px 10vw;
    min-width: 0;
  }
}

/* ===========================
   NATURE-ORGANIC ART DETAILS
   =========================== */
/* (Optional) paint blobs/greens using background if needed on section/card - see border-radius settings above. */

/* ===========================
   SPACING & UTILITY
   =========================== */
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.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; padding: 20px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* ===========================
   ANIMATIONS
   =========================== */
section, .card, .testimonial-card, .cta-button, .card, .cookie-banner, .faq-item {
  transition: box-shadow 0.19s, background 0.15s, transform 0.18s, border 0.23s;
}

/* ===========================
   SCROLLBAR (subtle organic)
   =========================== */
::-webkit-scrollbar { width: 10px; background: #f7f6f3; }
::-webkit-scrollbar-thumb { background: #e8e2d1; border-radius: 8px; }

/*=============================
   FORMS (general fallback)
=============================*/
input, textarea, select {
  border-radius: 12px 16px 16px 12px/16px 18px 14px 18px;
  border: 1.2px solid #B2C7AC;
  padding: 8px 12px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  background: #F8F7F4;
  margin-bottom: 14px;
  box-shadow: none;
  transition: border 0.13s, background 0.13s;
}
input:focus, textarea:focus, select:focus {
  outline: 2px solid #6CB28E;
  border-color: #6CB28E;
  background: #f2f7f2;
}

/* ==========
   PRINT (optional)
   ===========*/
@media print {
  header, footer, nav, .cookie-banner, .cookie-modal-overlay { display: none !important; }
  section { box-shadow: none; background: none; }
}
