/*=== 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,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 {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*,*::before,*::after {
  box-sizing: inherit;
}
body {
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  background: #F9F6F1;
  color: #203248;
}
ol, ul {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}
a {
  text-decoration: none;
  color: #d39000;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #203248;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
  color: inherit;
}

/*=== BRAND TYPOGRAPHY ===*/
@import url('https://fonts.googleapis.com/css?family=Merriweather:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,400italic,500,700&display=swap');
:root {
  --font-display: 'Merriweather', serif;
  --font-body: 'Roboto', Arial, sans-serif;
  --color-primary: #203248;
  --color-secondary: #D1D6D3;
  --color-accent: #FFD700;
  --color-accent-alt: #FFE477;
  --color-bg: #F9F6F1;
  --color-card: #FFF9EC;
  --color-stroke: #efe6db;
  --color-error: #b30000;
  --color-success: #1e7130;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  background: var(--color-bg);
  color: var(--color-primary);
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--color-primary);
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; line-height: 1.2; margin-bottom: 28px; }
h2 { font-size: 2rem; margin-bottom: 20px; line-height: 1.2; }
h3 { font-size: 1.3rem; margin-bottom: 14px; line-height: 1.3; }
h4, h5, h6 { margin-bottom: 10px; }
p, li {
  font-size: 1rem;
  margin-bottom: 12px;
}
strong {
  font-weight: 700;
}

/*=== CONTAINER UTILS ===*/
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  margin-bottom: 32px;
}
.content-wrapper.center,
.center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
}

/*=== SECTION SPACING ===*/
section {
  width: 100%;
  background: transparent;
  border-radius: 24px;
  margin-bottom: 60px;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
@media (max-width: 768px) {
  section {
    padding: 28px 6px;
    margin-bottom: 40px;
  }
  .container {
    padding: 0 8px;
  }
}

/*=== HEADER & NAVIGATION ===*/
header {
  background: #fffdfa;
  box-shadow: 0 2px 12px rgba(32,50,72,0.04);
  border-bottom: 1.5px solid var(--color-stroke);
  border-radius: 0 0 22px 22px;
  position: sticky;
  top: 0;
  z-index: 20;
  padding-top: 0.5rem;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 70px;
}
header img[alt="SchachMeister Kompass"] {
  max-height: 48px;
  margin-right: 20px;
}
/* Main Nav (Desktop) */
.main-nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  align-items: center;
}
.main-nav a {
  color: var(--color-primary);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.06rem;
  border-radius: 24px;
  padding: 7px 14px;
  transition: background 0.14s, color 0.14s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--color-accent-alt);
  color: #7c842e;
}
.cta.primary {
  margin-left: 14px;
  background: var(--color-accent);
  color: #203248;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  padding: 9px 28px;
  border-radius: 24px;
  box-shadow: 0 2px 12px rgba(219,173,11, 0.10);
  transition: background 0.18s, color 0.16s, box-shadow 0.16s;
}
.cta.primary:hover,.cta.primary:focus {
  background: #ffe574;
  color: #1a2538;
  box-shadow: 0 4px 22px rgba(219,173,11,0.18);
}

/*--- Hamburger Mobile Menu ---*/
.mobile-menu-toggle {
  display: none;
  background: var(--color-accent);
  color: var(--color-primary);
  font-size: 2rem;
  border-radius: 16px;
  padding: 4px 16px;
  cursor: pointer;
  margin-left: 8px;
  border: none;
  transition: background 0.16s;
  z-index: 32;
}
.mobile-menu-toggle:hover,.mobile-menu-toggle:focus {
  background: #ffe667;
  color: #ae9001;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fffdfa;
  z-index: 9999;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 30px 24px 24px 24px;
  box-shadow: 0 2px 32px rgba(32,50,72, 0.13);
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(.23,1.11,.59,.96);
  border-radius: 0 0 24px 0;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2rem;
  background: none;
  border: none;
  color: var(--color-primary);
  border-radius: 10px;
  padding: 2px 10px;
  margin-bottom: 20px;
  cursor: pointer;
  transition: background 0.12s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--color-accent-alt);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 18px;
  align-items: flex-start;
}
.mobile-nav a {
  color: var(--color-primary);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.2rem;
  padding: 8px 12px;
  border-radius: 14px;
  transition: background 0.17s, color 0.17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-accent-alt);
  color: #7c842e;
}

@media (max-width: 1000px) {
  .container {
    max-width: 98vw;
  }
  .main-nav a {
    padding: 7px 7px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 96vw;
  }
  .main-nav {
    gap: 16px;
  }
}
@media (max-width: 860px) {
  .main-nav {
    gap: 8px;
  }
}
@media (max-width: 800px) {
  header .container {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }
  .main-nav a { font-size: 1rem; }
}
@media (max-width: 768px) {
  .main-nav,
  .cta.primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header img[alt="SchachMeister Kompass"] {
    max-height: 40px;
    margin-right: 10px;
  }
  header .container {
    gap: 8px;
  }
}

/*=== CTA ACCENT BUTTONS ===*/
.cta.accent {
  background: var(--color-primary);
  color: #FFD700;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.17rem;
  border-radius: 24px;
  padding: 10px 28px;
  margin-top: 14px;
  margin-bottom: 14px;
  box-shadow: 0 2px 12px rgba(32,50,72,0.11);
  transition: background 0.13s, color 0.13s, box-shadow 0.16s;
  display: inline-block;
}
.cta.accent:hover, .cta.accent:focus {
  background: #385689;
  color: #ffe273;
  box-shadow: 0 6px 18px rgba(32,50,72,0.17);
}

/*=== FLEX LAYOUTS (MANDATORY ALIGN, SPACING) ===*/
/* Card containers for feature lists, core values, etc. */
.card-container, .feature-grid, .spielregeln-grid, .core-values-grid, .tactics-overview-grid, .openings-list-grid, .faq-accordion {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 12px;
  margin-bottom: 24px;
}
/* Content grid for diverse flex layouts */
.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;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--color-card);
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(32,50,72,0.07);
  padding: 28px 24px 26px 24px;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: box-shadow 0.21s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 4px 32px rgba(32,50,72,0.17);
}

/* List items in core values, tactics, feature etc. */
.feature-grid > li, .core-values-grid > div, .spielregeln-grid > div, .tactics-overview-grid > div, .openings-list-grid > div {
  background: var(--color-card);
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(255,215,0,0.05), 0 2px 18px rgba(32,50,72,0.09);
  padding: 22px 18px 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  min-width: 210px;
  max-width: 360px;
  flex: 1 1 201px;
  margin-bottom: 20px;
  transition: box-shadow 0.17s;
}
.feature-grid > li:hover, .core-values-grid > div:hover, .spielregeln-grid > div:hover, .tactics-overview-grid > div:hover, .openings-list-grid > div:hover {
  box-shadow: 0 4px 32px rgba(255,215,0,0.11), 0 6px 18px rgba(32,50,72,0.12);
}
.feature-grid img, .core-values-grid img, .spielregeln-grid img, .tactics-overview-grid img, .openings-list-grid img {
  width: 48px;
  height: 48px;
  margin-bottom: 4px;
  border-radius: 16px;
}
.feature-grid h3,.core-values-grid h3,.spielregeln-grid h3,.tactics-overview-grid h3,.openings-list-grid h3 {margin-bottom: 7px;}

@media (max-width: 900px){
  .card-container, .feature-grid, .spielregeln-grid, .core-values-grid, .tactics-overview-grid, .openings-list-grid {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .card-container, .content-grid, .feature-grid,
  .spielregeln-grid, .core-values-grid, .tactics-overview-grid, .openings-list-grid {
    flex-direction: column;
    gap: 17px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* FAQ Accordion (no JS, just style) */
.faq-accordion > div {
  background: #fffdfa;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(32,50,72,0.07);
  padding: 18px 18px 10px 18px;
  margin-bottom: 20px;
}
.faq-accordion h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

/*=== TESTIMONIALS ===*/
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fffdfa;
  margin-bottom: 20px;
  border-radius: 21px;
  box-shadow: 0 2px 14px rgba(32,50,72,0.08);
  border: 1px solid #f4e0ae;
  color: #203248;
  min-width: 240px;
  max-width: 610px;
  transition: box-shadow 0.18s, border 0.14s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 26px rgba(255,215,0,0.10), 0 8px 28px rgba(32,50,72,0.11);
  border: 1.5px solid #ffd700;
}
.testimonial-card blockquote {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: #6e5520;
  margin-right: 10px;
  line-height: 1.45;
}
.testimonial-card p {
  font-size: 0.98rem;
  color: #203248;
  margin-bottom: 0;
}

@media (max-width: 540px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 16px;
  }
}

/*=== FOOTER ===*/
footer {
  background: #fffdfa;
  border-top: 1.5px solid var(--color-stroke);
  border-radius: 22px 22px 0 0;
  padding: 36px 0 16px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 4px;
  margin-top: 2px;
}
.footer-nav a {
  font-size: 1rem;
  color: #6a604d;
  font-family: var(--font-body);
  padding: 5px 11px;
  border-radius: 10px;
  transition: background 0.16s, color 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--color-accent-alt);
  color: #ae9001;
}
.footer-contact p {
  font-size: 0.95rem;
  color: #8a8c82;
  margin-bottom: 0;
  text-align: center;
}

@media (max-width: 768px) {
  footer .container {
    padding: 0 4px;
  }
  .footer-nav {
    gap: 13px;
  }
  .footer-contact p {
    font-size: 0.9rem;
  }
}

/*=== CONTACT SECTION ===*/
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 9px;
  font-size: 1.06rem;
  margin-bottom: 16px;
}
.contact-details img {
  vertical-align: middle;
  margin-right: 4px;
  width: 22px;
  height: 22px;
}
.map {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 13px;
  font-size: 0.97rem;
  color: #715900;
}

/*=== CARDS (Resources, Features, Values, etc.) ===*/
.card {
  background: var(--color-card);
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(32,50,72,0.07);
  padding: 28px 24px 26px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/*=== BUTTON STYLES ===*/
button, .cta, input[type=button], input[type=submit] {
  cursor: pointer;
  outline: none;
  border: none;
}
.cta, .btn, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 23px;
  border-radius: 22px;
  font-family: var(--font-display);
  font-size: 1.11rem;
  font-weight: 600;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
.cta.accent:active, .cta.primary:active, .cta:active {
  scale: 0.97;
  box-shadow: 0 2px 10px rgba(32,50,72,0.14);
}

/*=== LIST STYLES ===*/
ul {
  margin-bottom: 15px;
  padding-left: 22px;
}
ul li {
  position: relative;
  margin-left: 0;
  margin-bottom: 11px;
  padding-left: 16px;
}
ul li:before {
  content: "";
  display: inline-block;
  background: var(--color-accent);
  width: 8px; height: 8px;
  border-radius: 50%;
  position: absolute;
  left: 0; top: 0.6em;
}

/*=== FORM FIELDS (for potential future forms) ===*/
input, textarea, select {
  border-radius: 13px;
  border: 1.5px solid #ebe3cf;
  padding: 9px 13px;
  background: #fffdfa;
  margin-bottom: 10px;
  font-size: 1rem;
  box-shadow: 0 1px 7px rgba(32,50,72,0.06);
  transition: border 0.18s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--color-accent);
  outline: none;
}

/*=== COOKIE CONSENT BANNER ===*/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 11000;
  background: #fffbe8;
  box-shadow: 0 -4px 32px rgba(32,50,72,0.09);
  border-top: 1.5px solid var(--color-accent);
  padding: 22px 18px 22px 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  animation: cookie-slidein 0.7s cubic-bezier(.27,1.21,.47,.91);
  font-family: var(--font-body);
}
@keyframes cookie-slidein {
  from { transform: translateY(120%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  color: #665115;
  font-size: 1rem;
  margin: 0 13px 0 0;
  flex: 1 1 200px;
}
.cookie-banner .cookie-btn {
  margin-left: 1px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 21px;
  border-radius: 17px;
  border: none;
  background: var(--color-accent);
  color: var(--color-primary);
  box-shadow: 0 1px 10px rgba(255,215,0,0.07);
  margin-right: 5px;
  transition: background 0.14s, color 0.18s;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: #ffe477;
  color: #7c7f23;
}
.cookie-banner .cookie-btn.settings {
  background: #fffdfa;
  color: #203248;
  border: 1.5px solid #e0dac1;
}
.cookie-banner .cookie-btn.settings:hover, .cookie-banner .cookie-btn.settings:focus {
  background: var(--color-accent-alt);
  color: #ae9001;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    gap: 13px;
    align-items: stretch;
    text-align: left;
  }
  .cookie-banner p { margin-bottom: 8px; }
}


/*=== COOKIE POPUP MODAL ===*/
.cookie-modal {
  display: none;
  position: fixed;
  left: 0;right: 0;top: 0;bottom: 0;
  z-index: 12000;
  background: rgba(32,50,72,0.36);
  justify-content: center;
  align-items: center;
  transition: opacity 0.18s;
}
.cookie-modal.open {
  display: flex;
}
.cookie-modal .modal-content {
  background: #fffbe8;
  border-radius: 22px;
  box-shadow: 0 7px 40px rgba(32,50,72,0.14);
  padding: 38px 26px 32px 26px;
  min-width: 285px;
  max-width: 360px;
  width: 98vw;
  font-family: var(--font-body);
  color: #5e4c27;
  display: flex;
  flex-direction: column;
  gap: 13px;
  animation: cookie-fade 0.5s cubic-bezier(.34,.96,.56,1.09);
}
@keyframes cookie-fade {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}
.cookie-modal .close-modal {
  position: absolute;
  right: 23px;
  top: 19px;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: #203248;
  font-weight: 900;
  border-radius: 10px;
  padding: 2px 10px;
  cursor: pointer;
  transition: background 0.12s;
  z-index: 3;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  background: var(--color-accent-alt);
}
.cookie-modal h2 {
  font-size: 1.24rem;
  margin-bottom: 17px;
  font-family: var(--font-display);
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 13px;
}
.cookie-modal label {
  position: relative;
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1.04rem;
  font-weight: 500;
}
.cookie-modal input[type="checkbox"] {
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 7px;
  border: 2px solid var(--color-accent);
  background: #fffdfa;
  transition: background 0.16s, border 0.17s;
  margin-right: 9px;
  cursor: pointer;
}
.cookie-modal input[type="checkbox"]:checked {
  background: var(--color-accent);
  border-color: var(--color-primary);
}
.cookie-modal .cookie-switch {
  position: relative;
  width: 36px;
  height: 20px;
  border-radius: 12px;
  background: #ebe6ce;
  margin-right: 11px;
  transition: background 0.16s;
  box-shadow: 0 1px 5px rgba(32,50,72,0.13);
}
.cookie-modal .cookie-switch input[type="checkbox"] {
  width: 36px;
  height: 20px;
  opacity: 0;
  position: absolute;
  left: 0; top: 0;
}
.cookie-modal .cookie-switch .slider {
  position: absolute;
  left: 3px; top: 3px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--color-accent);
  transition: left 0.16s, background 0.15s;
}
.cookie-modal .cookie-switch input[type="checkbox"]:checked + .slider {
  left: 19px;
  background: var(--color-primary);
}
.cookie-modal .cookie-buttons {
  display: flex;
  gap: 11px;
  margin-top: 10px;
}
.cookie-modal .cookie-buttons .cookie-btn {
  font-size: 1rem;
  padding: 8px 21px;
  border-radius: 17px;
}
/* Essential cookies visually different */
.cookie-modal .essential {
  color: #a18b1c;
  text-decoration: underline dotted var(--color-accent);
  background: #ffd7001a;
  border-radius: 7px;
  padding: 2px 8px;
  font-size: 0.97rem;
}

/*=== GENERAL ANIMATIONS (SUBTLE MICRO-INTERACTIONS) ===*/
.card, .feature-grid > li, .core-values-grid > div, .spielregeln-grid > div, .tactics-overview-grid > div, .openings-list-grid > div, .testimonial-card, .faq-accordion > div {
  transition: box-shadow 0.17s, transform 0.11s;
}
.card:hover, .feature-grid > li:hover, .core-values-grid > div:hover, .spielregeln-grid > div:hover, .tactics-overview-grid > div:hover, .openings-list-grid > div:hover, .testimonial-card:hover {
  transform: translateY(-3px) scale(1.018);
  box-shadow: 0 8px 36px rgba(32,50,72,0.12);
}

.cta, .btn, .cookie-btn {
  transition: background 0.13s, color 0.13s, box-shadow 0.13s, transform 0.1s;
}
.cta:active, .btn:active, .cookie-btn:active {
  transform: scale(0.97);
}

/*=== COLOR ACCESSIBILITY IN TESTIMONIALS/REVIEWS ===*/
.testimonial-card, .testimonial-card blockquote {
  color: #24365a !important;
  background: #fffdfa !important;
}

/*=== CUSTOM SCROLLBAR FOR BRAND FEEL ===*/
::-webkit-scrollbar{
  width: 8px;
  background: #fffbe8;
}
::-webkit-scrollbar-thumb {
  background: #ffe47d;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
  background: #ffd700;
}

/*=== MISC RESPONSIVENESS ===*/
@media (max-width: 600px) {
  h1 { font-size: 1.48rem; }
  h2 { font-size: 1.17rem; }
  .cta, .cta.accent, .cta.primary { font-size: 0.98rem; }
  .card, .feature-grid > li, .core-values-grid > div, .spielregeln-grid > div, .tactics-overview-grid > div, .openings-list-grid > div {
    padding: 16px 8px 13px 12px;
    max-width: 100vw;
  }
}

/*=== Z-INDEX/LAYERING FIXES FOR NAV/MENU/BANNER ===*/
header { z-index: 20; }
.mobile-menu { z-index: 9999; }
.cookie-banner { z-index: 11000; }
.cookie-modal { z-index: 12000; }

/*=== PRINTING (OPTIONAL) ===*/
@media print {
  header, footer, .mobile-menu, .cookie-banner { display: none !important; }
  body { background: #fff; }
  section { background: #fff; }
}
