/* === RESET & BASE STYLES === */
html, body {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  background: #F6F7F9;
  color: #153162;
  font-size: 16px;
  font-variant-ligatures: none;
  -webkit-font-smoothing: antialiased;
}
*, *::before, *::after { box-sizing: inherit; }

:root {
  --color-primary: #153162;
  --color-secondary: #5CB3A3;
  --color-accent: #F6F7F9;
  --color-warning: #FFAB00;
  --color-fun1: #F7628C; /* playful pink */
  --color-fun2: #F6C74B; /* lively yellow */
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

img { max-width: 100%; display: block; height: auto; border: 0; }
a { color: var(--color-primary); text-decoration: none; transition: color .2s; }
a:hover, a:focus { color: var(--color-fun1); outline: none; text-decoration: underline; }
ul, ol { padding-left: 20px; margin: 0 0 20px 0; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  margin: 0 0 16px 0;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; color: var(--color-primary); line-height: 1.1; margin-bottom: 20px; }
h2 { font-size: 2rem; color: var(--color-fun1); margin-bottom: 18px; }
h3 { font-size: 1.25rem; color: var(--color-secondary); margin-bottom: 12px; }
h4, h5, h6 { color: var(--color-primary); }
p, li {
  font-size: 1rem; line-height: 1.7; color: var(--color-primary); margin-bottom: 12px;
}
strong, b { font-weight: 700; }

body {
  min-height: 100vh;
  background: #F6F7F9;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 4px 20px rgba(92, 179, 163, 0.08), 0 2px 8px rgba(247,98,140,0.03);
}

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

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

.text-section {
  background: var(--color-accent);
  border-radius: 18px;
  padding: 32px 18px;
}

/* === HEADER & NAVIGATION === */
header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(92,179,163,0.03);
  position: sticky;
  top: 0;
  z-index: 1020;
  transition: box-shadow 0.2s;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  padding-top: 12px;
  padding-bottom: 12px;
}
header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
}
header nav a {
  font-family: var(--font-display);
  font-size: 1.06rem;
  font-weight: 600;
  border-radius: 10px;
  padding: 7px 15px;
  color: var(--color-primary);
  transition: background 0.17s, color 0.17s, box-shadow 0.15s;
  position: relative;
}
header nav a:not(.cta-btn):hover, header nav a:not(.cta-btn):focus {
  background: var(--color-fun2);
  color: var(--color-fun1);
  box-shadow: 0 2px 8px rgba(246,199,75,0.14);
}
header nav .cta-btn {
  background: var(--color-fun1);
  color: #fff;
  border-radius: 22px;
  padding: 9px 28px;
  font-size: 1rem;
  font-weight: 700;
  margin-left: 14px;
  box-shadow: 0 4px 16px rgba(246,98,140,0.08);
  transition: background 0.2s, box-shadow 0.2s, transform 0.13s;
  border: 2px solid var(--color-fun1);
}
header nav .cta-btn:hover, header nav .cta-btn:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
  border-color: var(--color-secondary);
  transform: scale(1.06) rotate(-1deg);
  box-shadow: 0 6px 18px rgba(92,179,163,0.12);
}

header img {
  height: 42px;
  width: auto;
  margin-right: 12px;
  vertical-align: middle;
}

/* Hamburger Button */
.mobile-menu-toggle {
  background: var(--color-fun1);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  font-size: 2rem;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 7px rgba(246,199,75,0.12);
  cursor: pointer;
  margin-left: 22px;
  transition: background 0.2s, box-shadow 0.2s, transform 0.14s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--color-secondary);
  transform: scale(1.08) rotate(3deg);
}

/* === MOBILE NAVIGATION === */
.mobile-menu {
  position: fixed;
  z-index: 2002;
  background: #fff;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  transform: translateX(-102vw);
  transition: transform 0.35s cubic-bezier(.7,.17,.3,1.12);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 38px 22px 16px 22px;
  box-shadow: 4px 0 16px rgba(92,179,163,0.13);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: var(--color-fun1);
  color: #fff;
  border: none;
  border-radius: 16px;
  width: 42px;
  height: 42px;
  font-size: 1.6rem;
  margin-bottom: 24px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(246,98,140,.08);
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--color-fun2);
  color: var(--color-primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.mobile-nav a {
  padding: 12px 0;
  font-size: 1.15rem;
  font-family: var(--font-display);
  color: var(--color-fun1);
  border-bottom: 2px solid var(--color-fun2);
  font-weight: 700;
  display: block;
  background: none;
  border-radius: 8px;
  transition: background .15s, color .15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-secondary);
  color: #fff;
}

/* Show/hide nav - Responsive */
@media (max-width: 991px) {
  header nav { display: none; }
  .mobile-menu-toggle { display: flex; }
}
@media (min-width: 992px) {
  .mobile-menu { display: none !important; }
  .mobile-menu-toggle { display: none !important; }
}

/* === HERO SECTION & MAIN CTA === */
.hero {
  background: linear-gradient(90deg, var(--color-fun2) 0 45%, #fff 100%);
  padding: 54px 0 38px 0;
  margin-bottom: 60px;
}
.hero .container {
  align-items: stretch;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: flex-start;
}
.hero h1 {
  color: var(--color-fun1);
  font-size: 2.6rem;
  font-family: var(--font-display);
  letter-spacing: 0.03em;
  font-weight: 900;
  margin-bottom: 12px;
  text-shadow: 1px 2px 0 var(--color-accent);
  animation: heroPulse 2s infinite alternate;
}
.hero p {
  font-size: 1.15rem;
  font-family: var(--font-body);
  color: var(--color-primary);
  margin-bottom: 22px;
}
.hero .cta-btn {
  margin-top: 8px;
  animation: bounceIn 1s 0.3s both;
}

@keyframes heroPulse {
  0% { text-shadow: 1px 2px 0 var(--color-accent); }
  100% { text-shadow: 2px 4px 12px var(--color-fun2); }
}

@keyframes bounceIn {
  0% { opacity: 0; transform: scale(0.3) translateY(-50px); }
  80% { opacity: 0.95; transform: scale(1.1) translateY(6px); }
  100% { opacity: 1; transform: none; }
}

/* === SECTION & FLEX SPACING === */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 24px;
  margin-bottom: 20px;
  position: relative;
  box-shadow: 0 4px 16px rgba(92,179,163,0.11);
  transition: box-shadow .2s, transform .17s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 32px rgba(246,98,140,0.13);
  transform: translateY(-3px) scale(1.025) rotate(-2deg);
}
.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: flex-start;
  gap: 18px;
  background: #fffbe7;
  border-radius: 24px;
  margin-bottom: 20px;
  padding: 20px;
  box-shadow: 0 3px 18px 0 rgba(246,199,75,0.20);
  border-left: 9px solid var(--color-fun2);
  position: relative;
  font-size: 1.08rem;
  color: #111;
  z-index: 1;
}
.testimonial-card p { color: #222; font-style: italic; }
.testimonial-card span strong {
  color: var(--color-secondary);
  font-family: var(--font-display);
}
.partner-logos {
  display: flex;
  gap: 24px;
  align-items: center;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Blog/article / featured article */
.blog-list {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-bottom: 36px;
}
.blog-list article {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(92,179,163,0.06);
  padding: 18px 16px;
  transition: box-shadow .17s, transform .14s;
}
.blog-list article a {
  color: var(--color-fun1);
  font-weight: 700;
  font-family: var(--font-display);
  display: inline-block;
  margin-top: 10px;
  transition: color .14s;
  font-size: 1rem;
}
.blog-list article:hover, .blog-list article:focus-within {
  box-shadow: 0 6px 17px rgba(92,179,163,0.13);
  transform: scale(1.016) rotate(-1.7deg);
}
.featured-article {
  background: var(--color-fun2);
  padding: 18px 15px;
  border-radius: 14px;
  color: #222;
  font-family: var(--font-body);
  margin-top: 24px;
  animation: featurePop .8s both;
}
@keyframes featurePop {
  0% { transform: scale(0.98); opacity: 0; }
  70% { opacity: .9; transform: scale(1.05); }
  100% { opacity: 1; transform: scale(1.01); }
}

.category-filter {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
  padding: 0;
}
.category-filter li {
  background: var(--color-fun1);
  color: #fff;
  font-family: var(--font-display);
  border-radius: 8px;
  padding: 6px 16px;
  font-size: 0.97rem;
  font-weight: 500;
  cursor: pointer;
  transition: filter .18s, background .13s;
}
.category-filter li:hover, .category-filter li:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
}

/* === SERVICE CARDS (services.html/index) === */
/* There's no .card element in the service list, stylizing the <ul><li> */
.content-wrapper > ul, .content-wrapper > ol {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 24px;
  padding: 0;
  list-style: none;
}
.content-wrapper > ul > li {
  background: #fff;
  border-radius: 18px;
  flex: 1 1 300px;
  box-shadow: 0 3px 10px rgba(92,179,163,0.10);
  padding: 18px 20px;
  margin-bottom: 20px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow .17s, transform .13s;
  position: relative;
  cursor: pointer;
  border-left: 7px solid var(--color-secondary);
  z-index: 1;
  animation: serviceCardPop 0.9s cubic-bezier(.47,1.64,.41,.8) both;
}
@keyframes serviceCardPop {
  0% { opacity: 0; transform: translateY(21px) scale(.97); }
  80% { opacity: 0.82; transform: scale(1.04); }
  100% { opacity: 1; transform: none; }
}
.content-wrapper > ul > li:hover, .content-wrapper > ul > li:focus {
  box-shadow: 0 8px 20px rgba(246,98,140,0.13);
  transform: translateY(-2.5px) scale(1.025) rotate(-2deg);
}
.content-wrapper > ul > li img {
  height: 42px;
  width: 42px;
}
.content-wrapper > ul > li h3, .content-wrapper > ul > li h2 {
  color: var(--color-fun1);
  font-size: 1.2rem;
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-weight: bold;
}
.content-wrapper > ul > li span {
  font-weight: bold;
  color: var(--color-secondary);
  margin-top: 8px;
  font-size: 1.03rem;
}
.content-wrapper > ul > li .cta-btn {
  margin-top: 7px;
  align-self: flex-start;
}

/* === BUTTONS AND CTA === */
.cta-btn {
  display: inline-block;
  background: var(--color-secondary);
  color: var(--color-primary);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  padding: 10px 30px;
  margin-top: 6px;
  border-radius: 22px;
  box-shadow: 0 4px 18px rgba(92,179,163,0.09);
  cursor: pointer;
  border: 2px solid var(--color-secondary);
  transition: background .18s, box-shadow .15s, color .16s, transform .15s;
  outline: none;
  text-align: center;
  line-height: 1.2;
  letter-spacing: 0.02em;
  border-bottom: 4px solid var(--color-fun1);
  position: relative;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--color-fun1);
  color: #fff;
  border-color: var(--color-fun2);
  box-shadow: 0 7px 26px rgba(246,98,140,.18);
  transform: scale(1.04) rotate(-1deg);
}
.cta-btn.secondary {
  background: var(--color-fun1);
  color: #fff;
  border-color: var(--color-fun1);
  margin-top: 7px;
}
.cta-btn.secondary:hover, .cta-btn.secondary:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
  border-color: var(--color-secondary);
}

/* === CONTACT DETAILS LIST === */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
  font-family: var(--font-body);
  font-size: 1.1rem;
}
.contact-details img { vertical-align: middle; height: 24px; margin-right: 7px; }
.map-location {
  padding: 14px 0;
  background: var(--color-accent);
  border-radius: 12px;
  color: var(--color-primary);
  font-size: 1rem;
}

/* === FOOTER === */
footer {
  background: var(--color-primary);
  color: #fff;
  padding: 40px 0 18px 0;
  font-size: 1rem;
  position: relative;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 36px;
  justify-content: space-between;
}
.footer-nav,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: var(--color-fun2);
  font-family: var(--font-display);
  margin-bottom: 3px;
  font-size: 1.02rem;
  transition: color .14s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--color-fun1);
}
.footer-contact p, .footer-contact img {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 4px;
}
.footer-logo img {
  width: 64px;
  height: auto;
  opacity: 0.92;
  margin-top: 12px;
}

/* === COOKIES BANNER === */
.cookie-banner {
  position: fixed;
  z-index: 3050;
  bottom: 0;
  left: 0;
  width: 100vw;
  padding: 32px 18px 22px 18px;
  background: #fffde8;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  box-shadow: 0 -6px 24px rgba(246,199,75,0.11);
  gap: 30px;
  font-size: 1rem;
  font-family: var(--font-body);
  border-top: 2.5px solid var(--color-fun2);
  animation: cookiePop .7s both;
}
@keyframes cookiePop { from { opacity: 0; transform: translateY(45px);} to{opacity:1; transform: none;} }
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
  flex-shrink: 0;
}
.cookie-banner .cookie-btn {
  background: var(--color-secondary);
  color: var(--color-primary);
  border-radius: 18px;
  padding: 8px 20px;
  border: 2px solid var(--color-secondary);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-right: 6px;
  cursor: pointer;
  transition: background .14s, color .14s, box-shadow .13s;
}
.cookie-banner .cookie-btn.accept {
  background: var(--color-fun1);
  color: #fff;
  border-color: var(--color-fun1);
}
.cookie-banner .cookie-btn.accept:hover, .cookie-banner .cookie-btn.accept:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.cookie-banner .cookie-btn.reject {
  background: #fff;
  color: var(--color-fun1);
  border-color: var(--color-fun1);
}
.cookie-banner .cookie-btn.reject:hover, .cookie-banner .cookie-btn.reject:focus {
  background: var(--color-fun2);
  color: var(--color-primary);
}
.cookie-banner .cookie-btn.settings {
  background: #fff;
  color: var(--color-secondary);
  border-color: var(--color-secondary);
}
.cookie-banner .cookie-btn.settings:hover, .cookie-banner .cookie-btn.settings:focus {
  background: var(--color-secondary);
  color: #fff;
}

/* === COOKIE MODAL === */
.cookie-modal-overlay {
  position: fixed;
  z-index: 3060;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(21,49,98,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .23s;
  animation: cookieModalIn .35s;
}
@keyframes cookieModalIn { from { opacity: 0; } to { opacity: 1;} }
.cookie-modal {
  background: #fff;
  color: var(--color-primary);
  min-width: 320px;
  max-width: 408px;
  border-radius: 28px;
  box-shadow: 0 10px 44px 0 rgba(95,122,142,0.18);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  animation: modalOpen .4s;
}
@keyframes modalOpen { from { opacity: 0; transform: scale(0.96);} to{opacity:1; transform: none;} }
.cookie-modal h2 {
  font-size: 1.35rem;
  font-family: var(--font-display);
  color: var(--color-fun1);
  margin-bottom: 6px;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  margin-bottom: 12px;
}
.cookie-modal .toggle {
  width: 40px;
  height: 22px;
  background: #eee;
  border-radius: 12px;
  position: relative;
  margin-right: 10px;
  transition: background 0.15s;
}
.cookie-modal .toggle input {
  display: none;
}
.cookie-modal .toggle-slider {
  position: absolute;
  top: 4px; left: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-fun2);
  transition: left .18s;
}
.cookie-modal .toggle input:checked + .toggle-slider {
  left: 22px;
  background: var(--color-fun1);
}
.cookie-modal .modal-actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
  justify-content: flex-end;
}
.cookie-modal .cookie-btn {
  border-radius: 18px;
  padding: 8px 17px;
  font-family: var(--font-display);
  font-size: 1rem;
  border: none;
  cursor: pointer;
  background: var(--color-secondary);
  color: var(--color-primary);
  font-weight: 700;
}
.cookie-modal .cookie-btn.accept { background: var(--color-fun1); color: #fff; }
.cookie-modal .cookie-btn.reject { background: #fff; color: var(--color-fun1); border: 2px solid var(--color-fun1); }
.cookie-modal .cookie-btn.settings { background: var(--color-secondary); color: var(--color-primary); }

/* == END COOKIE STYLES == */

/* === RESPONSIVE DESIGN MOBILE-FIRST === */
@media (max-width: 1199px) {
  .container { max-width: 960px; }
}
@media (max-width: 991px) {
  .container { max-width: 800px; }
  .footer-logo { order: 2; margin-top: 32px; }
}
@media (max-width: 768px) {
  .container { max-width: 98vw; padding: 0 4vw; }
  .content-wrapper, .footer-nav, .footer-contact, .content-grid, .section {
    flex-direction: column !important;
  }
  .content-wrapper > ul, .content-wrapper > ol {
    flex-direction: column !important;
    gap: 18px !important;
  }
  .testimonial-card, .card, .featured-article, .blog-list article {
    border-radius: 16px;
    padding: 16px 10px;
  }
  .text-image-section, .content-grid {
    flex-direction: column !important;
    gap: 18px !important;
  }
  .contact-details {
    gap: 10px;
    font-size: 0.99rem;
  }
  .footer-logo {
    width: 100%;
    margin: 0 auto 12px auto;
    display: flex;
    justify-content: center;
  }
  .footer-logo img { width: 54px; }
  .footer-nav, .footer-contact { font-size: 0.93rem; }
  .cookie-banner {
    flex-direction: column;
    gap: 15px;
    font-size: 0.98rem;
    padding: 24px 10px 16px 10px;
  }
  .cookie-banner .cookie-actions {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
}
@media (max-width: 520px) {
  .hero {
    padding: 28px 0 19px 0;
  }
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.25rem; }
  .section {
    padding: 22px 2vw;
    margin-bottom: 36px;
  }
  .testimonial-card, .card, .featured-article, .blog-list article {
    padding: 8px 3px;
    font-size: 0.97rem;
  }
}

/* === MICRO-ANIMATIONS === */
.cta-btn, .content-wrapper > ul > li, .testimonial-card, .card, .blog-list article {
  will-change: box-shadow, transform;
  transition: box-shadow .18s, transform .11s, color .16s, background .18s;
}

/* === PLAYFUL DECORATIVE ELEMENTS === */
/* Fun color borders or dots for cards */
.card::after, .testimonial-card::before, .content-wrapper > ul > li::before {
  content: "";
  display: block;
  position: absolute;
  top: -9px;
  right: 18px;
  width: 28px;
  height: 10px;
  border-radius: 60px;
  background: var(--color-fun1);
  opacity: 0.17;
  pointer-events: none;
}
.content-wrapper > ul > li::before {
  left: 14px;
  right: auto;
  background: var(--color-fun2);
  top: -7px;
  width: 14px;
  height: 14px;
}
.testimonial-card::before {
  left: 15px;
  right: auto;
  background: var(--color-fun2);
  top: -17px;
  width: 24px;
  height: 11px;
}
/* Slightly move dots on hover */
.content-wrapper > ul > li:hover::before, .testimonial-card:hover::before {
  top: -23px;
  transform: scale(1.3) rotate(12deg);
  background: var(--color-fun1);
  opacity: 0.26;
  transition: all .25s cubic-bezier(.58,1.62,.51,.78);
}

/* === FORMS (if any in future) === */
input, textarea, select {
  border-radius: 8px;
  border: 2px solid #d5dde6;
  font-size: 1.04rem;
  padding: 10px 12px;
  font-family: var(--font-body);
  background: #fff;
  margin-bottom: 12px;
  transition: border-color .15s;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--color-fun1);
}

/* === ACCESSIBILITY === */
:focus {
  outline: 3px dashed var(--color-fun1);
  outline-offset: 2px;
}

/* === UTILITIES === */
.hide { display: none !important; }
.flex-row { display: flex; flex-direction: row; }
.flex-col { display: flex; flex-direction: column; }
.gap-20 { gap: 20px; }
.center { justify-content: center; align-items: center; }

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