/* =============================================================
   CSS RESET & NORMALIZE (mobile-first, nature_organic aesthetics)
   ============================================================= */

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,
main, 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;
}

body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #1A334A;
  background-color: #F7F6F2; /* light natural background */
  line-height: 1.7;
  font-smooth: always;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*:focus {
  outline: 2px solid #9CBE81; /* soft green accent for accessibility */
  outline-offset: 2px;
}

a {
  color: #2F5233;
  text-decoration: none;
  transition: color 0.18s;
}
a:hover, a:focus {
  color: #355C40;
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  appearance: none;
}

ul, ol {
  list-style: none;
}

/* =======================================
   COLOR PALETTE (earth tones + branding)
   ======================================= */
:root {
  --brand-primary: #1A334A;      /* Brand blue/dark earth */
  --brand-secondary: #F3A712;    /* Warm accent (sun/earth) */
  --brand-accent: #FFFFFF;       /* Light accent */
  --earth-green: #6B8E4E;        /* Green accent */
  --earth-brown: #A2875A;        /* Soft brown */
  --earth-beige: #F7F6F2;        /* Paper/natural background */
  --deep-forest: #2F5233;        /* Deep nature green */
  --clay: #D1BFA3;               /* Light beige clay */
  --nature-shadow: rgba(42, 63, 25, 0.07);
  --organic-shadow: rgba(30,52,34,0.13);
  --card-border: #E4E2DC;
  --section-divider: #E5E8DF;
}

/* =======================
   TYPOGRAPHY SCALE
   ======================= */
h1, .h1 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 2.25rem; /* 36px */
  font-weight: 700;
  color: #1A334A;
  line-height: 1.1;
  margin-bottom: 18px;
  letter-spacing: -1px;
}

h2, .h2 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.7rem;  /* ~27px */
  font-weight: 600;
  color: #2F5233;
  margin-bottom: 16px;
  line-height: 1.15;
}

h3, .h3 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.21rem;  /* ~19px */
  font-weight: 600;
  color: #355C40;
  margin-bottom: 12px;
  line-height: 1.18;
}

h4, .h4 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.06rem;  /* ~17px */
  margin-bottom: 8px;
  color: #415C3C;
}

h5, h6 {
  font-weight: 500;
  margin-bottom: 6px;
}

p, li {
  font-size: 1rem; /* 16px */
  /* ample vertical rhythm */
  margin-bottom: 10px;
  color: #2F5233;
}

strong { font-weight: 600; color: #2F5233; }
.em { font-style: italic; }

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #F7F6F2;
  border-radius: 24px 24px 32px 32px/22px 22px 24px 24px;
  box-shadow: 0 3px 12px var(--nature-shadow);
}

.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.content-wrapper {
  width: 100%;
  max-width: 900px;
  align-self: center;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ================
   HEADER & NAV
   ================ */
header {
  width: 100%;
  background: #FFF8ED;
  border-bottom: 2px solid var(--section-divider);
  box-shadow: 0 2px 12px var(--organic-shadow);
  position: relative;
  z-index: 30;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  min-height: 70px;
}

.logo img {
  height: 44px;
  width: auto;
  display: block;
  margin-right: 18px;
}

nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: var(--deep-forest);
  background: none;
  border-radius: 16px;
  padding: 6px 14px;
  letter-spacing: 0.2px;
  transition: background 0.22s, color 0.16s;
}
nav a:hover, nav a:focus {
  background: var(--earth-green);
  color: #FFF;
}

.cta-primary {
  background: var(--earth-green);
  color: #FFF;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: 29px 23px 31px 21px/29px 29px 27px 23px; /* organic pill shape */
  padding: 12px 30px;
  margin-left: 16px;
  font-size: 1.11rem;
  transition: background 0.18s, box-shadow 0.24s, transform 0.12s;
  box-shadow: 0 2px 6px var(--nature-shadow);
  border: 2px solid var(--earth-green);
  cursor: pointer;
  text-align: center;
  display: inline-block;
}
.cta-primary:hover, .cta-primary:focus {
  background: #325C38;
  color: #FFF;
  transform: translateY(-2px) scale(1.035);
  box-shadow: 0 5px 16px rgba(130,163,117,0.14);
}

.cta-secondary {
  background: var(--brand-secondary);
  color: var(--brand-primary);
  border-radius: 16px 28px 12px 31px/14px 18px 28px 24px;
  padding: 10px 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  margin-top: 12px;
  margin-bottom: 5px;
  border: none;
  box-shadow: 0 2px 6px var(--nature-shadow);
  cursor: pointer;
  display: inline-block;
  transition: background 0.20s, color 0.16s, box-shadow 0.24s;
}
.cta-secondary:hover, .cta-secondary:focus {
  color: #2F5233;
  background: #FFD272;
  box-shadow: 0 6px 18px rgba(188,153,34,0.11);
}

.mobile-menu-toggle {
  font-size: 2rem;
  border: 2px solid var(--earth-green);
  color: var(--earth-green);
  background: #FFF;
  border-radius: 16px;
  padding: 3px 15px 4px 15px;
  display: flex;
  align-items: center;
  margin-left: 18px;
  transition: border-color 0.16s, background 0.18s;
  cursor: pointer;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--earth-green);
  color: #FFF;
  border-color: var(--deep-forest);
}

/* Hide mobile toggle by default on desktop */
.mobile-menu-toggle {
  display: none;
}

/* =====================================
   MOBILE NAVIGATION - Burger Overlay
   ===================================== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right:0; bottom: 0;
  background: #E7ECD8;
  z-index: 190;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100%);
  transition: transform 0.33s cubic-bezier(.66,.05,.32,.99);
  box-shadow: 6px 0 24px rgba(91,124,80,0.09);
}
.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.25rem;
  background: transparent;
  border: none;
  padding: 18px 19px 5px 19px;
  margin-top: 11px;
  margin-right: 3px;
  color: #355C40;
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.16s, color 0.14s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #CBD8B3;
  color: #18391F;
}

.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 18px 32px;
  gap: 17px;
}
.mobile-nav a {
  font-size: 1.22rem;
  padding: 11px 0;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 18px;
  color: #1A334A;
  font-weight: 600;
  background: none;
  width: 100%;
  display: block;
  transition: background 0.16s, color 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #CFE6B7;
  color: var(--earth-green);
}

/* ========================
   HERO SECTIONS
   ======================== */
.hero {
  background: linear-gradient(108deg, #E3E9D8 0%, #EEF5ED 100%);
  border-radius: 0 0 60px 60px/0 0 80px 90px;
  min-height: 300px;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  box-shadow: 0 2px 16px var(--nature-shadow);
}
.hero .container {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 0;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 14px;
}
.hero h1 {
  color: var(--brand-primary);
}

/* ==========================
   FLEX LAYOUT UTILITIES
   ========================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #FFF;
  border-radius: 24px;
  box-shadow: 0 3px 14px var(--nature-shadow);
}

.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;
}

/* ================
   FEATURE LISTS
   ================ */
.features ul, .about ul, .values ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 28px;
  margin-top: 16px;
  margin-bottom: 0;
}
.features li, .about ul li, .values ul li {
  background: #F1F7EC;
  color: #27422B;
  border-radius: 21px 17px 20px 14px/22px 18px 15px 19px;
  box-shadow: 0 2px 10px var(--nature-shadow);
  padding: 13px 19px 13px 15px;
  font-size: 1.01rem;
  min-width: 220px;
  max-width: 330px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 12px;
}
.features img, .about li img, .tips-grid img, .tip-item img {
  height: 31px;
  width: 31px;
  flex-shrink: 0;
  margin-right: 7px;
  border-radius: 50%;
}

.features h2 {
  margin-bottom: 0;
}

/* ===================
   SERVICES & CARDS
   =================== */
.services .service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 12px;
  justify-content: flex-start;
}
.service-card {
  background: #FFFFFF;
  border: 1.5px solid var(--card-border);
  border-radius: 27px 18px 29px 16px/20px 33px 18px 28px;
  box-shadow: 0 3px 12px var(--organic-shadow);
  flex: 1 1 215px;
  min-width: 205px;
  max-width: 320px;
  padding: 22px 20px 17px 23px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: transform 0.13s, box-shadow 0.2s;
  position: relative;
}
.service-card:hover, .service-card:focus {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 5px 20px rgba(107,142,78,0.13);
  border-color: #C8DBA7;
}
.service-card h3 {
  margin-bottom: 6px;
}
.service-card .price {
  font-size: 1.03rem;
  color: #6B8E4E;
  background: #F3FFF1;
  border-radius: 8px 16px 19px 10px/9px 19px 10px 21px;
  padding: 3px 10px 3px 9px;
  font-weight: 700;
  margin-top: 6px;
  align-self: flex-end;
}

.services .service-details {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service-detail {
  background: #F1F7EC;
  border: 1px solid var(--card-border);
  border-radius: 20px 12px 28px 15px/18px 20px 17px 26px;
  padding: 18px 18px 16px 18px;
  flex: 1 1 270px;
  min-width: 220px;
  max-width: 390px;
  margin-bottom: 20px;
}
.service-detail h3 { display: flex; align-items: center; gap: 10px; }
.service-detail .price {
  color: #325C38;
  background: #E7ECD8;
  border-radius: 9px 17px 6px 16px/9px 11px 15px 16px;
  padding: 2px 10px 2px 9px;
  font-weight: 600;
  font-size: .96rem;
  margin-left: 12px;
}
.service-detail ul {
  margin-top: 10px;
  margin-left: 0;
}
.service-detail li {
  color: #36503B;
  margin-bottom: 7px;
}

.course-table {
  width: 100%;
  margin-top: 14px;
  margin-bottom: 28px;
  border-collapse: collapse;
  background: #FAF9F5;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 2px 10px var(--nature-shadow);
}
.course-table th, .course-table td {
  padding: 14px 12px;
  text-align: left;
  border-bottom: 1px solid #E1E4D9;
  font-size: 0.97rem;
}
.course-table th {
  background: #EDF5E2;
  font-weight: 600;
  color: #295228;
}
.course-table tr:last-child td {
  border-bottom: none;
}

/* ================
   TESTIMONIALS
   ================ */
.testimonials {
  background: #F1F7EC;
  border-radius: 36px 36px 56px 59px/34px 38px 47px 44px;
  box-shadow: 0 3px 15px var(--nature-shadow);
  margin-bottom: 60px;
}
.testimonials .testimonial-card,
.team .testimonial-card {
  background: #FFF;
  border-radius: 22px 17px 26px 12px/17px 30px 14px 27px;
  margin-bottom: 20px;
  padding: 22px 22px 14px 22px;
  box-shadow: 0 1.5px 8px var(--nature-shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  max-width: 420px;
}
.testimonial-card p {
  color: #15311B;
  font-size: 1.08rem;
}
.testimonial-card .author {
  font-weight: 700;
  color: #547744;
  font-size: .95rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-top: 4px;
}

/* ====================
   FAQ SECTIONS
   ==================== */
.faq {
  background: #F7F6F2;
  padding: 40px 20px;
  border-radius: 28px 28px 40px 38px/28px 38px 23px 28px;
  box-shadow: 0 3px 11px var(--nature-shadow);
  margin-bottom: 60px;
}
.faq h2, .faq h3 {
  color: #1A334A;
  margin-bottom: 14px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 16px;
}
.faq-item {
  background: #FFF;
  border-radius: 13px 23px 21px 14px/18px 22px 14px 20px;
  box-shadow: 0 2px 8px var(--nature-shadow);
  padding: 18px 17px 12px 17px;
  margin-bottom: 12px;
}
.faq-item h3, .faq-item h4 {
  color: #1A334A;
  font-size: 1.03rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 5px;
}

/* ==============
   TIPS SECTION
   ============== */
.tips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 18px;
}
.tip-item {
  background: #FFFFFF;
  border-radius: 17px 23px 19px 15px/22px 14px 18px 24px;
  box-shadow: 0 2px 9px var(--nature-shadow);
  padding: 13px 19px 13px 17px;
  font-size: 1.01rem;
  min-width: 200px;
  max-width: 295px;
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: 'Roboto', Arial, sans-serif;
}
.practical-advice {
  margin: 0 0 10px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 32px;
}
.practical-advice li {
  background: #F3FFF1;
  border-radius: 11px 14px 15px 14px/16px 14px 12px 9px;
  padding: 8px 12px 8px 11px;
  margin-bottom: 7px;
  font-size: 1rem;
}
.do-and-dont {
  background: #E7ECD8;
  border-radius: 9px 19px 12px 17px/14px 16px 11px 14px;
  padding: 12px 18px 12px 16px;
  font-size: 1.06rem;
  margin-top: 13px;
}
.do-and-dont strong {
  color: #325C38;
}

/* ==================
   TEAM / ABOUT US
   ================== */
.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 17px 23px;
  margin-bottom: 20px;
}
.team-list li {
  background: #F1F7EC;
  color: #18391F;
  border-radius: 16px 12px 14px 21px/14px 20px 16px 22px;
  padding: 10px 16px;
  min-width: 220px;
}
.values ul {
  gap: 16px 28px;
}
.values ul li {
  min-width: 210px;
  background: #FAF9F5;
}

/* ============== 
   ABOUT SECTION
   ============== */
.about {
  background: #EEF5ED;
  border-radius: 38px 34px 16px 38px/22px 18px 24px 29px;
  box-shadow: 0 2px 11px var(--nature-shadow);
  margin-bottom: 60px;
}

/* ===============
   CONTACT/MAP
   =============== */
.contact ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 12px;
}
.map-location {
  background: #DCF1D6;
  border-radius: 16px 22px 8px 26px/13px 21px 15px 14px;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #27422B;
  font-style: italic;
  font-size: 1.01rem;
  padding: 15px;
  box-shadow: 0 1.5px 6px var(--nature-shadow);
}

/* =================
   LEGAL PAGES
   ================= */
.legal {
  background: linear-gradient(120deg, #EEF5ED 0%, #F7F6F2 100%);
  border-radius: 31px 38px 32px 41px/31px 18px 28px 34px;
  padding: 40px 20px;
  box-shadow: 0 2px 11px var(--nature-shadow);
  margin-bottom: 60px;
}
.legal ul {
  margin-left: 20px;
  margin-bottom: 8px;
}

/* ================
   CTA SECTION
   ================ */
.cta {
  background: #E3E9D8;
  border-radius: 31px 46px 44px 43px/40px 32px 38px 32px;
  box-shadow: 0 1.5px 8px var(--nature-shadow);
  margin-bottom: 60px;
  text-align: center;
}
.cta h2 {
  margin-bottom: 9px;
}
.cta a.cta-primary, .cta a.cta-secondary {
  margin: 16px 0 9px 0;
  display: inline-block;
}

/* ================
   FOOTER STYLES
   ================ */
footer {
  background: #F1F7EC;
  border-top: 2px solid var(--section-divider);
  box-shadow: 0 -2px 16px var(--nature-shadow);
  padding: 35px 0 24px 0;
  margin-top: 40px;
  width: 100%;
}
footer .container {
  flex-wrap: wrap;
  gap: 36px 46px;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
}
.footer-main-navigation, .footer-links {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-main-navigation a, .footer-links a {
  color: var(--deep-forest);
  font-size: 1rem;
  padding: 3.5px 0;
  border-radius: 9px;
  display: inline-block;
  transition: background 0.14s, color 0.14s;
}
.footer-main-navigation a:hover, .footer-links a:hover, .footer-main-navigation a:focus, .footer-links a:focus {
  background: #DCEFCA;
  color: #1A334A;
}
.footer-contact {
  color: #15311B;
  font-size: .98rem;
}
.newsletter-signup {
  background: #E7ECD8;
  border-radius: 16px 24px 18px 22px/22px 16px 21px 29px;
  padding: 13px 22px;
  box-shadow: 0 2px 8px var(--organic-shadow);
  margin-left: 6px;
}
.newsletter-signup h3 {
  margin-bottom: 6px;
}
.newsletter-signup a {
  margin-top: 7px;
  display: inline-block;
}
.social-media {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
}
.social-media a img {
  height: 28px;
  width: 28px;
  border-radius: 14px;
  box-shadow: 0 1px 4px rgba(107,142,78,0.07);
  background: #FFF;
  padding: 4px;
  transition: box-shadow 0.14s, background 0.16s;
}
.social-media a:hover img, .social-media a:focus img {
  background: #DCEFCA;
  box-shadow: 0 2px 12px rgba(107,142,78,0.17);
}

/* =================
   COOKIE BANNER
   ================= */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 300;
  background: #FFFFFF;
  box-shadow: 0 -3px 22px rgba(107,142,78,0.14);
  padding: 18px 18px 18px 20px;
  border-top: 2.5px solid #C8DBA7;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  font-size: 1rem;
  animation: cookieBannerSlideUp 0.44s cubic-bezier(.58,.44,.25,1.07);
}
@keyframes cookieBannerSlideUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 5px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  border-radius: 15px 19px 20px 13px/14px 15px 15px 11px;
  padding: 8px 22px;
  font-size: 1rem;
  font-weight: 600;
  margin-right: 11px;
  margin-bottom: 6px;
  box-shadow: 0 1px 6px var(--organic-shadow);
  cursor: pointer;
  transition: background 0.16s, color 0.16s, box-shadow 0.18s;
}
.cookie-banner .accept {
  background: var(--earth-green);
  color: #FFF;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #223D0E;
}
.cookie-banner .reject {
  background: #FFEDD0;
  color: #325C38;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #FFD272;
}
.cookie-banner .settings {
  background: #F7F6F2;
  color: #36503B;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #F3A712;
  color: #325C38;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 350;
  background: rgba(46,73,41,0.11);
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.32s cubic-bezier(.55,.1,.41,1) 1;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal .modal-content {
  background: #FFFFFF;
  border-radius: 21px 25px 22px 27px/18px 18px 22px 24px;
  box-shadow: 0 6px 22px rgba(91,129,54,0.20);
  padding: 38px 32px 28px 32px;
  width: 94vw;
  max-width: 430px;
  display: flex;
  flex-direction: column;
  gap: 19px;
  font-size: 1.07rem;
  position: relative;
  animation: modalPop 0.24s ease-in-out;
}
@keyframes modalPop {
  from { transform: scale(0.95) translateY(36px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal .modal-content h2 {
  font-size: 1.31rem;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 13px;
  margin-bottom: 10px;
}
.cookie-modal label {
  font-size: 1rem;
  font-weight: 600;
  color: #2F5233;
}
.cookie-modal input[type="checkbox"] {
  accent-color: var(--earth-green);
  width: 20px;
  height: 20px;
  margin-right: 6px;
}
.cookie-modal .modal-btns {
  margin-top: 15px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 11px;
  right: 15px;
  background: none;
  color: #A2875A;
  font-size: 1.58rem;
  border: none;
  cursor: pointer;
  border-radius: 16px;
  padding: 4px 11px;
  transition: background 0.15s;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  background: #DCF1D6;
}

/* ========================
   RESPONSIVE BREAKPOINTS
   ======================== */
@media (max-width: 1150px) {
  .container { max-width: 98vw; }
  footer .container { flex-wrap: wrap; gap: 20px; }
}
@media (max-width: 900px) {
  .container { max-width: 100vw; padding-left: 10px; padding-right: 10px; }
  .service-card, .service-detail { max-width: 100%; min-width: 170px; }
  .tips-grid, .features ul { gap: 16px; }
  .card-container, .services .service-cards, .services .service-details { gap: 16px; }
  .values ul, .practical-advice { gap: 10px; }
}
@media (max-width: 768px) {
  .container, .content-wrapper { max-width: 99vw; }
  .section, .about, .faq, .legal, .cta, .testimonials { padding: 26px 7px; margin-bottom: 36px; border-radius: 18px; }
  .hero { min-height: 220px; border-radius: 0 0 36px 36px/0 0 32px 32px; }
  nav { display: none !important; }
  .cta-primary, .cta-secondary { padding: 12px 14vw; font-size: 1rem; }
  .mobile-menu-toggle { display: flex; }
  .footer-main-navigation, .footer-links, .footer-contact, .newsletter-signup {
    min-width: 0; max-width: 100%;
  }
  footer .container { flex-direction: column; align-items: flex-start; gap: 19px; }
  .features ul, .about ul, .values ul, .team-list, .practical-advice { flex-direction: column; gap: 6px; }
  .card-container, .services .service-cards, .services .service-details, .tips-grid { flex-direction: column; gap: 7px; }
  .newsletter-signup { margin-left: 0; }
  .content-grid { flex-direction: column; gap: 7px; }
  .testimonial-card { max-width: 100%; }
  .text-image-section { flex-direction: column !important; gap: 15px; align-items: center; }
  .faq-list { gap: 7px; }
  .cookie-modal .modal-content { padding: 22px 11px 16px 13px; }
}
@media (max-width: 540px) {
  h1, .h1 { font-size: 1.4rem; }
  h2, .h2 { font-size: 1.15rem; }
  .section, .about, .faq, .legal, .cta, .testimonials { padding: 11px 5px; }
  .hero .content-wrapper { padding-left: 1px; padding-right: 1px; }
}

/* =============================
   MISCELLANEOUS UI ELEMENTS
   ============================= */
::-webkit-scrollbar {
  width: 8px; background: #F1F7EC; border-radius: 8px;
}
::-webkit-scrollbar-thumb {
  background: #C8DBA7; border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
  background: #A0B380;
}

abbr, acronym {
  border-bottom: 1px dotted #A2875A;
  cursor: help;
}

/* =====================
   ANIMATIONS/EFFECTS
   ===================== */
.card, .service-card, .testimonial-card, .faq-item, .tip-item, .newsletter-signup {
  transition: box-shadow 0.17s, transform 0.13s;
}
.card:hover, .service-card:hover, .testimonial-card:hover, .faq-item:hover, .tip-item:hover, .newsletter-signup:hover {
  box-shadow: 0 7px 27px rgba(107,142,78,0.16);
  transform: translateY(-2px) scale(1.03);
}

.cta-primary, .cta-secondary, .cookie-banner button, .cookie-modal .modal-btns button {
  transition: background 0.16s, color 0.15s, box-shadow 0.18s, transform 0.12s;
}

@media screen and (max-width: 400px) {
  .cookie-modal .modal-content { padding: 12px 2px; font-size: 0.945rem; }
}
