/* ======================= CSS RESET & BASES ======================= */
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 {
  scroll-behavior: smooth;
  box-sizing: border-box;
  background: #FAF7F2;
}
body {
  line-height: 1.6;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  background: #FAF7F2;
  color: #354032;
  min-height: 100vh;
  word-break: break-word;
}
*, *:before, *:after { box-sizing: inherit; }
img { max-width: 100%; height: auto; border: 0; display: block; }
ul, ol { padding-left: 1.5em; margin-top: 8px; margin-bottom: 16px; }
a { color: #3176D3; text-decoration: none; transition: color .2s; }
a:hover, a:focus { color: #2e5c38; text-decoration: underline; }
strong, b { font-weight: 700; }
button, input, select, textarea { font-family: inherit; font-size: 100%; }
button { cursor: pointer; background: none; border: none; }

/* ===================== BRAND VARIABLES FOR FALLBACK =============== */
:root {
  --primary: #3176D3;
  --secondary: #F7B731;
  --accent: #fff;
  --nature-green: #568A53;
  --nature-brown: #AC8C5D;
  --nature-beige: #FAF7F2;
  --nature-leaf: #95C08D;
  --nature-earth: #E6D2B5;
  --nature-wood: #E4B290;
  --text-dark: #354032;
  --text-light: #fff;
  --radius-xl: 40px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;
  --shadow-card: 0 4px 20px rgba(140, 120, 85, 0.10), 0 1.5px 7px rgba(86, 138, 83, 0.08);
  --shadow-elevated: 0 6px 24px rgba(86, 138, 83, 0.14); 
  --shadow-button: 0 1.5px 6px rgba(49,118,211,0.07);
  --transition: .2s cubic-bezier(.58,.11,.36,1.29);
}

/* =================== TYPOGRAPHY & HEADINGS ====================== */
@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@600;700&family=Montserrat:wght@400;500;700&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Baloo 2', 'Montserrat', Arial, sans-serif;
  color: var(--nature-green);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -.5px;
  margin-bottom: 16px;
}
h1 { font-size: 2.6rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.4rem; color: var(--primary); margin-bottom: 12px; }
h4, h5, h6 { font-size: 1.1rem; color: var(--nature-green); }
p, li, ul, ol { font-size: 1rem; color: var(--text-dark); font-family: inherit; }
p { margin-bottom: 14px; }
@media (min-width: 768px) {
  h1 { font-size: 3.2rem; }
  h2 { font-size: 2.3rem; }
}

/* ======================= LAYOUT STRUCTURE ====================== */
.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 18px;
  max-width: 1140px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: transparent;
  border-radius: var(--radius-md);
}
.text-section {
  background: var(--nature-earth);
  border-radius: var(--radius-md);
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
  border-radius: var(--radius-md);
  position: relative;
}
@media (max-width: 768px) {
  .section {
    padding: 30px 8px 32px 8px;
    margin-bottom: 38px;
  }
  .container {
    padding: 0 5px;
  }
}

/* ================== NATURE ORGANIC ELEMENTS ===================== */
section {
  position: relative;
}
section::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: -28px; top: -22px;
  width: 164px; height: 82px;
  background: radial-gradient(ellipse 60% 36% at 30% 60%, rgba(149,192,141,0.18) 55%,transparent 100%);
  border-radius: 80px 100px 64px 98px / 90px 70px 70px 60px;
  pointer-events: none;
  display: block;
}
section:nth-child(even)::before {
  left: unset;
  right: -36px; top: -18px;
  transform: scaleX(-1);
}

/* ======================== HEADER & NAVIGATION ======================= */
header {
  background: #fff;
  box-shadow: 0 2px 16px rgba(140,120,85,.06);
  position:sticky;
  top:0;
  z-index: 200;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 0;
  position: relative;
}
header img {
  height: 56px;
  width: auto;
}
nav {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}
nav a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--nature-green);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}
nav a.cta {
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius-xl);
  font-weight: 700;
  font-size: 1.08rem;
  padding: 8px 28px;
  margin-left: 16px;
  box-shadow: var(--shadow-button);
  letter-spacing:.2px;
}
nav a.cta:hover, nav a.cta:focus {
  background: var(--nature-green);
  color: #fff;
  box-shadow: 0 2px 8px rgba(49,118,211,0.13);
}
nav a:hover, nav a:focus {
  color: var(--secondary);
  background: rgba(86,138,83,0.09);
}

/* Hide mobile menu toggle on desktop */
.mobile-menu-toggle { 
  display: none; 
  background: var(--nature-green); 
  color: #fff; 
  font-size: 2.1rem; 
  width: 48px; 
  height: 48px; 
  border-radius: 50%; 
  align-items:center; 
  justify-content:center;
  transition: background var(--transition);
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--secondary); color: var(--nature-green);
}

/* ======================== MOBILE MENU ======================== */
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0; bottom: 0; right: 0;
  background: rgba(250,247,242,0.99);
  z-index: 9999;
  transform: translateX(-100%);
  transition: transform .35s cubic-bezier(.77,0,.18,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.active {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  position: absolute;
  top: 17px; right: 20px;
  font-size: 2.3rem;
  color: var(--nature-green);
  background: #fff;
  border-radius: var(--radius-xl);
  width:48px; height:48px;
  display:flex;align-items:center;justify-content:center;
  box-shadow: 0 2px 7px 0 rgba(86,138,83,0.13);
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: var(--secondary);
  color: var(--nature-green);
}
.mobile-nav {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  align-items: flex-start;
}
.mobile-nav a {
  font-size: 1.2rem;
  color: var(--nature-green);
  padding: 16px 32px;
  border-radius: var(--radius-lg);
  transition: background var(--transition), color var(--transition);
  font-weight: 700;
  width: 100%;
  display: block;
}
.mobile-nav a.cta{
  background: var(--primary);
  color: #fff;
}
.mobile-nav a:hover,.mobile-nav a:focus {
  background: var(--nature-leaf);
  color: var(--text-dark);
}
@media (max-width: 1024px) {
  nav { display: none; }
  .mobile-menu-toggle { display: flex; }
}
@media (min-width: 1025px) {
  .mobile-menu { display: none !important; }
}

/* ================== HERO, FEATURES, CARDS, TESTIMONIALS ================== */
.feature-grid, .news-list, .card-container, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.news-list > div, .feature-grid > div, .card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 30px 22px 22px 24px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
  min-width: 220px;
  min-height: 137px;
}
.news-list > div:hover, .feature-grid > div:hover, .card:hover {
  box-shadow: var(--shadow-elevated);
  transform: translateY(-6px) scale(1.018);
}
@media (max-width: 768px) {
  .feature-grid, .news-list, .card-container, .content-grid {
    gap: 16px;
    flex-direction: column;
  }
  .news-list > div, .feature-grid > div, .card {
    min-width: unset;
    width: 100%;
    padding: 22px 12px;
  }
}

.text-image-section {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}

.card {
  margin-bottom: 20px;
  border-radius: var(--radius-md);
  background: var(--nature-beige);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

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

.testimonial-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  color: var(--text-dark);
}
.testimonial-card p { font-size: 1.1rem; color: #4d593f; }
.testimonial-card strong {
  font-weight: 700;
  font-size: 0.97rem;
  color: var(--nature-green);
  display: block;
  margin-top: 8px;
}
.testimonial-card img {
  margin-right: 4px;
  height: 26px;
  width: 26px;
}
@media (max-width: 768px) {
  .testimonial-card {
    flex-direction: column;
    gap: 10px;
    padding: 12px;
  }
}

/* =============== ORGANIC BUTTONS =============== */
.cta, .button, button, input[type=submit], .cookie-banner button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 32px;
  font-family: 'Baloo 2', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  border: none;
  border-radius: 34px 38px 27px 40px / 34px 29px 38px 40px;
  background: var(--nature-green);
  color: #fff;
  box-shadow: var(--shadow-button);
  transition: background var(--transition), color var(--transition), transform .11s;
  cursor: pointer;
  outline: none;
  margin-top: 8px;
  text-align: center;
}
.cta:hover, .button:hover, button:hover, .cookie-banner button:hover {
  background: var(--secondary);
  color: var(--nature-green);
  transform: translateY(-2.5px) scale(1.035);
}
.cta:active { background: var(--primary); }

/* =============== FORMS, INPUTS =============== */
input, textarea, select {
  border-radius: var(--radius-sm);
  border: 1.5px solid #d3cab9;
  padding: 11px 17px;
  font-size: 1rem;
  background: #fff;
  margin-bottom: 16px;
  color: var(--text-dark);
  transition: border .16s;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--nature-green);
}

/* =============== FOOTER =============== */
footer {
  background: var(--nature-brown);
  color: #fff;
  padding: 0;
}
footer .container {
  flex-direction: column;
  gap: 0;
  align-items: flex-start;
  padding: 40px 18px 18px 18px;
}
footer .content-wrapper {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 46px;
  width: 100%;
  background: none;
  color: #fff;
}
footer nav {
  flex-direction: column;
  gap: 3px;
}
footer nav a {
  color: #fff;
  opacity: .94;
  padding: 2px 0;
  font-size: 1rem;
}
footer nav a:hover { color: var(--secondary); }
footer img { height:38px;}
footer .contact-info {
  color: #fff;
  font-size: .99rem;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 0;
  margin-bottom: 0;
}
footer .copyright {
  width: 100%;
  text-align: left;
  color: #fff;
  font-size: .92rem;
  margin-top: 12px;
  opacity:.90;
}
@media (max-width: 950px) {
  footer .content-wrapper { flex-direction: column; gap:18px; align-items: flex-start;}
}
@media (max-width: 700px) {
  footer .container { padding: 24px 5px 10px 5px; }
  footer .content-wrapper { flex-direction: column; gap:11px; }
  footer nav { flex-direction: row; gap:11px; }
}

/* =============== CONTACT INFO LIST =============== */
.contact-info p, .contact-info {
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-info img {
  height: 22px;
  width: 22px;
  margin-right: 6px;
}

/* =========== MAP PLACEHOLDER (CONTACT PAGE) ========== */
.map {
  background: #e8ecef!important;
  border-radius: var(--radius-lg);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.11rem;
  min-height: 120px;
  margin: 6px 0 22px 0;
}

/* ======= COOKIES BANNER & MODAL ======== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  background: var(--nature-earth);
  border-top: 4px solid var(--nature-green);
  box-shadow: 0 -1.5px 24px 0 rgba(140,120,85,0.11);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  padding: 22px 28px;
  z-index: 11000;
  gap: 24px;
  font-size: 1rem;
  color: var(--text-dark);
  animation: slideup .48s cubic-bezier(.66,.16,.37,1.36);
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 13px;
  align-items: center;
}
.cookie-banner button {
  min-width: 110px;
  font-size: 1rem;
  padding: 9px 24px;
  margin-top: 0;
}
.cookie-banner .cookie-settings{
  background: var(--nature-wood);
  color: var(--nature-green);
}
.cookie-banner button.cookie-settings:hover{
  color: #fff;
  background: var(--nature-green);
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 8px;
    gap: 12px;
    font-size: .97rem;
  }
  .cookie-banner .cookie-actions {
    gap:6px; flex-wrap:wrap;
  }
}

@keyframes slideup {
  from { transform: translateY(60px); opacity:0; }
  to { transform: translateY(0); opacity:1; }
}

/* ============= COOKIE MODAL ============= */
.cookie-modal-overlay {
  position:fixed;
  z-index: 12000;
  inset:0;
  background:rgba(48,51,40,0.25);
  display: none;
  align-items: center;
  justify-content: center;
  transition: background .3s;
}
.cookie-modal-overlay.active {
  display: flex;
}
.cookie-modal {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 6px 30px 0 rgba(86,138,83,0.16);
  max-width: 360px;
  width:98vw;
  padding: 36px 24px 24px 24px;
  display: flex;
  flex-direction: column;
  gap:22px;
  position: relative;
}
.cookie-modal h3 {
  color: var(--nature-green);
  font-size: 1.37rem;
  margin-bottom: 10px;
}
.cookie-category {
  margin-bottom: 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
}
.cookie-category input[type=checkbox] {
  accent-color: var(--primary);
  width: 20px; height: 20px;
}
.cookie-close-modal {
  position: absolute;
  right: 13px; top: 13px;
  background: var(--nature-beige);
  color: var(--nature-green);
  font-size: 1.5rem;
  border-radius: 50%;
  width: 38px; height: 38px;
  display:flex;align-items:center;justify-content:center;
}
.cookie-close-modal:hover,.cookie-close-modal:focus { background: var(--secondary); color:var(--nature-green); }
.cookie-modal-btns {
  display: flex; gap:10px; margin-top: 14px;
}
.cookie-modal-btns button {
  width: 50%;
  font-size: 1rem;
  padding: 9px 0;
}

/* ============== RESPONSIVE TYPOGRAPHY & SPACING ========== */
@media (max-width: 540px) {
  h1 { font-size: 2rem}
  h2 { font-size: 1.35rem; }
}

/* ============== MISC UTILITY ============= */
.mb-0{margin-bottom:0!important;}.mt-0{margin-top:0!important;}
.mt-16{margin-top:16px;}
.hidden{display:none!important;}

/* ============== ANIMATIONS & MICRO-INTERACTIONS ============ */
.button, .cta, button, .cookie-banner button {
  transition: background var(--transition), color var(--transition), transform .12s;
}
.card, .feature-grid > div, .news-list > div, .testimonial-card {
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover, .feature-grid > div:hover, .news-list > div:hover, .testimonial-card:hover {
  box-shadow: var(--shadow-elevated); transform: translateY(-4px) scale(1.019);
}
nav a, .mobile-nav a { transition: background .13s, color .11s; }

/* ============== ORGANIC SHAPES ============== */
.card, .feature-grid > div, .news-list > div, .testimonial-card, .map, .cookie-modal, .cookie-banner {
  border-radius: 38px 28px 38px 28px / 30px 40px 28px 38px;
}

/* ============ VISUAL HIERARCHY & SPACING ============ */
section { z-index: 1; }
section > .container { z-index: 2; }

/* ============= TABLES (if any present on legal pages) ============= */
table { width: 100%; margin-bottom: 25px; background: #fff4dc; border-radius: var(--radius-md); overflow: hidden; border-collapse: collapse; }
th, td { padding: 11px 8px; border-bottom: 1px solid #eee4cc; }
th { background: var(--nature-earth); color: var(--nature-green); font-weight: 700; text-align: left; }

/* ============== FOCUS STYLES FOR ACCESSIBILITY ============ */
a:focus, .cta:focus, .button:focus, input:focus, textarea:focus, select:focus, .mobile-menu-toggle:focus, .mobile-menu-close:focus {
  outline: 2.5px solid var(--primary);
  outline-offset: 2.5px;
}

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