/* ------------------- CSS RESET & BASE ------------------- */
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%;
  vertical-align: baseline;
  background: transparent;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  font-family: 'Open Sans', Arial, sans-serif;
  background: #F3F8EF;
  color: #232b25;
  font-size: 16px;
  line-height: 1.7;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #2B6636;
  text-decoration: none;
  transition: color .18s;
}
a:hover,
a:focus {
  color: #7FB285;
}
ul, ol {
  list-style: none;
}
button {
  font-family: inherit;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

/* ------------------- BRAND FONTS ------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto Slab', 'Open Sans', Arial, sans-serif;
  color: #2B6636;
  font-weight: 900;
  letter-spacing: 0.5px;
}
h1 {font-size: 2.6rem; margin-bottom: 24px;}
h2 {font-size: 2rem; margin-bottom: 18px;}
h3 {font-size: 1.5rem; margin-bottom: 14px;}

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

strong {font-weight: 700;}

/* ------------------- STRUCTURE & LAYOUT ------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  width: 100%;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 18px 0 rgba(43,102,54,0.11), 0 1.5px 2.5px 0 rgba(127,178,133,0.06);
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow .2s, transform .18s;
}
.card:hover {
  box-shadow: 0 6px 30px 0 rgba(43,102,54,0.18);
  transform: translateY(-4px) scale(1.02);
  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;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px 28px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px 0 rgba(127,178,133,0.10);
  margin-bottom: 24px;
  font-size: 1.1rem;
  color: #222e23;
  min-width: 0;
  transition: box-shadow .2s, transform .18s;
}
.testimonial-card span {
  font-size: 1rem;
  color: #2B6636;
  text-align: right;
  width: 100%;
}
.testimonial-card:hover {
  box-shadow: 0 4px 28px 0 rgba(43,102,54,0.19);
  transform: scale(1.03);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- Responsive Flex Direction Rules --- */
@media (max-width: 768px) {
  .content-grid,
  .feature-grid,
  .text-image-section,
  .card-container {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
}


/* ------------------- HEADER & NAVIGATION ------------------- */
header {
  width: 100%;
  background: #fff;
  border-bottom: 2px solid #2B6636;
  padding: 0 0 0 0;
  z-index: 50;
  position: relative;
  box-shadow: 0 1.5px 10px 0 rgba(43,102,54,0.03);
}
.logo-header {
  padding: 18px 20px 10px 20px;
}
.logo-header img {
  max-height: 52px;
  display: block;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  padding: 0 20px 10px 20px;
}
.main-nav a {
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  color: #2B6636;
  border-radius: 6px;
  padding: 5px 10px;
  transition: background .15s, color .2s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #7FB285;
  color: #fff;
}
.cta-button {
  background: #2B6636;
  color: #fff;
  border: none;
  border-radius: 30px;
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 13px 34px;
  margin-left: 22px;
  margin-top: 0.5rem;
  box-shadow: 0 2px 14px 0 rgba(127,178,133,0.15);
  transition: background .18s, box-shadow .18s, transform .16s;
  cursor: pointer;
  display: inline-block;
  letter-spacing: 0.06em;
}
.cta-button:hover,
.cta-button:focus {
  background: #7FB285;
  color: #fff;
  box-shadow: 0 6px 30px 0 rgba(43,102,54,0.18);
  transform: scale(1.04);
}

/* ---- Burger Mobile Menu ---- */
.mobile-menu-toggle {
  display: none;
  background: #2B6636;
  color: #fff;
  font-size: 2rem;
  border-radius: 10px;
  margin-left: auto;
  padding: 8px 16px;
  transition: background .17s, color .12s;
  z-index: 100;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #7FB285;
  color: #fff;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(43,102,54,0.97);
  z-index: 99;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .33s cubic-bezier(.71,.09,.63,1.43);
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
  box-shadow: 0 8px 58px 0 rgba(43,102,54,0.18);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 26px 30px 20px 0;
  font-size: 2.5rem;
  color: #fff;
  background: none;
  border: none;
  transition: color .18s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  color: #F0E813;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: center;
  margin-top: 30px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Roboto Slab', serif;
  font-size: 1.35rem;
  font-weight: 800;
  padding: 12px 36px;
  border-radius: 16px;
  letter-spacing: 0.04em;
  transition: background .16s, color .19s;
  background: transparent;
}
.mobile-nav a:active,
.mobile-nav a:focus,
.mobile-nav a:hover {
  background: #7FB285;
  color: #232b25;
}

@media (max-width: 980px) {
  .main-nav {
    display: none;
  }
  .cta-button {
    margin-left: 0;
  }
  .mobile-menu-toggle {
    display: block;
    margin: 16px 24px 0 0;
    position: absolute;
    right: 0;
    top: 8px;
  }
}
@media (min-width: 981px) {
  .mobile-menu,
  .mobile-menu-toggle { display: none !important; }
}


/* ------------------- HERO SECTIONS ------------------- */
.hero {
  width: 100%;
  min-height: 340px;
  background: #7FB285;
  background-blend-mode: multiply;
  color: #fff;
  padding: 54px 0 48px 0;
  display: flex;
  align-items: center;
  box-shadow: 0 16px 38px 0 rgba(127, 178, 133, 0.15);
  animation: heroFadeIn 950ms .2s cubic-bezier(.48,1.52,.67,1);
}
.hero h1,
.hero p {
  color: #fff;
  text-shadow: 0 2px 10px rgba(43,102,54,0.08);
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(-24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ------------------- FEATURES & GRIDS ------------------- */
.features {
  width: 100%;
  background: #fff;
  border-radius: 24px 24px 0 0;
  margin-top: -38px;
  box-shadow: 0 -2px 20px 0 rgba(127, 178, 133, 0.08);
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 20px;
  justify-content: space-between;
}
.feature-grid li {
  background: #F3F8EF;
  border-radius: 12px;
  box-shadow: 0 1.5px 12px 0 rgba(127,178,133,0.04);
  flex: 1 1 200px;
  min-width: 215px;
  padding: 22px 16px 18px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  font-size: 1.09rem;
  margin-bottom: 20px;
  transition: box-shadow .16s, transform .17s;
}
.feature-grid li:hover {
  box-shadow: 0 7px 24px 0 rgba(43,102,54,0.09);
  transform: translateY(-4px) scale(1.02);
}
.feature-grid img {
  width: 38px;
  height: 38px;
  margin-bottom: 4px;
}

/* ------------------- CARDS & SPECIAL GRIDS ------------------- */
.values-grid, .idea-tiles, .blog-post-previews {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: space-between;
}
.values-grid > div, .idea-tiles > div, .blog-post-previews > article {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1.5px 10px rgba(127,178,133,0.04);
  padding: 22px 18px;
  font-size: 1.04rem;
  flex: 1 1 230px;
  min-width: 200px;
  margin-bottom: 20px;
  transition: box-shadow .15s, transform .14s;
}
.values-grid > div:hover,
.idea-tiles > div:hover,
.blog-post-previews > article:hover {
  box-shadow: 0 6px 18px 0 rgba(43,102,54,0.09);
  transform: scale(1.03);
}

@media (max-width: 768px) {
  .values-grid, .idea-tiles, .blog-post-previews, .feature-grid {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .values-grid > div,
  .idea-tiles > div,
  .blog-post-previews > article,
  .feature-grid li {
    min-width: unset;
    width: 100%;
  }
}

/* ------------------- ABOUT / SERVICE HIGHLIGHTS ------------------- */
.sustainability-highlight {
  background: #C8E6C9;
  border-radius: 12px;
  padding: 24px 18px;
  margin-top: 28px;
  text-align: left;
  box-shadow: 0 1.5px 10px 0 rgba(127,178,133,0.12);
}
.pricing-highlights ul {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 16px;
}
.pricing-highlights li {
  background: #7FB285;
  color: #fff;
  padding: 10px 18px;
  border-radius: 7px;
  font-weight: 700;
  font-size: 1.06rem;
}
@media (max-width: 768px) {
  .pricing-highlights ul {
    flex-direction: column;
    align-items: stretch;
  }
}

/* ------------------- SERVICE/LIST BLOCKS ------------------- */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service-cards li {
  background: #F3F8EF;
  border-radius: 12px;
  box-shadow: 0 1.5px 12px 0 rgba(127,178,133,0.05);
  flex: 1 1 240px;
  min-width: 220px;
  margin-bottom: 20px;
  padding: 22px 18px;
  font-size: 1.08rem;
  position: relative;
  transition: box-shadow .14s, transform .13s;
}
.service-cards li strong {
  color: #2B6636;
  font-size: 1.12rem;
  display: block;
}
.service-cards li span {
  color: #7FB285;
  font-weight: 700;
  font-size: 1.04rem;
}
.service-cards li:hover {
  box-shadow: 0 6px 18px 0 rgba(127,178,133,0.12);
  transform: translateY(-3px) scale(1.02);
  z-index: 2;
}

@media (max-width: 768px) {
  .service-cards {
    flex-direction: column;
    gap: 18px;
  }
  .service-cards li {
    width: 100%;
    min-width: unset;
  }
}

/* ------------------- LISTS & MISC. CONTENT ------------------- */
section ul, section ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
section ul > li, section ol > li {
  margin-bottom: 12px;
  line-height: 1.6;
  position: relative;
  padding-left: 26px;
}
section ul > li:before {
  content: '\2022';
  color: #7FB285;
  position: absolute;
  left: 0;
  font-size: 1.4em;
  top: 1px;
}
section ol > li {
  counter-increment: step;
}
section ol {
  counter-reset: step;
}
section ol > li:before {
  content: counter(step) ". ";
  position: absolute;
  left: 0;
  color: #2B6636;
  font-weight: 700;
}

.popular-posts ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.popular-posts li {
  background: #C8E6C9;
  color: #374e3b;
  border-radius: 8px;
  padding: 10px 20px;
  font-weight: 800;
}
@media (max-width: 768px) {
  .popular-posts ul { flex-direction: column; }
}

/* ------------------- CTA / ACTION BLOCKS ------------------- */
.cta-action, .signup, .newsletter-signup {
  background: #7FB285;
  color: #fff;
  border-radius: 18px;
  box-shadow: 0 5px 32px 0 rgba(127,178,133,0.13);
  text-align: center;
  margin-bottom: 44px;
  padding: 48px 20px 32px 20px;
}
.cta-action h2,
.signup h2,
.newsletter-signup h2 {
  color: #fff;
}
.cta-action .cta-button,
.signup .cta-button,
.newsletter-signup .cta-button {
  margin: 24px auto 0 auto;
  display: inline-block;
}

/* ------------------- FOOTER ------------------- */
.main-footer {
  background: #2B6636;
  color: #fff;
  margin-top: 48px;
  padding-top: 28px;
  padding-bottom: 12px;
  border-radius: 28px 28px 0 0;
  box-shadow: 0 -3px 22px 0 rgba(127,178,133,0.09);
}
.main-footer .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.footer-nav a {
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 4px 12px;
  border-radius: 6px;
  margin-bottom: 0;
  transition: background .16s, color .19s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  background: #7FB285;
  color: #232b25;
}
.footer-contact {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 1rem;
}
.footer-contact img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 1.5px 9px 0 rgba(127,178,133,0.10);
}
.footer-contact a { color: #F3F8EF; text-decoration: underline; }
.footer-contact strong { color: #F0E813; }
.legal {
  color: #B4DFC2;
  font-size: 0.95rem;
}
@media (max-width: 768px) {
  .main-footer .content-wrapper,
  .footer-contact {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .footer-contact img { margin-bottom: 6px; }
}

/* ------------------- LEGAL, COOKIE, ETC. ------------------- */
.legal {
  margin-top: 20px;
  text-align: left;
  letter-spacing: 0.02em;
}

/* ------------------- FORMATTING / SPECIAL BLOCKS ------------------- */
.address-block,
.email-block,
.opening-hours,
.map-snippet, .topics-overview, .pricing-info {
  background: #F3F8EF;
  border-radius: 8px;
  padding: 10px 16px;
  margin-bottom: 16px;
  box-shadow: 0 1.5px 7px 0 rgba(127,178,133,0.04);
}
.topics-overview, .pricing-info {
  background: #C8E6C9;
  color: #2B6636;
  font-weight: 800;
  margin-bottom: 18px;
}
@media (max-width: 768px) {
  .address-block, .map-snippet,
  .email-block, .opening-hours {
    padding: 10px 8px;
  }
}

/* ------------------- COOKIE CONSENT BANNER ------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #232b25;
  color: #fff;
  z-index: 1000;
  width: 100%;
  padding: 28px 20px 26px 20px;
  box-shadow: 0 -4px 30px 0 rgba(43,102,54,0.26);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  animation: bannerIn 0.67s cubic-bezier(.67,1.1,.77,1.02);
}
@keyframes bannerIn {
  from { transform: translateY(90px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  margin: 0;
  flex: 1 0 180px;
  font-size: 1.01rem;
}
.cookie-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.cookie-banner button {
  border: none;
  border-radius: 30px;
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 9px 30px;
  box-shadow: 0 2px 10px 0 rgba(127,178,133,0.09);
  cursor: pointer;
  transition: background .18s, color .18s, transform .15s;
}
.cookie-banner .accept-all {
  background: #2B6636;
  color: #fff;
}
.cookie-banner .accept-all:hover,
.cookie-banner .accept-all:focus {
  background: #7FB285;
  color: #fff;
}
.cookie-banner .reject-all {
  background: #F3F8EF;
  color: #2B6636;
}
.cookie-banner .reject-all:hover,
.cookie-banner .reject-all:focus {
  background: #7FB285;
  color: #fff;
}
.cookie-banner .cookie-settings {
  background: #B4DFC2;
  color: #2B6636;
}
.cookie-banner .cookie-settings:hover,
.cookie-banner .cookie-settings:focus {
  background: #232b25;
  color: #fff;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 22px 10px 18px 10px;
  }
}

/* ---- Cookie Modal ---- */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(35,43,37,0.82);
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modalOpenUp 0.48s cubic-bezier(.5,1.58,.65,1);
}
@keyframes modalOpenUp {
  from { opacity: 0; transform: scale(.85); }
  to { opacity: 1; transform: scale(1); }
}
.cookie-modal {
  background: #fff;
  color: #222e23;
  border-radius: 20px;
  max-width: 420px;
  width: 94%;
  padding: 34px 24px 28px 24px;
  box-shadow: 0 6px 40px 0 rgba(43,102,54,0.29);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cookie-modal h3 { color: #2B6636; }
.cookie-settings-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-setting-item {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #EAEAEA;
}
.cookie-setting-item:last-child {
  border-bottom: none;
}
.cookie-setting-toggle {
  width: 50px;
  height: 28px;
  border-radius: 14px;
  background: #B4DFC2;
  position: relative;
  transition: background .14s;
  flex-shrink: 0;
}
.cookie-setting-toggle[aria-checked="true"] {
  background: #7FB285;
}
.cookie-setting-toggle::before {
  content: '';
  display: block;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  left: 2px; top: 2px;
  box-shadow: 0 1px 5px rgba(43,102,54,0.11);
  transition: left .2s;
}
.cookie-setting-toggle[aria-checked="true"]::before {
  left: 24px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 10px;
  justify-content: flex-end;
}
.cookie-modal .cookie-modal-close {
  background: #2B6636;
  color: #fff;
  border-radius: 30px;
  padding: 7px 24px;
  font-weight: 800;
  font-family: 'Roboto Slab', serif;
  font-size: 1.01rem;
  transition: background .17s, color .18s;
}
.cookie-modal .cookie-modal-close:hover,
.cookie-modal .cookie-modal-close:focus {
  background: #7FB285;
  color: #fff;
}
@media (max-width: 550px) {
  .cookie-modal { padding: 18px 7vw 16px 7vw; max-width: 97vw; }
}

/* ------------------- MICRO-INTERACTIONS ------------------- */
.card, .feature-grid li, .service-cards li, .testimonial-card, .cta-button,
.values-grid > div, .idea-tiles > div, .blog-post-previews > article, .footer-nav a{
  transition: box-shadow .16s, background .15s, transform .14s, color .17s;
}

/* ------------------- UTILITIES & FIXES ------------------- */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-2 { margin-bottom: 16px !important; }
.w-100 { width: 100%; }
.text-center { text-align: center; }
@media (max-width: 768px) {
  .section { padding: 30px 7vw; margin-bottom: 42px; }
}

/* ------ High Contrast for Testimonials (WCAG compliance) ------ */
.testimonials, .testimonial-card {
  background: #fff;
  color: #222e23;
}

/* ------------------- VIBRANT/ENERGETIC COLOR POPS ------------------- */
/* electric accent pops for buttons, links, backgrounds - subtle for brand harmony */
.cta-button, .cookie-banner .accept-all {
  box-shadow: 0 4px 24px 0 rgba(57,255,122,0.13), 0 1.5px 2.5px rgba(127,178,133,0.15);
}
.cta-button:active, .cookie-banner .accept-all:active {
  background: #F0E813;
  color: #2B6636;
  outline: 2px solid #2B6636;
  transform: scale(.98);
}
/* Subtle vibrancy hints */
.values-grid > div, .idea-tiles > div, .blog-post-previews > article, .feature-grid li, .service-cards li {
  border-left: 4px solid #7FB285;
  border-right: 4px solid #B4DFC2;
  background-clip: padding-box;
}

/* Visual cue for focus (accessibility) */
:focus-visible {
  outline: 2.5px solid #F0E813;
  outline-offset: 1.5px;
  box-shadow: 0 0 0 2.5px #F0E81344;
}

/* ------------------- SECTIONS NOT COVERED ABOVE ------------------- */
/* -- About Short -- */
.about-short ul li {
  font-weight: 600;
  color: #2B6636;
}

/* -- Blog Categories Filter -- */
.categories-filter {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
  margin-bottom: 7px;
}
.categories-filter ul {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  align-items: center;
}
.categories-filter li {
  color: #7FB285;
  background: #F3F8EF;
  border-radius: 7px;
  padding: 8px 13px;
  font-size: .98rem;
  font-weight: bold;
  transition: background .13s, color .16s;
}
.categories-filter li:hover {
  background: #2B6636;
  color: #fff;
}

/* -- Thank You Section -- */
.thankyou {
  background: #B4DFC2;
  border-radius: 18px;
  box-shadow: 0 4px 26px 0 rgba(127,178,133,0.14);
  padding: 54px 24px 42px 24px;
  text-align: center;
}
.thankyou ul li {
  color: #2B6636;
  font-weight: 700;
}

/* ------------------------------------- */
/* ----- Vibrant/Energetic Elements ----- */
/* ------------------------------------- */
::selection {
  background: #F0E813;
  color: #2B6636;
}


/* Ensure content never overlaps */
section, .card, .testimonial-card, .feature-grid li, .service-cards li,
.values-grid > div, .idea-tiles > div, .blog-post-previews > article {
  margin-bottom: 20px;
}

/* Minimum margin between content cards/sections */
.card, .card-container > *,
.values-grid > div, .idea-tiles > div, .blog-post-previews > article,
.service-cards li, .feature-grid li, .testimonial-card {
  margin-bottom: 20px;
}

/* No absolute positioning for content cards, only for overlays/modals when needed */

/* Keep spacing consistent */
section, .section, .container {
  margin-bottom: 60px;
}

/* -------------- Print friendly fix -------------- */
@media print {
  .mobile-menu, .mobile-menu-toggle, .cookie-banner, .cookie-modal-overlay {
    display: none !important;
  }
  .cta-button, nav, footer {
    box-shadow: none !important;
  }
}
