/* =======================================================
   CSS RESET & BASE STYLES
   ======================================================= */
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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background-color: #F5F5F5;
  color: #22415B;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
ul, ol {
  margin-left: 1.5em;
}
a {
  color: #22415B;
  text-decoration: underline;
  transition: color 0.2s;
}
a:focus,
a:hover {
  color: #637A53;
  outline: none;
}
button, input, select, textarea {
  font: inherit;
  border: none;
  background: none;
  color: inherit;
  padding: 0;
}
button, [type=button], [type=submit] {
  cursor: pointer;
  background: none;
}
:focus {
  outline: 2px solid #22415B;
  outline-offset: 2px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #22415B;
  line-height: 1.2;
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 24px;
  font-weight: 700;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  font-weight: 600;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  font-weight: 600;
}
h4, h5, h6 {
  font-size: 1rem;
  margin-bottom: 8px;
  font-weight: 500;
}
p, li {
  font-size: 1rem;
  color: #373E2F;
  margin-bottom: 12px;
}
strong, b {
  color: #22415B;
  font-weight: 600;
}
em {
  color: #637A53;
  font-style: italic;
}
small {
  font-size: 0.93rem;
  color: #6D6D55;
}
.subheadline {
  margin-bottom: 24px;
  font-size: 1.2rem;
  color: #637A53;
}

/* Basic containers */
.container {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
}

.content-wrapper {
  width: 100%;
  padding: 0;
  margin: 0 auto;
}

/* =======================================================
   NATURE ORGANIC INSPIRED COLORS & TEXTURES
   ======================================================= */
:root {
  --primary: #22415B;
  --secondary: #637A53;
  --accent: #F5F5F5;
  --nature-cream: #FCFAF6;
  --light-green: #CBD7C7;
  --mid-green: #A5B89C;
  --clay: #CFBBA4;
  --earth: #857467;
  --card-shadow: 0 4px 16px 0 rgba(52, 53, 43, 0.10);
  --card-radius: 20px;
}

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

section {
  background: var(--nature-cream);
  border-radius: 28px;
  margin-bottom: 60px;
  padding: 40px 20px;
  box-shadow: 0 2px 16px 0 rgba(52, 53, 43, 0.07);
}

@media (max-width: 768px) {
  section {
    border-radius: 12px;
    padding: 28px 10px;
    margin-bottom: 36px;
  }
}

/* Organic Shapes (Bubble corners via clip-path) */
section, .card, .testimonial-card, .blog-preview, .faq-item {
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
}

/* Subtle organic background effect */
section:nth-child(odd) {
  background: linear-gradient(120deg, #FCFAF6 92%, #CBD7C7 100%);
}
section:nth-child(even) {
  background: #F5F5F5;
}
/* =======================================================
   HEADER & NAVIGATION
   ======================================================= */
header {
  background: #FCFAF6;
  box-shadow: 0 2px 10px 0 rgba(35, 38, 27, 0.05);
  border-bottom-left-radius: 28px;
  border-bottom-right-radius: 28px;
  z-index: 22;
  position: relative;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
}
header img {
  height: 48px;
  width: auto;
  border-radius: 10px;
  background: #fff;
  padding: 6px 12px;
  box-shadow: 0 1px 6px 0 rgba(145,152,126,0.08);
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 8px 14px;
  border-radius: 16px;
  color: var(--primary);
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--light-green);
  color: #334a30;
}
.main-nav .cta {
  background: var(--secondary);
  color: #fff;
  border-radius: 999px;
  padding: 8px 22px;
  font-weight: 700;
  text-decoration: none;
  margin-left: 18px;
  box-shadow: 0 3px 12px rgba(158, 180, 106, 0.12);
  transition: background 0.2s, color 0.2s;
}
.main-nav .cta:hover, .main-nav .cta:focus {
  background: #50743b;
  color: #fff !important;
}

.mobile-menu-toggle {
  font-size: 2rem;
  background: var(--secondary);
  color: #fff;
  border-radius: 50%;
  padding: 7px 14px;
  line-height: 1;
  border: none;
  display: none;
  margin-left: 24px;
  transition: background 0.2s, box-shadow 0.2s;
  z-index: 25;
  position: relative;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #4f6e3b;
  box-shadow: 0 4px 16px rgba(124,138,110,0.18);
}
@media (max-width: 1000px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* Mobile Menu Styles */
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34, 65, 91, 0.98);
  box-shadow: 0 0 64px 0 rgba(34,65,91,0.15);
  z-index: 100;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(0.77,0,0.175,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 54px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 22px;
  right: 22px;
  font-size: 2.2rem;
  background: #fff;
  color: var(--primary);
  border-radius: 50%;
  padding: 8px 19px;
  z-index: 105;
  box-shadow: 0 2px 8px #fff8;
  border: none;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--secondary);
  color: #fff;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px 32px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  text-decoration: none;
  padding: 16px 10px 12px 0;
  border-radius: 12px;
  background: none;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--light-green);
  color: #22415B;
}

@media (min-width: 1001px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* =======================================================
   HERO, SECTION, FEATURE, TESTIMONIAL CARDS
   ======================================================= */
.text-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 10px;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 28px;
  margin-bottom: 18px;
}
.feature-item {
  background: #fff;
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 28px 24px 22px 24px;
  min-width: 230px;
  max-width: 340px;
  flex: 1 1 250px;
  min-height: 210px;
  margin-bottom: 20px;
}
.feature-item img {
  width: 44px;
  height: 44px;
  margin-bottom: 10px;
  filter: saturate(0.7) hue-rotate(-12deg);
}
.feature-item h3 {
  font-size: 1.18rem;
  color: var(--secondary);
  margin-bottom: 0;
}
.feature-item p {
  color: #3e4021;
  font-size: 0.99rem;
}
@media (max-width: 900px) {
  .feature-grid {
    flex-direction: column;
    gap: 20px;
  }
  .feature-item {
    min-width: 90%;
    max-width: 100%;
    flex: 1 1 100%;
  }
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}
.card {
  background: #fff;
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 24px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

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

/* Testimonials */
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 14px;
  margin-bottom: 10px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  color: #22415B;
  border-radius: var(--card-radius);
  padding: 28px 32px 20px 32px;
  margin-bottom: 20px;
  box-shadow: var(--card-shadow);
  min-width: 220px;
  max-width: 370px;
  flex: 1 1 220px;
  font-size: 1.07rem;
  line-height: 1.5;
  font-style: italic;
  border-left: 7px solid var(--secondary);
  transition: box-shadow 0.2s, transform 0.17s;
}
.testimonial-card strong {
  color: var(--secondary);
  font-style: normal;
  font-size: 1rem;
  margin-top: 14px;
}
.testimonial-card:hover {
  box-shadow: 0 6px 32px 0 rgba(99,122,83,0.13);
  transform: scale(1.025);
}
@media (max-width: 900px) {
  .testimonials {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card {
    max-width: 100%;
    min-width: 90%;
    padding: 22px 14px 18px 18px;
  }
}

/* FAQ Styles */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq-item {
  background: #fff;
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  padding: 18px 24px;
  margin-bottom: 20px;
  transition: box-shadow 0.17s;
}
.faq-item h3 {
  margin-bottom: 10px;
  color: var(--secondary);
  font-size: 1.1rem;
}
.faq-item p {
  font-size: 0.99rem;
}
.faq-item:hover {
  box-shadow: 0 8px 20px #7a955c22;
}

/* Blog Preview Cards */
.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
}
.blog-preview {
  background: #fff;
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  padding: 28px 26px 22px 26px;
  min-width: 230px;
  max-width: 400px;
  flex: 1 1 260px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow 0.15s, transform 0.14s;
}
.blog-preview h2 {
  font-size: 1.23rem;
  margin-bottom: 8px;
  color: var(--secondary);
}
.blog-preview a {
  color: var(--primary);
  font-weight: 600;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  text-decoration: underline;
  font-size: 1rem;
  margin-top: 8px;
  transition: color 0.175s;
}
.blog-preview a:hover { color: var(--secondary); }
.blog-preview:hover {
  box-shadow: 0 7px 28px 0 rgba(99,122,83,0.15);
  transform: scale(1.018);
}
@media (max-width: 900px) {
  .blog-list {
    flex-direction: column;
    gap: 18px;
  }
  .blog-preview {
    max-width: 100%;
    min-width: 90%;
  }
}

/* Contact Page */
.contact-details {
  background: var(--light-green);
  border-radius: 16px;
  padding: 12px 20px 8px 18px;
  margin-top: 10px;
  margin-bottom: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 1rem;
  color: #3e4021;
  box-shadow: 0 1px 6px #CBD7C726;
}
.contact-details h2 {
  font-size: 1.13rem;
  color: #22415B;
}
.contact-details img {
  display: inline-block;
  width: 24px;
  margin-right: 7px;
  vertical-align: bottom;
  filter: grayscale(0.4) saturate(0.5);
}
.contact-details a {
  color: var(--primary);
  font-weight: 500;
  text-decoration: underline;
}

/* =======================================================
   BUTTONS & CTA
   ======================================================= */
.cta {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  border-radius: 999px;
  padding: 11px 36px;
  font-size: 1.08rem;
  font-weight: 700;
  text-decoration: none;
  background: var(--secondary);
  color: #fff;
  box-shadow: 0 3px 12px rgba(99,122,83,0.11);
  display: inline-block;
  margin-top: 8px;
  margin-bottom: 10px;
  transition: background 0.18s, box-shadow 0.16s, color 0.18s, transform 0.13s;
  border: none;
}
.cta.primary { background: var(--secondary); color: #fff; }
.cta.primary:hover, .cta.primary:focus {
  background: #22415B;
  color: #fff;
  transform: translateY(-2px) scale(1.052);
  box-shadow: 0 8px 24px #22415B22;
}
.cta.secondary {
  background: #fff;
  color: var(--secondary);
  border: 2px solid var(--secondary);
}
.cta.secondary:hover, .cta.secondary:focus {
  background: var(--secondary);
  color: #fff;
  box-shadow: 0 6px 14px #637A5320;
  transform: translateY(-2px) scale(1.042);
}

button.cta:not(:disabled):active {
  background: #50743b;
  color: #fff;
}

/* General form controls */
input, textarea, select {
  padding: 11px 11px;
  border-radius: 14px;
  border: 1.5px solid #CBD7C7;
  background: #FCFAF6;
  font-size: 1rem;
  margin-bottom: 10px;
  transition: border 0.2s, box-shadow 0.15s;
}
input:focus, textarea:focus, select:focus {
  border-color: #637A53;
  box-shadow: 0 2px 8px #637A5325;
}
label {
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
  color: #373E2F;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}

/* Tables */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 22px;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
}
th, td {
  border: 1px solid #CBD7C7;
  padding: 12px 10px;
  text-align: left;
  font-size: 0.99rem;
}
th {
  background: #A5B89C;
  color: #2e4131;
  font-weight: 700;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
@media (max-width: 768px) {
  table, thead, tbody, th, td, tr {
    display: block;
  }
  td, th {
    width: 100%;
    box-sizing: border-box;
  }
}

/* OL/UL spacing */
ol, ul {
  margin-bottom: 12px;
  padding-left: 22px;
}

/* =======================================================
   FOOTER
   ======================================================= */
footer {
  background: #22415B;
  color: #fff;
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
  margin-top: 60px;
}
footer .container {
  padding: 30px 20px 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-nav a {
  color: #CBD7C7;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  text-decoration: underline;
  font-size: 1rem;
  transition: color 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
}
.footer-contact {
  margin-top: 8px;
  color: #dbeaef;
  font-size: 0.97rem;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-contact a {
  color: #A5B89C;
  text-decoration: underline;
  font-weight: 500;
}
.footer-contact a:hover { color: #fff; }

@media (max-width: 700px) {
  footer .container {
    padding: 24px 10px 10px 10px;
    gap: 14px;
  }
  .footer-nav {
    gap: 10px;
  }
  .footer-contact {
    font-size: 0.92rem;
  }
}

/* =======================================================
   COOKIE CONSENT
   ======================================================= */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #FCFAF6;
  box-shadow: 0 -3px 24px #22415B22;
  border-top: 1.5px solid #CBD7C7;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1001;
  padding: 22px 12px 19px 12px;
  gap: 18px;
  animation: banner-in 0.75s cubic-bezier(0.18,0.77,0.38,1.02);
}
@keyframes banner-in {
  from { transform: translateY(80px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner p {
  color: #22415B;
  margin-bottom: 6px;
  font-size: 1.01rem;
}
.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 4px;
}
.cookie-btn, .cookie-btn:visited, .cookie-btn:active {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 999px;
  padding: 8px 22px;
  border: none;
  cursor: pointer;
  margin-right: 2px;
  margin-bottom: 4px;
  transition: background 0.17s, color 0.16s, box-shadow 0.13s;
  box-shadow: 0 2px 8px #CBD7C725;
}
.cookie-btn.accept {
  background: var(--secondary);
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #22415B;
  color: #fff;
}
.cookie-btn.reject {
  background: #fff;
  color: var(--secondary);
  border: 2px solid var(--secondary);
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #637A53;
  color: #fff;
}
.cookie-btn.settings {
  background: var(--accent);
  color: var(--primary);
  border: 1.2px solid var(--primary);
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: var(--primary);
  color: #fff;
}

/* Cookie modal overlay */
.cookie-modal-overlay {
  position: fixed;
  z-index: 1100;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(49,59,41,0.48);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  animation: cookie-modal-fadein 0.38s;
}
@keyframes cookie-modal-fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  background: #F5F5F5;
  border-radius: 24px;
  padding: 32px 28px 22px 28px;
  max-width: 90vw;
  min-width: 320px;
  box-shadow: 0 8px 38px #22415B28;
  color: var(--primary);
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: modal-in 0.35s cubic-bezier(0.18,0.77,0.38,1.02);
  position: relative;
}
@keyframes modal-in {
  from { transform: scale(0.95); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.cookie-modal h2 {
  color: var(--secondary);
  font-size: 1.23rem;
  margin-bottom: 0.5em;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  margin-bottom: 13px;
}
.cookie-category label {
  font-size: 1.02rem;
  font-weight: 600;
  color: #22415B;
}
.cookie-modal .switch {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 22px;
}
.cookie-modal .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-modal .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #CBD7C7;
  border-radius: 22px;
  transition: .3s;
}
.cookie-modal .slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: .3s;
  box-shadow: 0 1px 5px #b3cab34a;
}
.cookie-modal .switch input:checked + .slider {
  background: var(--secondary);
}
.cookie-modal .switch input:checked + .slider:before {
  transform: translateX(18px);
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 18px;
  justify-content: flex-end;
  margin-top: 16px;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 17px;
  right: 17px;
  background: #fff;
  border-radius: 99px;
  border: none;
  font-size: 1.5rem;
  color: var(--primary);
  padding: 2px 9px;
  line-height: 1;
}
.cookie-modal .close-modal:hover,
.cookie-modal .close-modal:focus {
  background: var(--secondary);
  color: #fff;
}
@media (max-width: 480px) {
  .cookie-modal {
    min-width: 90vw;
    padding: 18px 6px 14px 6px;
    font-size: 0.98rem;
  }
}

/* Hide cookie banner/modal by default (visibility controlled via JS) */
.cookie-consent-banner[hidden], .cookie-modal-overlay[hidden] {
  display: none !important;
}

/* =======================================================
   SPACING HELPERS (consistent gaps everywhere)
   ======================================================= */
.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;
}

/* Responsive alignment rules */
@media (max-width: 900px) {
  .container {
    max-width: 98vw;
    padding: 0 7vw;
  }
  .section, section {
    padding-left: 8px;
    padding-right: 8px;
  }
  .content-grid, .card-container, .testimonials, .blog-list, .feature-grid {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .content-wrapper {
    padding: 0;
  }
  section, .section {
    margin-bottom: 34px;
    padding: 24px 5px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 13px;
  }
  .feature-item, .blog-preview, .testimonial-card, .card {
    min-width: unset;
    max-width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* =======================================================
   MICRO-INTERACTIONS/ANIMATIONS
   ======================================================= */
.cta, .cookie-btn, .main-nav a, .mobile-nav a {
  transition: background 0.15s, color 0.15s, box-shadow 0.13s, transform 0.13s;
}
.card, .testimonial-card, .faq-item, .feature-item, .blog-preview {
  transition: box-shadow 0.14s, transform 0.13s;
}
.card:hover, .faq-item:hover, .blog-preview:hover, .feature-item:hover {
  box-shadow: 0 10px 28px #637A5324;
  transform: scale(1.015);
}

/* Inputs - grow on focus */
input:focus, textarea:focus {
  transform: scale(1.02);
  border-color: #637A53;
}

/* =======================================================
   SCROLLBARS (organic colors)
   ======================================================= */
::-webkit-scrollbar {
  width: 11px;
  background: #CBD7C7;
}
::-webkit-scrollbar-thumb {
  background: #A5B89C;
  border-radius: 18px;
}
::-webkit-scrollbar-thumb:hover { background: #637A53; }

/* Firefox equivalent */
body {
  scrollbar-color: #A5B89C #CBD7C7;
}

/* === END === */
