/* --- 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;
}
/* Normalize */
body {
  line-height: 1.6;
  background: #f7f9f6;
  color: #2e3d26;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
img {
  max-width: 100%;
  display: block;
  border: none;
}
a {
  color: #25405a;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #396d51;
  outline: none;
}
ul, ol {
  margin-left: 1.2em;
  padding-left: 0.7em;
}

/* ------ VARIABLES (fallbacks included) ------ */
:root {
  --color-primary: #25405a;
  --color-secondary: #7fc27f;
  --color-accent: #ffffff;
  --color-bg: #f7f9f6;
  --color-wood: #d2b48c;
  --color-earth: #8c7058;
  --color-green-dark: #396d51;
  --color-status-alert: #e39d60;
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5, h6 {
  color: #25405a;
  font-family: var(--font-display), 'Montserrat', Arial, sans-serif;
  line-height: 1.13;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  font-weight: 700;
}
h2 {
  font-size: 1.6rem;
  margin-bottom: 18px;
  font-weight: 600;
}
h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  font-weight: 500;
}
h4 { font-size: 1.1rem; font-weight: 500; }
h5, h6 { font-size: 1rem; font-weight: 400; }

p, li, dd {
  color: #2e3d26;
  font-family: var(--font-body), Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 16px;
}
strong {
  font-weight: 700;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #f7f9f6;
  border-radius: 34px;
  box-shadow: 0 3px 18px rgba(85,127,89,0.04);
}

.container {
  width: 100%;
  max-width: 1220px;
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

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

.text-section, .legal-section .content-wrapper {
  width: 100%;
  max-width: 680px;
  margin: 0 auto 40px auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

.text-section h2, .text-section h3 {
  margin-top: 18px;
}

.text-section a {
  text-decoration: underline;
  color: var(--color-secondary);
}
.text-section a:hover {
  color: var(--color-green-dark);
}

/* ---------- HEADER & NAVIGATION ---------- */
header {
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(34, 54, 21, 0.06);
  position: sticky;
  top: 0;
  z-index: 32;
  width: 100%;
  min-height: 72px;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

header a img {
  height: 46px;
  width: auto;
  margin-right: 10px;
}

.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  padding: 6px 12px;
  border-radius: 18px;
  color: #25405a;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.2s, color 0.2s;
  background: transparent;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--color-secondary);
  color: #fff;
}
.cta-btn {
  font-family: var(--font-display);
  background: var(--color-secondary);
  color: #ffffff;
  padding: 9px 24px;
  font-size: 1.07rem;
  font-weight: 600;
  border-radius: 24px;
  box-shadow: 0 2px 9px rgba(39, 67, 49, 0.09);
  border: 0;
  transition: background 0.18s, box-shadow 0.18s, color 0.18s, transform 0.14s;
  cursor: pointer;
  outline: none;
  letter-spacing: 0.01em;
  margin-left: 12px;
  margin-right: 0;
  display: inline-block;
  z-index: 1;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--color-green-dark);
  color: #fffbe7;
  box-shadow: 0 4px 16px rgba(39, 67, 49, 0.19);
  transform: translateY(-1px) scale(1.04);
}

/* ------------ MOBILE NAVIGATION ------------ */
.mobile-menu-toggle {
  position: fixed;
  top: 20px;
  right: 18px;
  z-index: 101;
  width: 46px;
  height: 46px;
  background: #fff;
  color: var(--color-primary);
  border: none;
  border-radius: 50%;
  font-size: 2rem;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(34,54,21,0.09);
  transition: background 0.15s, color 0.18s;
  cursor: pointer;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--color-secondary);
}
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(34,54,21,0.92);
  z-index: 110;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transition: transform 0.32s cubic-bezier(.77,0,.21,1), opacity 0.18s;
  transform: translateX(-100vw);
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  background: none;
  color: #f5faee;
  font-size: 2.5rem;
  border: none;
  padding: 18px 24px 0px 18px;
  align-self: flex-end;
  cursor: pointer;
  z-index: 120;
  transition: color 0.18s;
}
.mobile-menu-close:focus {
  color: var(--color-secondary);
  outline: 2px solid var(--color-secondary);
}
.mobile-nav {
  width: 100vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 40px 32px 0 32px;
  align-items: flex-start;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: #fffbe7;
  padding: 12px 0;
  border-radius: 16px;
  width: 100%;
  transition: background 0.18s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-secondary);
  color: #162116;
}

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

/* ------------ HERO AND CARD SECTIONS ------------ */
.hero-section {
  background: linear-gradient(115deg,#f5ede3 50%,#e5f0e3 100%);
  border-radius: 0 0 62px 62px;
  box-shadow: 0 4px 28px rgba(94, 172, 83, 0.06);
  margin-bottom: 44px;
  min-height: 324px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
}
.hero-section .container {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
}
.hero-section h1 {
  font-size: 2.4rem;
  color: var(--color-primary);
}
.hero-section p {
  font-size: 1.14rem;
  font-family: var(--font-body);
}

.features-section {
  background: #fffbe7;
  border-radius: 38px;
  box-shadow: 0 2px 12px rgba(123, 187, 108, 0.055);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  justify-content: space-between;
}
.feature-item {
  background: #f7f9f6;
  border-radius: 26px;
  box-shadow: 0 2px 10px rgba(92,161,102,0.07);
  padding: 22px;
  min-width: 220px;
  flex: 1 1 230px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  border-left: 5px solid var(--color-secondary);
  transition: box-shadow 0.2s, border-color 0.18s, transform 0.18s;
}
.feature-item:hover {
  box-shadow: 0 6px 23px rgba(92,161,102,0.13);
  border-left: 5px solid var(--color-green-dark);
  transform: translateY(-3px) scale(1.02);
}
.feature-item img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  margin-bottom: 0;
}

.card-container, .card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card {
  margin-bottom: 20px;
  background: #f7f9f6;
  border-radius: 19px;
  box-shadow: 0 2px 10px rgba(39, 67, 49, 0.06);
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

/* ------------ SERVICES & LIST BLOCKS ------------- */
.services-section {
  background: #f3f7ef;
  border-radius: 32px;
  box-shadow: 0 3px 19px rgba(167,187,127,0.055);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.service-list, .update-list, .kursliste, .step-list {
  margin: 0 0 32px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  list-style: none;
}
.kursliste li, .service-list li {
  background: #fff;
  border-radius: 20px;
  padding: 22px 16px 18px 20px;
  margin-bottom: 18px;
  box-shadow: 0 2px 8px rgba(38,58,34,0.048);
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-left: 6px solid var(--color-secondary);
  transition: box-shadow .18s, border-color .18s, transform .12s;
}
.kursliste li:hover, .service-list li:hover {
  box-shadow: 0 5px 19px rgba(60,127,79,0.12);
  border-left: 6px solid var(--color-green-dark);
  transform: translateY(-2px) scale(1.014);
}
.kursliste h2, .service-list h2 { font-size: 1.1rem; color: var(--color-primary); margin-bottom: 7px; }
.kursliste .ziel, .service-list .ziel {
  font-size: 0.96rem;
  color: var(--color-earth);
  background: #efecda;
  padding: 3px 12px;
  border-radius: 12px;
  margin-top: 4px;
  font-style: italic;
  align-self: flex-start;
}

.step-list li {
  font-size: 1rem;
  color: #25405a;
  position: relative;
  padding-left: 24px;
  margin-bottom: 14px;
}
.step-list li:before {
  content: '';
  display: inline-block;
  width: 12px; height: 12px;
  background: var(--color-secondary);
  border-radius: 50%;
  position: absolute;
  left: 0; top: 7px;
}

.faq-section {
  margin-top: 38px;
  background: #fffbe7;
  border-radius: 20px;
  padding: 22px 20px 8px;
  box-shadow: 0 5px 18px rgba(156,187,107,0.03);
}
.faq-section h3 {
  margin-bottom: 18px;
  font-size: 1.1rem;
  color: var(--color-primary);
}
dt {
  font-weight: 500;
  margin-top: 8px;
  color: var(--color-green-dark);
}
dd {
  margin-bottom: 8px;
  color: #25405a;
}

/* ---------- TABLES ---------- */
.zeitplan-tabelle {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 26px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 8px rgba(38,58,34,0.04);
  overflow: hidden;
  font-size: 1rem;
}
.zeitplan-tabelle th, .zeitplan-tabelle td {
  padding: 14px 12px;
  text-align: left;
  border: none;
}
.zeitplan-tabelle th {
  background: #e5f0e3;
  color: #25405a;
  font-weight: 600;
  font-size: 1.04rem;
}
.zeitplan-tabelle tbody tr:nth-child(odd) {
  background: #f7f9f6;
}
.zeitplan-tabelle tbody tr:nth-child(even) {
  background: #fbfaf6;
}
.zeitplan-tabelle td {
  border-left: 4px solid transparent;
  border-top: 1px solid #e2e3de;
  font-size: 1rem;
}
.zeitplan-tabelle tbody tr:hover td {
  border-left: 4px solid var(--color-secondary);
  background: #e6f6e3;
}

/* ---------- TESTIMONIALS ---------- */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  margin-bottom: 22px;
  box-shadow: 0 2px 14px rgba(148, 166, 117, 0.08);
  position: relative;
  border-left: 5px solid var(--color-secondary);
  transition: box-shadow 0.15s, border-color 0.18s, transform 0.13s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 23px rgba(108,177,92,0.14);
  border-left: 5px solid var(--color-green-dark);
  transform: translateY(-3px) scale(1.015);
}
.testimonial-card p {
  font-size: 1.05rem;
  color: #183628;
  margin-bottom: 6px;
  line-height: 1.5;
  font-style: italic;
}
.testimonial-card span {
  color: #25405a;
  font-size: 0.96rem;
  font-weight: 500;
  font-family: var(--font-display);
}

/* ---------- ALERT BOXES & UPDATES ---------- */
.alert-box {
  background: #ffe7d0;
  color: #58441c;
  border-left: 7px solid var(--color-status-alert);
  border-radius: 14px;
  margin-bottom: 20px;
  padding: 16px 18px;
  box-shadow: 0 2px 10px rgba(227,157,96,0.06);
  font-size: 1.05rem;
}

.update-list li {
  padding-left: 20px;
  position: relative;
  font-size: 1rem;
  color: #25405a;
}
.update-list li:before {
  content: "•";
  color: var(--color-secondary);
  position: absolute;
  left: 0;
  font-size: 1.3em;
  top: 0;
}

/* ---------- THANKYOU SECTION ---------- */
.thankyou-section {
  min-height: 320px;
  background: #e5f0e3;
  display: flex;
  align-items: center;
  border-radius: 34px;
  box-shadow: 0 4px 28px rgba(94, 172, 83, 0.069);
}
.thankyou-section h1 {
  font-size: 2rem;
}

/* ---------- CONTACT SECTION ---------- */
.contact-section {
  background: #fffbe7;
  border-radius: 30px;
  box-shadow: 0 3px 19px rgba(167,187,127,0.055);
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ---------- LEGAL SECTION ---------- */
.legal-section {
  background: #f7f9f6;
  border-radius: 30px;
  box-shadow: 0 2px 12px rgba(92,161,102,0.055);
  margin-bottom: 60px;
  padding: 40px 20px;
}

.legal-section h2 {
  color: var(--color-green-dark);
  font-size: 1.15rem;
  margin-top: 18px;
}
.legal-section ul,
.legal-section ol {
  margin-bottom: 12px;
  padding-left: 24px;
}

/* ---------- FOOTER ---------- */
footer {
  background: #e5f0e3;
  width: 100%;
  box-shadow: 0 -2px 12px rgba(52,105,67,0.03);
  padding: 30px 0 18px 0;
  border-radius: 28px 28px 0 0;
}
footer .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-nav a {
  color: #25405a;
  font-family: var(--font-body);
  font-size: 1rem;
  margin-bottom: 0px;
  border-radius: 12px;
  padding: 2px 8px;
  transition: background 0.16s, color 0.13s;
}
.footer-nav a:hover { background: #e3eddc; color: var(--color-green-dark); }

.footer-contact {
  color: #1a2a13;
  font-size: 1rem;
  font-family: var(--font-body);
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-contact a {
  color: var(--color-primary);
}
.footer-contact a:hover {
  color: var(--color-green-dark);
}
.footer-logo img {
  height: 38px;
  margin-top: 8px;
}

/* ------ SPACING & FLEXBOX UTILITY CLASSES ------ */
.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; }

/* ------- COOKIE CONSENT BANNER ------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1200;
  background: #fffbe7;
  border-top: 5px solid var(--color-secondary);
  box-shadow: 0 -2px 22px rgba(141,163,71,0.09);
  padding: 24px 16px 16px 24px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  font-size: 0.98rem;
  font-family: var(--font-body);
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
}
.cookie-banner button {
  padding: 8px 16px;
  border-radius: 16px;
  border: 1px solid var(--color-secondary);
  background: var(--color-secondary);
  color: #fff;
  font-weight: 600;
  font-family: var(--font-display);
  cursor: pointer;
  transition: background 0.16s, color 0.16s, border 0.13s;
  font-size: 1rem;
}
.cookie-banner button.cookie-reject {
  background: #fff;
  color: var(--color-secondary);
  border: 1.5px solid var(--color-secondary);
}
.cookie-banner button.cookie-reject:hover {
  background: #efecda;
  color: var(--color-green-dark);
}
.cookie-banner button.cookie-settings {
  background: var(--color-green-dark);
  border-color: var(--color-green-dark);
  color: #faf9f4;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--color-green-dark);
  color: #fffbe7;
  border-color: var(--color-green-dark);
}

/* --- COOKIE CONSENT MODAL --- */
.cookie-modal-overlay {
  position: fixed;
  z-index: 1400;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(34,54,21,0.54);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fffbe7;
  border-radius: 26px;
  max-width: 380px;
  width: 86vw;
  padding: 32px 22px 22px 22px;
  box-shadow: 0 6px 36px rgba(123,156,102,0.15);
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  animation: cookie-modal-in 0.36s cubic-bezier(.77,0,.21,1);
}
@keyframes cookie-modal-in {
  0% { transform: translateY(60px) scale(0.93); opacity: 0.2; }
  80% { transform: translateY(-10px) scale(1.03); }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal h3 {
  font-family: var(--font-display);
  color: var(--color-primary);
  font-size: 1.2rem;
  font-weight: 600;
}
.cookie-category {
  border-bottom: 1px solid #efecd3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 0;
  font-size: 1rem;
}
.cookie-category label {
  font-weight: 500;
  color: var(--color-green-dark);
}
.cookie-category input[type=checkbox] {
  width: 18px; height: 18px;
  accent-color: var(--color-secondary);
}
.cookie-category .essential {
  color: #726230;
  font-size: 0.95em;
  margin-left: 6px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
}
.cookie-modal button {
  padding: 7px 15px;
  border-radius: 14px;
  border: 1px solid var(--color-secondary);
  background: var(--color-secondary);
  color: #fff;
  font-weight: 600;
  font-family: var(--font-display);
  cursor: pointer;
  font-size: 1rem;
}
.cookie-modal button.cookie-cancel {
  background: #fff;
  color: var(--color-secondary);
  border: 1.5px solid var(--color-secondary);
}
.cookie-modal button.cookie-cancel:hover {
  background: #f3f7ef;
  color: var(--color-green-dark);
}
.cookie-modal-close {
  position: absolute;
  top: 1px; right: 6px;
  font-size: 2rem;
  border: none;
  background: none;
  color: #ca9736;
  cursor: pointer;
  transition: color 0.14s;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  color: #866910;
  outline: none;
}

/* --- GENERAL BUTTONS & INTERACTIVE STATES --- */
button, .cta-btn {
  transition: background 0.18s, box-shadow 0.18s, color 0.16s, transform 0.14s;
}
button:active, .cta-btn:active {
  transform: scale(0.98);
}

::-webkit-input-placeholder { color: #98a179; }
::-moz-placeholder { color: #98a179; }
:-ms-input-placeholder { color: #98a179; }
::placeholder { color: #98a179; }

/* --- MEDIA QUERIES, RESPONSIVE FLEX LAYOUTS --- */
@media (max-width: 1100px) {
  .feature-grid {
    flex-direction: column;
    gap: 22px;
  }
  .container {
    max-width: 95vw;
    padding: 0 10px;
  }
}
@media (max-width: 900px) {
  .features-section, .services-section, .legal-section, .contact-section, .thankyou-section {
    padding: 34px 8px;
  }
  .content-wrapper {
    padding: 0 2px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 99vw;
    padding: 0 3vw;
  }
  .content-grid, .feature-grid, .card-container, .card-grid {
    flex-direction: column;
    gap: 18px;
  }
  header .container {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }
  .footer-logo img {
    margin-top: 12px;
    height: 34px;
  }
  .footer-nav, .footer-contact {
    font-size: 0.98rem;
  }
  .feature-item {
    min-width: 165px;
    padding: 16px;
  }
  .card {
    padding: 13px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
    padding: 13px 14px;
  }
}
@media (max-width: 600px) {
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.19rem; }
  .hero-section { padding: 28px 0; min-height: 193px; }
  .features-section, .services-section, .legal-section, .thankyou-section, .contact-section {
    padding: 22px 3vw;
    border-radius: 20px;
  }
  .footer-logo img {
    height: 29px;
  }
  .footer-contact { font-size: 0.96rem; }
  .cookie-banner {
    flex-direction: column;
    gap: 15px;
    padding: 14px 10px 9px 12px;
    font-size: 0.92rem;
  }
  .cookie-banner .cookie-actions { gap: 9px; }
}

/* ---------- PRINT STYLES ---------- */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal-overlay {
    display: none !important;
  }
  body { background: white; }
  .container { max-width: 100vw; padding: 0; }
}
