/* ================== CSS RESET & NORMALIZE ================== */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}
body {
  background-color: #F6F6F6; /* brand secondary */
  color: #232A1A;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  transition: background .25s;
}
*, *:before, *:after {
  box-sizing: inherit;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus { outline: 2px solid #FFD35A; outline-offset: 2px; }
img { max-width: 100%; height: auto; display: block; }
button {
  font-family: inherit;
  font-size: inherit;
  cursor: pointer;
  background: none;
  border: none;
  outline: none;
}

/* ====== FONT IMPORTS ====== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Roboto:wght@300;400;500;700&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #236F44;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.2rem; }
h2 { font-size: 1.6rem; }
h3 { font-size: 1.2rem; font-weight: 600; }
h4, h5, h6 { font-size: 1rem; font-weight: 600; }
@media (min-width: 600px) {
  h1 { font-size: 2.8rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.4rem; }
}

.subheadline {
  font-family: 'Roboto', Arial, sans-serif;
  color: #5b6a47;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 24px;
  font-weight: 400;
}
p {
  margin-bottom: 16px;
  color: #232A1A;
}
strong {
  font-weight: 700;
}

/* ========== CONTAINER & SECTIONS ========== */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 2px 16px rgba(130, 183, 185, 0.08);
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 900px) {
  .content-wrapper {
    gap: 32px;
  }
}

/* === FLEXBOX LAYOUTS === */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(80,180,160,.10);
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.2s;
  position: relative;
  padding: 24px 20px;
}
.card:hover, .card:focus {
  box-shadow: 0 8px 28px rgba(35,111,68,0.12);
  transform: translateY(-4px) scale(1.02);
}
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #F0F8F7;
  border-radius: 18px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(35,111,68,0.07);
  border: 1px solid #E9F2F2;
  min-width: 0;
  transition: box-shadow 0.2s, transform 0.2s;
}
.testimonial-card blockquote {
  font-size: 1.10rem;
  font-style: italic;
  line-height: 1.6;
  color: #232A1A;
  margin-bottom: 8px;
}
.testimonial-card footer {
  color: #236F44;
  font-weight: 600;
  font-size: 1rem;
}
.testimonial-card:hover,
.testimonial-card:focus {
  box-shadow: 0 6px 24px rgba(80,180,160,0.13);
  transform: translateY(-2px) scale(1.01);
}
.rating_summary {
  margin-top: 16px;
  font-size: 1.1rem;
  color: #236F44;
  font-weight: 600;
}

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

/******* HERO ******/
section:first-of-type {
  background: linear-gradient(117deg, #DAF5EF 0%, #FFF8F4 100%);
  box-shadow: 0 2px 16px rgba(255,216,202,0.05);
  border-radius: 30px;
  padding: 48px 20px 28px 20px;
  margin-bottom: 42px;
}
@media (min-width: 720px) {
  section:first-of-type {
    padding-top: 80px;
    padding-bottom: 60px;
  }
}
/****** 
  SPECIAL GRIDS & LISTS 
*******/
.feature_grid, .service_list, .detailed_services_list, .workshop_list, .workshop_benefits, .benefit_highlights, .category_filters ul, .quick_links ul, .topic_icons ul, .service_highlights ul, .article_preview_grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}
.feature_grid li,
.service_list li,
.detailed_services_list li,
.workshop_list li,
.workshop_benefits li,
.benefit_highlights li,
.service_highlights ul li,
.article_preview_grid article {
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 2px 8px hsla(160,27%,75%,.07);
  padding: 24px 18px;
  flex: 1 1 250px;
  min-width: 220px;
  max-width: 370px;
  margin-bottom: 0;
  transition: box-shadow 0.15s, transform 0.15s, background .2s;
}
.feature_grid li:hover,
.service_list li:hover,
.detailed_services_list li:hover,
.article_preview_grid article:hover {
  box-shadow: 0 8px 24px rgba(35,111,68,0.11);
  background: #F4FAF7;
  transform: translateY(-6px) scale(1.015);
}
.feature_grid img,
.topic_icons img {
  width: 38px;
  height: 38px;
  margin-bottom: 10px;
}
.service_list strong,
.detailed_services_list strong,
.workshop_list strong {
  color: #236F44;
  background: #F6FCD9;
  padding: 5px 14px;
  border-radius: 8px;
  font-size: 1rem;
  margin-top: 14px;
  display: inline-block;
}
.service_highlights ul {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 16px 0 0 0;
}
.service_highlights ul li {
  background: #F0F8F7;
  color: #236F44;
  border-radius: 8px;
  padding: 7px 16px;
  font-weight: 600;
}
.process_explanation {
  background: #FFF5E7;
  border-radius: 16px;
  padding: 18px 18px 10px 18px;
  margin-top: 22px;
}
/**** ARTICLE GRID FOR TIPS ****/
.article_preview_grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.article_preview_grid article {
  flex: 1 0 240px;
  max-width: 330px;
}

.category_filters ul {
  margin: 12px 0 8px 0;
  gap: 16px;
}
.category_filters li a {
  color: #236F44;
  font-weight: 600;
  padding: 5px 15px;
  border-radius: 7px;
  background: #F0F8F7;
  transition: background .14s, color .14s;
}
.category_filters li a:hover,
.category_filters li a:focus {
  background: #FFD35A;
  color: #232A1A;
}
.topic_icons ul {
  gap: 24px;
  justify-content: flex-start;
}
.topic_icons li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #236F44;
}
.quick_links ul {
  flex-wrap: wrap;
  gap: 14px;
}
.quick_links li a {
  color: #5ba797;
  background: #F0F8F7;
  border-radius: 7px;
  padding: 4px 12px;
  font-weight: 600;
  transition: background .12s, color .14s;
}
.quick_links li a:hover {
  background: #FFD35A;
  color: #232A1A;
}

/**** Table Pricing ****/
.pricing_table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 2px 10px rgba(220, 220, 185, 0.11);
  margin: 16px 0;
  margin-bottom: 20px;
  overflow: hidden;
  font-size: 1rem;
}
.pricing_table caption {
  font-family: 'Montserrat',sans-serif;
  font-size: 1.06em;
  color: #679287;
  margin-bottom: 5px;
  padding: 8px;
}
.pricing_table th {
  background: #F6FCD9;
  color: #232A1A;
  text-align: left;
  padding: 10px 15px;
  font-family: 'Montserrat',sans-serif;
}
.pricing_table td {
  padding: 12px 15px;
  border-bottom: 1px solid #F6F6F6;
  color: #232A1A;
}
.pricing_table tr:last-child td {
  border-bottom: none;
}

/****** CTA, BUTTONS, LINKS ******/
.cta-btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 32px;
  background: #DAF5EF;
  color: #236F44;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.10em;
  font-weight: 700;
  border: none;
  box-shadow: 0 2px 6px rgba(106,177,169,0.10);
  margin-top: 8px;
  margin-bottom: 4px;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.2s;
  cursor: pointer;
  outline: none;
}
.cta-btn.primary {
  background: #FFD35A;
  color: #236F44;
  box-shadow: 0 6px 20px rgba(255,211,90,0.13);
}
.cta-btn.primary:hover,
.cta-btn.primary:focus {
  background: #fffbe6;
  color: #236F44;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 12px 24px rgba(255,211,90,0.18);
}
.cta-btn.accent {
  background: #236F44;
  color: #FFD35A;
}
.cta-btn.accent:hover,
.cta-btn.accent:focus {
  color: #236F44;
  background: #FFD35A;
  transform: translateY(-2px) scale(1.05);
}
.cta-box, .cta_box, .sign_up_cta, .newsletter_signup, .contact_form_preview {
  background: #F0F8F7;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(130,183,185,0.05);
  padding: 24px 20px;
  margin-bottom: 16px;
}
.cta_buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: start;
  margin-top: 14px;
}

/****** THANK YOU MESSAGE ******/
.thank_you_message {
  background: #F6FCD9;
  color: #236F44;
  border-radius: 14px;
  padding: 15px 16px;
  margin-bottom: 12px;
  font-size: 1.06rem;
}
.next_steps_info {
  background: #F0F8F7;
  border-radius: 14px;
  padding: 13px 16px;
  margin-bottom: 12px;
}
.next_steps_info ul {
  gap: 8px;
  font-size: 1rem;
}

/**** ADDRESS / CONTACT ****/
.address_box, .contact_details, .opening_hours {
  background: #E6FBF3;
  border-radius: 11px;
  padding: 10px 14px;
  color: #236F44;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.01rem;
  font-weight: 500;
  margin-bottom: 11px;
}
.phone_number_highlight {
  background: #FDF1D2;
  border-radius: 7px;
  padding: 6px 15px;
  color: #236F44;
  font-size: 1em;
}

/**** TEAM / BIOS ****/
.team_bios h3 {
  margin-top: 28px;
  margin-bottom: 7px;
  color: #236F44;
}
.team_bios p {
  margin-bottom: 18px;
  color: #232A1A;
}

/**** FOOTER ****/
footer {
  background-color: #F0F8F7;
  border-top: 2px solid #E0F5EE;
  padding: 32px 0 0 0;
  margin-top: 40px;
}
footer .container {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  align-items: flex-start;
  padding-bottom: 20px;
}
footer img {
  width: 110px;
  margin-bottom: 8px;
  opacity: 1;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 20px;
}
.footer-nav a {
  color: #679287;
  font-size: 1em;
  transition: color 0.15s;
  position: relative;
  padding-left: 4px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #236F44;
}
@media (max-width: 768px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .footer-nav {
    flex-direction: row;
    gap: 19px;
    margin-top: 10px;
  }
}

/**** HEADER & MAIN MENU *****/
header {
  background: linear-gradient(90deg, #F3F8EE 90%, #F6F6F6 100%);
  padding: 0 0 0 0;
  border-bottom: 1.5px solid #eaf0e6;
  position: relative;
  z-index: 1002;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 20px;
}
header img {
  height: 42px;
  width: auto;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
.main-nav a {
  color: #236F44;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1em;
  padding: 7px 12px;
  border-radius: 8px;
  transition: background .14s, color .14s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #F0F8F7;
  color: #232A1A;
}
.cta-btn.primary {
  margin-left: 9px;
}

/**** MOBILE BURGER MENU ****/
.mobile-menu-toggle {
  display: none;
  background: #FFD35A;
  color: #236F44;
  border: none;
  font-size: 2rem;
  border-radius: 12px;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(130,183,185,0.11);
  margin-left: 8px;
  position: relative;
  z-index: 1015;
  transition: background .13s, box-shadow .13s;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: #fffbe6;
  box-shadow: 0 4px 16px rgba(255,211,90,0.18);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(254,254,254,0.98);
  z-index: 11001;
  transform: translateX(100%);
  transition: transform 0.37s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  box-shadow: -8px 0 16px rgba(35,111,68,0.15);
  will-change: transform;
}
.mobile-menu.open {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transform: translateX(0);
}
.mobile-menu-close {
  background: #FFD35A;
  color: #236F44;
  font-size: 2rem;
  border: none;
  border-radius: 20px;
  width: 49px; height: 49px;
  align-self: flex-end;
  margin: 16px 20px 8px 0;
  box-shadow: 0 2px 12px rgba(80,180,160,0.048);
  transition: background .14s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #fffbe6;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 15px 26px;
  width: 100vw;
}
.mobile-nav a {
  color: #236F44;
  padding: 9px 15px;
  border-radius: 8px;
  font-size: 1.15em;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  background: none;
  transition: background .13s, color .13s;
  margin-right: 0;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F0F8F7;
  color: #232A1A;
}
@media (max-width: 1023px) {
  .main-nav, .cta-btn.primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: inline-flex;
  }
}
@media (min-width: 1024px) {
  .mobile-menu { display: none !important; }
  .mobile-menu-toggle { display: none; }
}

/******* MODALS & OVERLAYS *******/
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(32,41,28,0.23);
  z-index: 11100;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.24s;
  opacity: 0;
  pointer-events: none;
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.modal {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(35,111,68,0.13);
  padding: 32px 22px 20px 22px;
  min-width: 320px;
  max-width: 96vw;
  max-height: 96vh;
  overflow-y: auto;
  animation: appearModal 0.33s cubic-bezier(0.44,0,0.56,1);
}
@keyframes appearModal {
  from { opacity: 0; transform: scale(.92); }
  to { opacity: 1; transform: scale(1); }
}
.modal h2, .modal h3 {
  margin-top: 0;
  color: #236F44;
}
.modal .modal-section {
  margin-bottom: 18px;
}
.modal fieldset {
  border: none;
  margin: 0 0 14px 0;
  padding: 0;
}
.modal label {
  font-weight: 500;
  color: #236F44;
  display: flex;
  align-items: center;
  gap: 9px;
}
.modal input[type='checkbox'] {
  width: 20px;
  height: 20px;
  accent-color: #236F44;
  border-radius: 5px;
}

/**** COOKIE CONSENT BANNER *****/
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #FFFDF7;
  box-shadow: 0 -2px 28px 0 rgba(32,41,28,.12);
  border-top: 2px solid #E6FBF3;
  color: #232A1A;
  font-family: 'Roboto',sans-serif;
  font-size: 1em;
  padding: 20px 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: center;
  z-index: 13010;
  animation: slideCookieBanner 0.67s cubic-bezier(0.44,0,0.56,1);
}
@keyframes slideCookieBanner {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}
.cookie-consent-banner .cookie-message {
  flex: 2 1 250px;
  min-width: 180px;
  color: #232A1A;
  margin-bottom: 8px;
}
.cookie-consent-banner .cookie-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: flex-end;
}
.cookie-consent-banner button {
  border: none;
  border-radius: 22px;
  padding: 10px 26px;
  font-size: 1em;
  font-family: 'Montserrat',sans-serif;
  background: #F6FCD9;
  color: #236F44;
  font-weight: 600;
  margin: 4px 0;
  transition: background .15s, color .15s;
}
.cookie-consent-banner button.accept {
  background: #FFD35A;
  color: #236F44;
}
.cookie-consent-banner button.accept:hover { background: #FFF7C8; }
.cookie-consent-banner button.settings {
  background: #F0F8F7;
  color: #236F44;
}
.cookie-consent-banner button.settings:hover {
  background: #FFD35A;
  color: #236F44;
}
.cookie-consent-banner button.reject {
  background: #E0ECED;
  color: #236F44;
}
.cookie-consent-banner button.reject:hover {
  background: #FFD35A;
  color: #236F44;
}
@media (max-width: 600px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 7px 16px 11px;
  }
  .cookie-consent-banner .cookie-btns {
    width: 100%;
    justify-content: flex-start;
  }
}

/**** COOKIE MODAL BUTTONS ****/
.cookie-modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 22px;
  flex-wrap: wrap;
}
.cookie-modal-actions button {
  border: none;
  border-radius: 22px;
  padding: 10px 26px;
  font-size: 1em;
  font-family: 'Montserrat',sans-serif;
  background: #F0F8F7;
  color: #236F44;
  font-weight: 600;
  transition: background .14s, color .14s;
}
.cookie-modal-actions button.accept {
  background: #FFD35A;
  color: #236F44;
}
.cookie-modal-actions button.reject {
  background: #E0ECED;
}
.cookie-modal-actions button:focus { outline: 2px solid #FFD35A; }

/*************** MISC HELPERS ***************/
.text-section ul, .next_steps_info ul, .process_explanation ul,
.benefit_highlights, .workshop_benefits {
  margin-bottom: 12px;
  list-style: disc inside;
}
.text-section ul li, .next_steps_info ul li, .process_explanation ul li,
.benefit_highlights li, .workshop_benefits li {
  margin: 0 0 8px 0;
  color: #679287;
  font-size: 1rem;
  padding-left: 2px;
}
.text-section {
  padding: 0 0 10px 0;
  max-width: 650px;
}
.unique-approach {
  background: #F6FCD9;
  color: #236F44;
  border-radius: 13px;
  padding: 14px 14px;
  margin-top: 13px;
}
.group_dynamic_explanation {
  background: #E6FBF3;
  color: #236F44;
  border-radius: 11px;
  padding: 12px 14px;
  margin-top: 13px;
}
.newsletter_signup {
  background: #F0F8F7;
  padding: 25px 18px;
  border-radius: 13px;
  text-align: left;
  box-shadow: 0 1px 8px rgba(35,111,68,0.05);
  margin-bottom: 8px;
}

/***** MEDIA QUERIES RESPONSIVE *****/
@media (max-width: 980px) {
  .container {
    max-width: 97vw;
    padding: 0 12px;
  }
  section {
    padding: 32px 8px;
  }
}
@media (max-width: 800px) {
  .card-container, .content-grid, .article_preview_grid, .feature_grid {
    flex-direction: column;
    gap: 20px;
  }
  .footer-nav { flex-direction: row; gap: 15px; }
  .feature_grid li, .service_list li, .detailed_services_list li, .workshop_list li, .article_preview_grid article {
    min-width: unset;
    max-width: 100%;
    width: 100%;
  }
  .testimonial-card {padding: 16px;}
}
@media (max-width: 600px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.18rem; }
  h3 { font-size: 1rem; }
  .feature_grid li, .service_list li, .detailed_services_list li, .workshop_list li, .article_preview_grid article {
    padding: 16px 12px;
  }
  .pricing_table td, .pricing_table th {
    padding: 7px 7px;
    font-size: 0.97em;
  }
  .testimonial-card {padding: 12px;}
}

/* ========== Pastel accent colors for dreamy, soft look ========== */
body, .section, .container {
  background: #F6F6F6;
}
.section {
  box-shadow: 0 2px 14px rgba(170,195,179,0.06);
}
/**** SOFT SHADOWS AND ROUNDED CORNERS ****/
.card, .feature_grid li, .service_list li, .detailed_services_list li, .testimonial-card, .thank_you_message {
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(190,205,184,0.12);
}
/**** DREAMY GRADIENTS (subtle, solid fallback) ****/
.hero-pastel-gradient {
  background: linear-gradient(117deg, #DAF5EF 0%, #FFF8F4 100%);
}

/*************** SIMPLE ANIMATIONS ***************/
a, .cta-btn, .main-nav a, .footer-nav a, .mobile-nav a {
  transition: color 0.15s, background 0.15s, box-shadow 0.18s, transform 0.15s;
}
.card, .testimonial-card, .feature_grid li {
  will-change: transform, box-shadow;
}

/****** ACCESSIBILITY *******/
::-webkit-scrollbar { width: 12px; background: #E6FBF3; }
::-webkit-scrollbar-thumb { background: #B8E3CD; border-radius: 12px; }

/****** PRINT ADJUSTMENT ******/
@media print {
  .mobile-menu,
  .mobile-menu-toggle,
  .cookie-consent-banner,
  .modal-overlay { display: none !important; }
  header, footer { background: #fff !important; color: #000 !important; }
}
