/* =============================================================
   WissensGlanz Stuttgart – NATURE ORGANIC THEME – style.css
   =============================================================
*/
/* CSS RESET & BASE TYPOGRAPHY */
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 {
  scroll-behavior: smooth;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #2E2A1B;
  background: #FAF8F4;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  border: 0;
}
a {
  color: #14375D;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #3ABD7E;
  outline: none;
}
.container {
  width: 100%;
  max-width: 1172px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
ul, ol {
  margin-left: 1.25rem;
  margin-bottom: 1.2em;
}
li {
  margin-bottom: 8px;
}

/* FONT FACES (Montserrat for display, Open Sans for body) */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Open+Sans:wght@400;600&display=swap');

h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.625rem; /* 42px */
  line-height: 1.1;
  color: #14375D;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
@media (max-width:600px) {
  h1 { font-size: 2rem; }
}
h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  line-height: 1.17;
  color: #14375D;
  font-weight: 700;
  margin-bottom: 16px;
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem; /* 20px */
  font-weight: 700;
  color: #144530;
  margin-bottom: 8px;
}
h4, h5, h6 { font-family: 'Open Sans', Arial, sans-serif; color: #2D3228; }
p, .subheadline, .service-price {
  font-size: 1.063rem;
  line-height: 1.8;
  margin-bottom: 12px;
  color: #314131;
}
strong, b {
  font-weight: 700;
}
.subheadline {
  font-size: 1.25rem;
  color: #3ABD7E;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 18px;
}
.service-price {
  font-size: 1.13rem;
  color: #986D37;
  font-weight: 600;
  margin-bottom: 16px;
}

/* SECTIONS, FLEX CONTAINERS, AND MANDATORY SPACING */
.section,
.hero-section,
.features-section,
.services-section,
.testimonials-section,
.about-section,
.usp-section,
.articles-section,
.abo-section,
.tours-section,
.workshops-section,
.coaching-section,
.contact-section,
.legal-section,
.thankyou-section
{
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 32px;
  background: #FFF;
  box-shadow: 0 2px 16px 0 rgba(202, 190, 157, 0.08), 0 1px 1px 0 rgba(58,97,61,0.02);
}
footer .section {
  margin-bottom: 0;
  padding: 0;
  background: none;
  box-shadow: none;
  border-radius: 0;
}

.card-container,
.features-grid,
.usp-grid,
.content-grid,
.article-tabs,
.articles-list,
.service-list,
.tour-list,
.workshop-list,
.event-previews,
.coaching-details,
.testimonials-grid
{
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card,
.feature,
.usp-block,
.article-summary,
.service,
.tour-item,
.workshop-item,
.testimonial-card
{
  margin-bottom: 20px;
  position: relative;
}
.content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  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: flex-start;
  gap: 20px;
  padding: 20px 24px;
  background: #EFF5D4;
  border-radius: 20px;
  box-shadow: 0 2px 10px 0 rgba(58,189,126,0.10);
  min-width: 260px;
  flex: 1 1 260px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 18px 0 rgba(58,189,126,0.17);
  transform: translateY(-3px) scale(1.025);
}
.testimonial-author {
  font-size: 1rem;
  font-style: italic;
  color: #144530;
}
.stars {
  color: #FAA619;
  letter-spacing: 2px;
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 3px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.feature,
.usp-block {
  flex: 1 1 210px;
  background: #F5F4ED;
  border-radius: 20px;
  padding: 20px 14px 16px 14px;
  box-shadow: 0 1px 12px 0 rgba(24,87,33,0.07);
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-width: 200px;
  transition: box-shadow 0.2s;
}
.feature img, .usp-block img {
  margin-bottom: 12px;
  width: 38px;
  height: 38px;
  filter: hue-rotate(-50deg) saturate(1.25);
}
.feature:hover, .usp-block:hover {
  box-shadow: 0 4px 18px 0 rgba(58,189,126,0.09);
  background: #EFF5D4;
}

.service {
  flex: 1 1 260px;
  background: #F3EEDD;
  border-radius: 18px;
  padding: 20px 16px;
  box-shadow: 0 1px 8px 0 rgba(170, 133, 78, 0.06);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.2s, transform 0.2s;
}
.service:hover {
  box-shadow: 0 4px 14px 0 rgba(170, 133, 78, 0.14);
  transform: translateY(-2px) scale(1.014);
}
.article-summary {
  background: #EBF6ED;
  border-radius: 16px;
  padding: 18px 14px;
  transition: box-shadow 0.18s, background 0.12s;
  box-shadow: 0 1px 8px 0 rgba(58,189,126,0.08);
  flex: 1 1 260px;
  margin-bottom: 20px;
}
.article-summary h3 {
  margin-bottom: 8px;
}
.article-summary:hover {
  background: #E1EAF2;
  box-shadow: 0 3px 16px 0 rgba(20,55,93,0.13);
}
.tour-item, .workshop-item {
  background: #F5F4ED;
  border-radius: 14px;
  padding: 17px 13px;
  flex: 1 1 220px;
  box-shadow: 0 1px 8px 0 rgba(20,55,93,0.06);
  margin-bottom: 20px;
}

.text-section {
  flex: 1 1 210px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 200px;
}

.map-placeholder {
  background: #EFF5D4;
  color: #144530;
  border-radius: 14px;
  padding: 20px;
  font-size: 1rem;
  box-shadow: 0 1px 6px 0 rgba(49,65,49,0.08);
  min-width: 210px;
  margin-bottom: 20px;
}

.footer-top {
  border-top: 2px solid #E1EAF2;
  border-bottom: 2px solid #E1EAF2;
  padding: 32px 0 10px 0;
  margin-bottom: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-bottom {
  text-align: center;
  color: #6A7062;
  font-size: 1rem;
  padding-bottom: 24px;
  padding-top: 8px;
}
.footer-brand {
  flex: 2 1 250px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.footer-brand img {
  width: 54px;
  height: 54px;
}
.footer-brand .text-section {
  font-size: 0.99rem;
  color: #314131;
}
.footer-nav {
  flex: 1 1 160px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-social {
  flex: 1 1 120px;
  display: flex;
  gap: 13px;
  align-items: center;
}
.footer-social a img{
  width: 28px;
  height: 28px;
  opacity: 0.9;
  transition: opacity 0.14s;
}
.footer-social a:hover img{
  opacity: 1;
}

/* BUTTONS & INTERACTIVE ELEMENTS */
.btn-primary, .btn-secondary {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.063rem;
  font-weight: 700;
  border: none;
  border-radius: 22px;
  padding: 12px 26px;
  margin: 8px 0 0 0;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  letter-spacing: 0.2px;
  box-shadow: 0 2px 10px 0 rgba(58,189,126,0.08);
  transition: background 0.16s, color 0.16s, box-shadow 0.19s, transform 0.14s;
}
.btn-primary {
  background: #3ABD7E;
  color: #fff;
}
.btn-primary:hover, .btn-primary:focus {
  background: #205944;
  color: #fff;
  box-shadow: 0 5px 20px 0 rgba(20,55,93,0.13);
  transform: translateY(-2px) scale(1.025);
}
.btn-secondary {
  background: #FFF;
  color: #205944;
  border: 2px solid #3ABD7E;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #3ABD7E;
  color: #fff;
  box-shadow: 0 2px 12px 0 rgba(20,55,93,0.10);
  transform: translateY(-2px) scale(1.02);
}
.btn-primary:active, .btn-secondary:active {
  transform: translateY(0) scale(0.98);
}

/*******************************
 HEADER & MAIN NAVIGATION
*******************************/
header {
  background: #EFF5D4;
  box-shadow: 0 2px 12px 0 rgba(20,55,93,0.04);
  border-bottom: 2px solid #E1EAF2;
  position: relative;
  z-index: 20;
}
header .container {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 12px;
  padding-bottom: 12px;
  justify-content: space-between;
}
.logo img {
  height: 38px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.main-nav a {
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  color: #205944;
  font-size: 1rem;
  padding: 7px 10px;
  border-radius: 12px;
  transition: background 0.13s, color 0.14s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #3ABD7E;
  color: #FFF;
}

.header .btn-primary {
  margin-left: auto;
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 6px 12px;
  font-size: 2rem;
  color: #205944;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.12s, color 0.14s;
  z-index: 90;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #E1EAF2;
  color: #3ABD7E;
  outline: none;
}
/*******************
 MOBILE NAVIGATION
*******************/
.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  background: rgba(52, 80, 43, 0.97);
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(0.77,0.07,0.49,0.99);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #FFF;
  font-size: 2.3rem;
  align-self: flex-end;
  margin: 24px 30px 0 0;
  cursor: pointer;
  z-index: 10001;
  transition: color 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #3ABD7E;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  margin: 38px 0 0 42px;
}
.mobile-nav a {
  color: #EFF5D4;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.28rem;
  background: none;
  padding: 8px 0 5px 0;
  border-radius: 9px;
  transition: color 0.15s, background 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #205944;
  color: #3ABD7E;
}
@media (max-width: 1024px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: inline-block; }
  .header .btn-primary { margin-left: 0; }
}
@media (max-width: 1024px) {
  header .btn-primary { display: none; }
}
@media (min-width: 1025px) {
  .mobile-menu { display: none !important; }
}

/****************************************
 HERO & KEY PROMO SECTIONS
****************************************/
.hero-section {
  background: linear-gradient(110deg, #F5F4ED 75%, #EFF5D4 100%);
  margin-bottom: 60px;
  padding-top: 64px;
  padding-bottom: 64px;
  text-align: left;
  border-radius: 38px;
  box-shadow: 0 6px 22px 0 rgba(90,156,122,0.08);
  position: relative;
  overflow: hidden;
}
.hero-section .container {
  position: relative;
  z-index: 2;
}
.hero-section h1 {
  font-size: 2.5rem;
  color: #205944;
}
.hero-section .subheadline {
  font-size: 1.4rem;
  color: #3ABD7E;
  font-weight: 700;
  margin-bottom: 26px;
}
.hero-section .btn-primary {
  margin-top: 8px;
}
@media (max-width: 768px){
  .hero-section {
    padding-top: 36px; padding-bottom: 36px; border-radius: 18px;
    text-align: left;
  }
  .content-wrapper {
    flex-direction: column;
    gap: 18px;
  }
}

/***************************************
   ABOUT, USP, ARTICLE & SERVICE GRIDS
***************************************/
.features-grid, .usp-grid, .service-list, .tour-list, .workshop-list, .articles-list, .testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.usp-block {
  background: #F3EEDD;
  color: #14375D;
}
.usp-block h3 { color: #205944; }

.articles-list, .service-list, .tour-list, .workshop-list {
  margin-top: 16px;
}

.article-tabs {
  margin-bottom: 18px;
}
.article-tab {
  background: #E1EAF2;
  color: #205944;
  border: none;
  border-radius: 16px;
  padding: 8px 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: color 0.18s, background 0.16s;
  margin-right: 8px;
}
.article-tab:hover, .article-tab:focus {
  background: #3ABD7E;
  color: #FFF;
}

.event-previews h3 {
  margin-bottom: 10px;
}
.event-previews ul {
  list-style: disc;
}
.event-previews li {color:#314131; font-size: 1rem;}

/*********************************
  QUOTE CARDS / TESTIMONIALS
*********************************/
.testimonials-grid {
  gap: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
}
/***********************************
 COOKIE CONSENT BANNER & MODAL
***********************************/
.cookie-banner {
  position: fixed;
  left: 0; right:0; bottom: 0;
  width: 100vw;
  background: #2D3228;
  color: #FFF;
  box-shadow: 0 -2px 18px 0 rgba(58,97,61,0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10010;
  padding: 24px 14px;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 1rem;
  transition: transform 0.22s cubic-bezier(0.62,0.09,0.28,0.99), opacity 0.18s;
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cookie-banner p {
  color: #fff;
  margin-bottom: 0;
  margin-right: 10px;
  line-height: 1.7;
  font-size: 1rem;
  flex: 2 1 220px;
}
.cookie-banner .btn-primary,
.cookie-banner .btn-secondary {
  padding: 10px 20px;
  font-size: 1rem;
  margin-left: 0;
  margin-right: 10px;
}
.cookie-banner .btn-primary { background: #3ABD7E; color: #FFF; border: none;}
.cookie-banner .btn-primary:hover{background: #205944;}
.cookie-banner .btn-secondary {background: #FFF; color:#205944; border:2px solid #3ABD7E;}
.cookie-banner .btn-secondary:hover{background: #3ABD7E;color: #fff;}

/***************
 COOKIE MODAL
***************/
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(44, 60, 39, 0.86);
  z-index: 11000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.17s;
}
.cookie-modal.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-content {
  background: #EFF5D4;
  color: #205944;
  border-radius: 18px;
  box-shadow: 0 8px 32px 0 rgba(58,97,61,0.12);
  padding: 34px 28px 24px 28px;
  width: 97vw;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.cookie-modal-content h2 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: #205944;
}
.cookie-modal-content ul {
  list-style: none;
  margin: 0;
  padding: 0 0 0 2px;
  color: #314131; 
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}
.cookie-category input[type=checkbox] {
  accent-color: #3ABD7E;
  width: 21px;
  height: 21px;
  border-radius: 9px;
  margin-right: 5px;
}
.cookie-category label {
  font-weight: 600;
  color: #205944;
  font-size: 1rem;
}
.cookie-category .category-note {
  font-size: 0.98rem;
  color: #314131;
  margin-left: 2px;
  font-style: italic;
}
.cookie-modal .btn-primary { margin-bottom: 10px; }
.cookie-modal .btn-secondary {margin-bottom: 10px;}
.cookie-modal-close {
  background: none;
  border: none;
  position: absolute;
  top: 17px; right: 22px;
  font-size: 2rem;
  color: #205944;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.16s;
}
.cookie-modal-close:hover { opacity: 1; }

/*******************************
 RESPONSIVE DESIGN
*******************************/
@media (max-width: 1024px) {
  .container { max-width: 92vw; padding: 0 9px; }
  .footer-top { gap: 20px; }
}
@media (max-width: 900px) {
  .content-wrapper, .features-grid, .usp-grid, .testimonials-grid, .service-list, .tour-list, .workshop-list, .articles-list {
    gap: 16px;
  }
  .footer-top { flex-direction: column; }
}
@media (max-width: 768px) {
  .features-grid, .usp-grid, .service-list, .tour-list, .workshop-list, .articles-list, .testimonials-grid, .content-wrapper {
    flex-direction: column;
    gap: 15px;
  }
  .hero-section { padding: 24px 6px; }
  .footer-top { gap: 15px; }
  .footer-brand { flex-direction: row; gap:13px; }
  .card, .feature, .usp-block, .service, .workshop-item, .tour-item, .testimonial-card, .article-summary {
    min-width: 0;
    width: 100%;
  }
  .footer-brand img { width: 38px; height: 38px; }
  .testimonials-grid { gap: 11px; }
}
@media (max-width:600px){
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.17rem; }
  .about-section, .contact-section, .section, .service, .feature, .usp-block, .workshop-item, .tour-item, .legal-section, .testimonials-section, .testimonials-card, .abo-section, .thankyou-section {
    padding: 17px 4px;
    border-radius: 10px;
    margin-bottom: 27px;
  }
}
@media (max-width: 480px) {
  html {font-size: 15px;}
  .container { padding: 0 1vw; }
  .footer-brand img { width: 28px; height: 28px; }
}

/********************************************
   ADDITIONAL MICRO-INTERACTIONS & EFFECTS
********************************************/
.btn-primary,
.btn-secondary,
.mobile-menu-toggle,
.article-tab,
.main-nav a,
.mobile-nav a,
.feature,
.service,
.usp-block,
.article-summary,
.testimonial-card {
  transition: background 0.18s, color 0.16s, box-shadow 0.19s, border-color 0.17s, transform 0.11s;
}

/* FOCUS VISIBLE OUTLINES FOR ACCESSIBILITY */
.btn-primary:focus,
.btn-secondary:focus,
.mobile-menu-toggle:focus,
.main-nav a:focus,
.mobile-nav a:focus,
.article-tab:focus {
  outline: 2px solid #3ABD7E;
  outline-offset: 2px;
}

/* ORGANIC/NATURAL SHAPE OVERRIDES */
.section,
.hero-section,
.features-section,
.services-section,
.testimonials-section,
.about-section,
.usp-section,
.articles-section,
.abo-section,
.tours-section,
.workshops-section,
.coaching-section,
.contact-section,
.legal-section,
.thankyou-section,
.feature,
.service,
.usp-block,
.article-summary,
.tour-item,
.workshop-item,
.testimonial-card,
.map-placeholder {
  border-radius: 22px 38px 14px 38px/
               38px 18px 32px 22px;
}

/* Subtle paper-like texture for organic feel on hero & major cards */
.hero-section, .testimonials-section, .feature, .usp-block, .service {
  background-image: url('data:image/svg+xml;utf8,<svg width="200" height="240" fill="none" xmlns="http://www.w3.org/2000/svg"><ellipse fill="%23EFF5D4" fill-opacity="0.09" cx="140" cy="38" rx="145" ry="38"/><ellipse fill="%233ABD7E" fill-opacity="0.07" cx="60" cy="214" rx="155" ry="26"/></svg>');
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: auto 78px;
}

/* FAQ, LEGAL, THANK YOU */
.legal-section {
  background: #F2F5EA;
  color: #314131;
}
.legal-section ul {margin-top: 8px;margin-bottom: 16px;}
.legal-section li {margin-bottom: 8px;}
.legal-section a {color: #14375D; text-decoration: underline;}
.thankyou-section {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #EBF6ED;
  text-align: center;
}
.thankyou-section h1 {color: #205944;}

/********************************************************
 MINIMUM 20PX MARGIN BETWEEN CARDS/SECTIONS – FLEX GAP
*********************************************************/
.section, .features-section, .testimonials-section, .services-section, .contact-section, .about-section, .usp-section, .articles-section, .tours-section, .workshops-section, .coaching-section, .abo-section, .thankyou-section {
  margin-bottom: 60px;
  padding: 40px 20px;
  gap: 24px;
}
.card-container, .features-grid, .usp-grid, .service-list, .testimonials-grid, .content-wrapper, .workshop-list, .tour-list, .articles-list {
  gap: 24px;
}
.card, .feature, .service, .testimonal-card, .usp-block, .tour-item, .workshop-item, .article-summary {
  margin-bottom: 20px;
}
/****************************************************/
/* UTILITIES */
.center {
  align-items: center !important;
  justify-content: center !important;
}
.flex-col {
  flex-direction: column !important;
}
.w100 {
  width: 100% !important;
}
.mt-24 { margin-top: 24px; }
.mb-16 { margin-bottom: 16px; }
.pb-0 { padding-bottom: 0 !important; }
.bg-accent { background: #3ABD7E !important; color: #fff !important; }

/*******************************************************
   PRINT COMPATIBILITY
*******************************************************/
@media print {
  header, footer, .hero-section, .btn-primary, .btn-secondary, .mobile-menu, .cookie-banner, .cookie-modal {
    display: none !important;
  }
  body { background: #fff; color: #16231d; }
  main, .container, .section { width: 100%; margin: 0; padding: 0; }
}
