/* =======================================================
   CSS RESET & BASELINE (normalize cross-browser defaults)
   ======================================================= */
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, 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; -webkit-text-size-adjust: 100%; }
body { line-height: 1.5; }
article, aside, details, figcaption, figure, footer, header, main, menu, nav, section { display: block; }
a { background: transparent; text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
img, svg { vertical-align: middle; max-width: 100%; height: auto; }
table { border-collapse: collapse; border-spacing: 0; }
button, input, select, textarea { font: inherit; background: none; border: none; outline: none; }


/* ================================================
   COLOR PALETTE – NATURE ORGANIC + BRAND
   ================================================ */
:root {
  --primary: #1A3365;
  --secondary: #E5A100;
  --accent: #F0F4F8;
  --organic-green: #3B7A57;
  --earth-tan: #D8B07A;
  --earth-brown: #76634B;
  --deep-forest: #2A4638;
  --neutral-bg: #FAF8F3;
  --danger: #B64033;
  --text-dark: #24311A;
  --text-med: #555C44;
  --white: #fff;
  --shadow: rgba(60, 63, 58, 0.10);
  --focus-outline: #9DCB97;
}


/* ================================================
   TYPOGRAPHY
   ================================================ */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,500,400&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  color: var(--text-dark);
  background: var(--neutral-bg);
  min-height: 100vh;
  letter-spacing: 0.01em;
  line-height: 1.65;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: var(--deep-forest);
  letter-spacing: 0.01em;
}
h1 { font-size: 2.625rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.375rem; margin-bottom: 15px; }
h4 { font-size: 1.1rem; margin-bottom: 12px; }
.subheadline { font-size: 1.25rem; color: var(--organic-green); margin-bottom: 16px; }

p, li {
  color: var(--text-med);
  font-size: 1rem;
  margin-bottom: 12px;
}
strong { font-weight: 600; color: var(--deep-forest); }

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.13rem; }
}

/* ================================================
   CONTAINERS & SECTIONS
   ================================================ */
.container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
section {
  background: var(--white);
  border-radius: 32px 32px 22px 22px/24px 25px 32px 32px;  /* organic shape */
  box-shadow: 0 5px 32px var(--shadow);
  margin-bottom: 60px;
  padding: 40px 20px;
  transition: box-shadow 0.25s;
  border: 1.5px solid var(--accent);
}
section:last-child { margin-bottom: 0; }

@media (max-width: 768px) {
  section {
    padding: 24px 8px;
    margin-bottom: 36px;
  }
  .container {
    padding: 0 8px;
  }
}


/* ================================================
   HEADER / NAVIGATION
   ================================================ */
header {
  background: var(--neutral-bg);
  box-shadow: 0 4px 16px var(--shadow);
  padding: 0;
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 40;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
}
header img {
  height: 48px;
}
nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
nav a {
  color: var(--deep-forest);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 5px 2px;
  border-radius: 6px;
  transition: background .2s, color .2s;
}
nav a:hover, nav a:focus {
  background: var(--organic-green);
  color: var(--white);
  outline: none;
}

.cta-primary {
  background: var(--organic-green);
  color: var(--white);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 12px 34px;
  border-radius: 30px;
  box-shadow: 0 2px 12px var(--shadow);
  border: none;
  cursor: pointer;
  margin-left: 32px;
  transition: background 0.18s, box-shadow 0.18s, transform 0.18s;
  display: inline-block;
  text-align: center;
  letter-spacing: 0.025em;
}
.cta-primary:hover, .cta-primary:focus {
  background: var(--secondary);
  color: var(--deep-forest);
  box-shadow: 0 4px 18px 2px var(--shadow);
  transform: translateY(-2px) scale(1.03);
  outline: none;
}

/* Hide .cta-primary on mobile header to save space */
@media (max-width: 768px) {
  header .cta-primary { display: none; }
}

/* ================================================
   MOBILE MENU (Hamburger/Overlay)
   ================================================ */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 22px;
  right: 16px;
  z-index: 105;
  background: var(--organic-green);
  color: var(--white);
  font-size: 2rem;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px var(--shadow);
  border: none;
  cursor: pointer;
  transition: background 0.18s, transform 0.22s;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:hover {
  background: var(--secondary);
  color: var(--deep-forest);
  transform: scale(1.08);
}
@media (max-width: 1024px) {
  header nav { display: none; }
  .mobile-menu-toggle { display: flex; }
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0; height: 100vh; width: 100vw;
  background: var(--white);
  box-shadow: 0 4px 24px var(--shadow);
  transform: translateX(-105%);
  transition: transform 0.4s cubic-bezier(.71,-0.01,.31,.99);
  z-index: 120;
  padding: 0 0 32px 0;
  opacity: 1;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--organic-green);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 2.1rem;
  padding: 0;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0 0 20px;
  align-self: flex-start;
  box-shadow: 0 2px 12px var(--shadow);
  transition: background 0.16s, color 0.18s;
  cursor: pointer;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--secondary);
  color: var(--deep-forest);
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 50px 0 0 38px;
}
.mobile-nav a {
  font-size: 1.35rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: var(--deep-forest);
  padding: 10px 0;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
  width: auto;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--organic-green);
  color: var(--white);
  outline: none;
}
@media (min-width: 1025px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
}

/* Overlay for when mobile-menu is open (optional for JS, but CSS here for completeness) */
.mobile-menu-overlay {
  display: none;
}
.mobile-menu.open + .mobile-menu-overlay {
  display: block;
  position: fixed;
  z-index: 119;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(60,63,58,0.23);
}

/* ================================================
   HERO & CONTENT
   ================================================ */
.text-section {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.trust-signals ul {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding: 0;
  margin-left: 0;
}
.trust-signals li {
  background: var(--accent);
  color: var(--deep-forest);
  font-size: 1rem;
  border-radius: 24px;
  padding: 8px 22px;
  margin-bottom: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
}

/* =============================
   FLEX SPACING PATTERNS
   ============================= */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 0;
}
.feature-card {
  background: var(--accent);
  border-radius: 24px 36px 22px 32px;
  padding: 32px 24px 20px 24px;
  box-shadow: 0 4px 18px var(--shadow);
  flex: 1 1 220px;
  min-width: 210px;
  max-width: 310px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  border: 1.2px solid var(--organic-green);
  transition: box-shadow 0.3s, transform 0.19s;
}
.feature-card img { height: 44px; margin-bottom: 5px; }
.feature-card h3 { font-size: 1.09rem; color: var(--primary); }
.feature-card:hover, .feature-card:focus-within {
  box-shadow: 0 8px 32px var(--shadow);
  transform: translateY(-4px) scale(1.025);
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.value-item {
  background: var(--earth-tan);
  color: var(--deep-forest);
  border-radius: 18px 21px 12px 19px/14px 19px 18px 13px;
  padding: 12px 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 2px 8px var(--shadow);
  margin-bottom: 0;
}

.blog-posts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
}
.blog-post-card {
  background: var(--accent);
  border-radius: 21px 28px 19px 24px;
  padding: 24px;
  min-width: 220px;
  max-width: 400px;
  flex: 1 1 300px;
  box-shadow: 0 3px 14px var(--shadow);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1.2px solid var(--earth-brown);
  transition: box-shadow 0.28s, transform 0.15s;
}
.blog-post-card h3 { color: var(--organic-green); }
.blog-post-card a.cta-secondary {
  margin-top: 6px;
  background: var(--organic-green);
  color: var(--white);
  font-size: 0.98rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: 18px;
  padding: 8px 22px;
  transition: background 0.19s, color 0.19s, box-shadow 0.2s;
  display: inline-block;
  box-shadow: 0 1px 4px var(--shadow);
}
.blog-post-card a.cta-secondary:hover, .blog-post-card a.cta-secondary:focus {
  background: var(--secondary);
  color: var(--deep-forest);
  outline: none;
}
.blog-post-card:hover, .blog-post-card:focus-within {
  box-shadow: 0 8px 38px var(--shadow);
  transform: translateY(-4px) scale(1.025);
}

.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service-card {
  background: var(--accent);
  border-radius: 22px 28px 20px 24px;
  padding: 30px 22px 22px 22px;
  box-shadow: 0 3px 14px var(--shadow);
  flex: 1 1 220px;
  min-width: 210px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
  border: 1.2px solid var(--earth-brown);
  transition: box-shadow 0.27s, transform 0.12s;
}
.service-card img { height: 42px; }
.service-card h3 { color: var(--organic-green); }
.service-card .service-price {
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--earth-tan);
  color: var(--deep-forest);
  border-radius: 15px;
  padding: 6px 16px;
  font-weight: 600;
  margin-top: 2px;
  font-size: 1rem;
  align-self: flex-end;
}
.service-card:hover, .service-card:focus-within {
  box-shadow: 0 8px 32px var(--shadow);
  transform: translateY(-4px) scale(1.025);
}

.project-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 4px;
}
.project-highlights .text-section {
  background: var(--accent);
  border-radius: 20px;
  box-shadow: 0 2px 7px var(--shadow);
  padding: 18px 24px;
  min-width: 185px;
  max-width: 370px;
  flex: 1 1 270px;
}

.workflow-steps {
  padding-left: 24px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
  list-style: decimal inside;
}

/* Spacing: Feature List Items */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Testimonials */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--white);
  border-radius: 28px 28px 15px 28px;
  padding: 20px 32px;
  margin-bottom: 20px;
  box-shadow: 0 3px 18px var(--shadow);
  border-left: 7px solid var(--organic-green);
  border-right: 1.2px solid var(--accent);
  transition: box-shadow 0.2s, transform 0.15s;
  font-size: 1.10rem;
}
.testimonial-card p { color: var(--text-dark); font-size: 1.13rem; margin-bottom: 0; }
.testimonial-card span {
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.99rem;
  margin-left: auto;
  font-style: italic;
  white-space: nowrap;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 8px 48px var(--shadow);
  transform: scale(1.019);
}

@media (max-width: 950px) {
 .features-grid, .services-list, .blog-posts-grid, .project-highlights {
    gap: 14px;
  }
}
@media (max-width: 768px) {
  .features-grid, .services-list, .blog-posts-grid, .project-highlights {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 8px;
  }
}

/* ================================================
   FORMS & NEWSLETTER SIGNUP
   ================================================ */
.newsletter-signup {
  background: var(--accent);
  border-radius: 17px 23px 14px 20px;
  padding: 14px 22px 10px 22px;
  box-shadow: 0 2px 8px var(--shadow);
  margin-top: 10px;
}
.newsletter-signup form {
  display: flex;
  gap: 9px;
  margin-top: 6px;
  align-items: center;
}
.newsletter-signup input[type="email"] {
  padding: 8px 16px;
  font-size: 1rem;
  border-radius: 16px;
  border: 1.1px solid var(--organic-green);
  background: var(--white);
  color: var(--deep-forest);
  outline: none;
  min-width: 160px;
  transition: border 0.19s;
}
.newsletter-signup input[type="email"]:focus {
  border: 1.4px solid var(--focus-outline);
}
.newsletter-signup button[type="submit"] {
  background: var(--organic-green);
  color: var(--white);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: 14px;
  padding: 8px 20px;
  font-size: 0.98rem;
  cursor: pointer;
  transition: background 0.17s;
  border: none;
  white-space: nowrap;
}
.newsletter-signup button[type="submit"]:hover, .newsletter-signup button[type="submit"]:focus {
  background: var(--secondary);
  color: var(--deep-forest);
}


/* ================================================
   FOOTER
   ================================================ */
footer {
  background: var(--organic-green);
  color: var(--white);
  padding: 0;
  border-radius: 32px 32px 0 0;
  box-shadow: 0 -4px 24px var(--shadow);
  margin-top: 60px;
}
footer .container {
  padding: 0 20px;
}
footer .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 32px;
  padding: 30px 0 14px 0;
}
.footer-brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  margin-bottom: 0;
}
.footer-brand img {
  height: 54px;
  width: auto;
}
.footer-brand p {
  color: var(--earth-tan);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 18px;
  align-items: flex-start;
}
.footer-links > div {
  min-width: 120px;
  flex: 1 1 190px;
}
.footer-links h4 {
  color: var(--secondary);
  font-size: 1.08rem;
}
.footer-links a {
  color: var(--accent);
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 9px;
  display: block;
  transition: color 0.19s;
  font-weight: 600;
}
.footer-links a:hover, .footer-links a:focus {
  color: var(--white);
  text-decoration: underline;
}
.contact-info p, .contact-info a {
  color: var(--earth-tan);
  font-size: 1rem;
  margin-bottom: 4px;
  font-family: 'Roboto', Arial, sans-serif;
}
.social-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.social-links h4 {
  margin-bottom: 2px;
}
.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border-radius: 10px;
  padding: 2px 7px;
  transition: background 0.19s;
}
.social-links a:hover, .social-links a:focus {
  background: var(--secondary);
  color: var(--deep-forest);
}
.social-links img {
  height: 28px;
}
.social-newsletter {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  margin-top: 5px;
}

@media (max-width: 950px) {
  .footer-links { gap: 18px; }
}
@media (max-width: 768px) {
  footer {
    border-radius: 0;
    margin-top: 30px;
  }
  footer .content-wrapper {
    gap: 14px;
    padding: 20px 0 5px 0;
  }
  .footer-links {
    flex-direction: column;
    gap: 12px;
    margin-top: 14px;
  }
  .footer-brand img {
    height: 44px;
  }
}

/* ================================================
   COOKIE CONSENT BANNER & MODAL
   ================================================ */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  z-index: 4000;
  background: var(--earth-tan);
  color: var(--deep-forest);
  padding: 24px 12px 20px 12px;
  box-shadow: 0 -2px 18px var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  transition: transform 0.4s;
  border-top-left-radius: 23px;
  border-top-right-radius: 23px;
}
.cookie-banner.hide {
  transform: translateY(120%);
  pointer-events: none;
}
.cookie-banner-info {
  text-align: center;
  max-width: 750px;
  margin: 0 auto;
}
.cookie-banner-actions {
  display: flex;
  gap: 18px;
  margin-top: 6px;
}
.cookie-banner-actions button {
  border-radius: 16px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 9px 30px;
  cursor: pointer;
  border: none;
  box-shadow: 0 1px 5px var(--shadow);
  transition: background 0.18s, color 0.16s, transform 0.15s;
}
.cookie-banner-actions .accept {
  background: var(--organic-green);
  color: var(--white);
}
.cookie-banner-actions .accept:hover,
.cookie-banner-actions .accept:focus {
  background: var(--secondary);
  color: var(--deep-forest);
}
.cookie-banner-actions .reject {
  background: var(--danger);
  color: var(--white);
}
.cookie-banner-actions .reject:hover, .cookie-banner-actions .reject:focus {
  background: #822A1E;
}
.cookie-banner-actions .settings {
  background: var(--neutral-bg);
  color: var(--deep-forest);
}
.cookie-banner-actions .settings:hover, .cookie-banner-actions .settings:focus {
  background: var(--accent);
}

/* Cookie Modal Popup */
.cookie-modal {
  display: none;
  position: fixed;
  z-index: 4400;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(36,49,26,0.22);
  align-items: center;
  justify-content: center;
  width: 100vw; height: 100vh;
}
.cookie-modal.open {
  display: flex;
}
.cookie-modal-content {
  background: var(--accent);
  color: var(--deep-forest);
  padding: 32px 18px 22px 32px;
  border-radius: 30px;
  box-shadow: 0 7px 45px var(--shadow);
  min-width: 320px;
  max-width: 98vw;
  max-height: 95vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 17px;
  position: relative;
}
.cookie-modal-close {
  position: absolute;
  top: 16px; right: 20px;
  background: var(--danger);
  color: var(--white);
  border-radius: 50%;
  border: none;
  width: 36px; height: 36px;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.18s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #822A1E;
}
.cookie-modal h3 {
  font-size: 1.12rem;
  color: var(--organic-green);
  margin-bottom: 7px;
  margin-top: 8px;
}
.cookie-modal-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}
.cookie-modal-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
}
.cookie-modal-category label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
}
.cookie-toggle {
  width: 44px;
  height: 22px;
  border-radius: 16px;
  background: var(--organic-green);
  position: relative;
  margin-right: 10px;
  flex-shrink: 0;
  transition: background 0.16s;
  cursor: pointer;
  border: none;
  outline: none;
  display: flex;
  align-items: center;
}
.cookie-toggle[data-enabled="false"] {
  background: var(--earth-tan);
  box-shadow: 0 1px 4px var(--shadow);
}
.cookie-toggle span {
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--white);
  position: absolute;
  left: 2px;
  top: 1px;
  transition: left 0.15s;
  box-shadow: 0 1px 3px var(--shadow);
}
.cookie-toggle[data-enabled="true"] span {
  left: 22px;
}
.cookie-modal-category .required {
  font-size: 0.95em;
  margin-left: 4px;
  color: var(--danger);
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 10px;
}
.cookie-modal .cookie-modal-actions button {
  border-radius: 16px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 9px 28px;
  cursor: pointer;
  border: none;
  box-shadow: 0 1px 5px var(--shadow);
  background: var(--organic-green);
  color: var(--white);
  transition: background 0.18s, color 0.16s;
}
.cookie-modal .cookie-modal-actions button:hover, .cookie-modal .cookie-modal-actions button:focus {
  background: var(--secondary);
  color: var(--deep-forest);
}

/* Responsive adjustments for cookie banner and modal */
@media (max-width: 768px) {
  .cookie-modal-content {
    padding: 16px 3vw 22px 12px;
    min-width: 0;
    max-width: 99vw;
  }
}

/* ================================================
   OTHER INTERACTIVE ELEMENTS
   ================================================ */
a, button {
  outline: none;
  transition: box-shadow 0.16s, outline 0.14s;
}
a:focus-visible, button:focus-visible {
  box-shadow: 0 0 0 2px var(--focus-outline);
  outline: 2px solid var(--focus-outline);
}

/* Lists */
ul, ol { padding-left: 20px; }
ul li, ol li { margin-bottom: 7px; }
ul li:last-child, ol li:last-child { margin-bottom: 0; }

/* Code, Blockquotes (if used) */
blockquote {
  border-left: 6px solid var(--organic-green);
  background: var(--accent);
  color: var(--deep-forest);
  margin: 10px 0 10px 0;
  padding: 18px 30px;
  border-radius: 13px;
}

/* ================================================
   RESPONSIVE & MOBILITY
   ================================================ */
@media (max-width: 500px) {
  h1 { font-size: 1.3rem; }
  .container { padding: 0 2vw; }
  section { padding: 18px 2vw; }
}

/* ================================================
   ORGANIC/NATURE STYLE DETAILS
   ================================================ */
section, .feature-card, .service-card, .blog-post-card, .value-item,
.newsletter-signup, .testimonial-card, .cookie-modal-content {
  /* Subtle organic textures using SVG as background-image (optional here for real implementation) */
  background-blend-mode: overlay;
  /* Add more for production! */
}

/* Decorative leaf/plant shadows (optional): */
.feature-card:before,
.service-card:before,
.blog-post-card:before {
  content: '';
  display: block;
  position: absolute;
  top: 9px; right: 14px;
  width: 36px; height: 36px;
  background: url('assets/leaf.svg') no-repeat center/contain;
  opacity: .13;
  pointer-events: none;
  z-index: 1;
  /* Only if asset available */
}

/* Remove pseudo if not available */

/* ================================================
   MISC – PRINT, SCREEN, DARK MODE (future)
   ================================================ */
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
  section { background: #fff !important; color: #000 !important; }
}
