/* 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;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.4;
  background: #F7F5ED;
  color: #284875;
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
  border: 0;
}
a {
  text-decoration: none;
  color: #A2B931;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #284875;
}
ul, ol {
  list-style: none;
}
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  text-align: left;
  padding: 12px 8px;
}

/* BRAND COLORS AND FONTS */
:root {
  --primary: #284875;
  --primary-rgb: 40, 72, 117;
  --secondary: #A2B931;
  --accent: #F7F5ED;
  --danger: #EF476F;
  --text-dark: #263145;
  --text-light: #fff;
  --box-radius: 20px;
  --shadow: 0 4px 24px rgba(40, 72, 117, 0.08);
  --shadow-strong: 0 6px 36px rgba(40, 72, 117, 0.12);
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
}

/* CONTAINER & SECTIONS */
.container {
  width: 100%;
  max-width: 1176px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
}
.section,
main>section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--accent);
  border-radius: var(--box-radius);
  box-shadow: var(--shadow);
  position: relative;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-section {
  margin-bottom: 24px;
  background: #fff;
  border-radius: 18px;
  padding: 28px 20px 20px 20px;
  box-shadow: 0 2px 12px rgba(40,72,117, 0.06);
}
.text-section:last-child {
  margin-bottom: 0;
}

/* LAYOUT FLEXBOX PATTERNS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  flex: 1 1 280px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: var(--box-radius);
  box-shadow: var(--shadow);
  position: relative;
  transition: box-shadow .2s, transform .15s;
  min-width: 240px;
}
.card:hover {
  box-shadow: var(--shadow-strong);
  transform: translateY(-5px) scale(1.03) rotate(-2deg);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 20px 24px 20px;
  gap: 16px;
}
.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;
  margin-bottom: 20px;
  background: #fff;
  box-shadow: 0 2px 14px rgba(40,72,117,0.08);
  border-radius: 18px;
  font-size: 17px;
  color: var(--text-dark);
  transition: box-shadow .18s, transform .15s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 32px rgba(162,185,49,0.18);
  transform: scale(1.02) rotate(1deg);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* TYPOGRAPHY */
h1, h2, h3, h4 {
  font-family: var(--font-display), Arial, Helvetica, sans-serif;
  font-weight: bold;
  color: var(--primary);
  letter-spacing: -0.01em;
}
h1 {
  font-size: 2.8rem;
  line-height: 1.12;
  margin-bottom: 12px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #A2B931;
}
h3 {
  font-size: 1.34rem;
  margin-bottom: 6px;
}
h4 {
  font-size: 1.08rem;
}
p {
  font-family: var(--font-body), Arial, sans-serif;
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}
strong, b {
  color: #A2B931;
  font-weight: 700;
}

/* Fun/Playful fonts */
body {
  font-family: var(--font-body), Arial, sans-serif;
}
.hero h1, .hero h2, .cta, .mobile-menu-toggle, .mobile-menu-close {
  font-family: var(--font-display), Arial, Helvetica, sans-serif;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(90deg, #A2B931 50%, #F7F5ED 100%);
  border-radius: 28px;
  margin-bottom: 60px;
  padding: 48px 0;
  box-shadow: 0 8px 54px rgba(162,185,49, 0.16);
  position: relative;
  overflow: hidden;
}
.hero .content-wrapper {
  align-items: flex-start;
}
.hero h1 {
  color: #284875;
  font-size: 2.8rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.hero p {
  font-size: 1.27rem;
  color: #263145;
  font-weight: 500;
  margin-bottom: 22px;
}

/* TABLES (Preise) */
table {
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
  overflow: hidden;
  font-size: 1rem;
}
th {
  background: #A2B931;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.09rem;
}
td {
  border-bottom: 1px solid #F7F5ED;
}
tr:last-child td {
  border-bottom: none;
}

/* LISTS */
ul {
  margin-top: 0;
  margin-bottom: 20px;
  padding-left: 4px;
}
ul>li::before {
  content: '\2022';
  color: #284875;
  margin-right: 10px;
  font-size: 1.3em;
  vertical-align: center;
}
ol {
  counter-reset: step;
  list-style: none;
  padding-left: 2px;
}
ol>li {
  position: relative;
  padding-left: 28px;
}
ol>li:before {
  counter-increment: step;
  content: counter(step) '.';
  position: absolute;
  left: 0;
  color: #A2B931;
  font-weight: 700;
}

/* CALL TO ACTION BUTTONS */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display), Arial, Helvetica, sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  background: #A2B931;
  color: #fff;
  border-radius: 99px;
  padding: 15px 32px;
  box-shadow: 0 2px 10px rgba(162,185,49,.08);
  border: none;
  cursor: pointer;
  outline: none;
  margin-top: 14px;
  margin-bottom: 12px;
  gap: 12px;
  transition: background .18s, box-shadow .22s, transform .13s;
  z-index: 1;
  letter-spacing: 0.01em;
}
.cta.primary {
  background: #284875;
  color: #fff;
  box-shadow: 0 4px 16px rgba(40,72,117,0.17);
  letter-spacing: 0.03em;
}
.cta:hover, .cta:focus {
  background: #222;
  color: #A2B931;
  transform: translateY(-4px) scale(1.04) rotate(-2deg);
}
.cta.primary:hover, .cta.primary:focus {
  background: #A2B931;
  color: #fff;
}

/* Price Bubbles */
.price {
  background: #A2B931;
  color: #fff;
  padding: 7px 18px;
  border-radius: 28px;
  display: inline-block;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 1rem;
  margin-top: 10px;
  margin-bottom: 6px;
  box-shadow: 0 2px 14px rgba(162,185,49,0.09);
  letter-spacing: 0.01em;
}

/* HEADER & NAVIGATION */
header {
  background: #fff;
  box-shadow: 0 4px 16px rgba(40,72,117,0.05);
  padding: 0;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1003;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 16px;
}
header a img {
  display: block;
  max-height: 54px;
}
nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
nav a {
  color: var(--primary);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.18s;
  position: relative;
  padding: 6px 8px 5px 8px;
}
nav a:hover, nav a:focus {
  color: #A2B931;
  text-decoration: underline wavy #A2B931 2px;
  text-underline-offset: 7px;
}
header .cta {
  margin-left: 30px;
  margin-bottom: 0;
}

/* BURGER MENU (Mobile) */
.mobile-menu-toggle {
  display: inline-flex;
  background: #A2B931;
  color: #fff;
  border: none;
  border-radius: 99px;
  font-size: 1.7rem;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-left: 18px;
  cursor: pointer;
  transition: background .14s, color .16s, box-shadow .2s;
  box-shadow: 0 2px 10px rgba(162,185,49,.12);
  z-index: 1102;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #284875;
  color: #fff;
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(40,72,117,0.92);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform .38s cubic-bezier(.7,0,.2,1), opacity .26s linear;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  margin: 16px 18px 0 0;
  background: #A2B931;
  color: #fff;
  border: none;
  border-radius: 99px;
  font-size: 2.1rem;
  width: 46px;
  height: 46px;
  cursor: pointer;
  transition: background .17s, color .16s;
  box-shadow: 0 4px 14px rgba(162,185,49,.14);
  z-index: 1103;
  align-self: flex-end;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #fff;
  color: #A2B931;
}
.mobile-nav {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 22px;
  padding: 0 28px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  padding: 12px 14px;
  border-radius: 16px;
  text-align: right;
  width: 100%;
  transition: background .14s, color .14s;
  letter-spacing: 0.01em;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #A2B931;
  color: #fff;
}

/* HIDE NAV ON MOBILE, SHOW BURGER */
@media (max-width: 991px) {
  header nav { display: none; }
  header .cta { display: none; }
  .mobile-menu-toggle { display: flex; }
}
@media (min-width: 992px) {
  .mobile-menu, .mobile-menu.open, .mobile-menu-close { display: none; }
}

/* MAIN STYLES RESPONSIVE */
@media (max-width: 991px) {
  .container {
    max-width: 98vw;
    padding: 0 8px;
  }
  .section, main>section {
    padding: 30px 6px;
    margin-bottom: 38px;
  }
  .content-wrapper {
    gap: 15px;
  }
  .testimonial-card, .card, .text-section {
    padding: 16px 10px;
  }
  h1 {
    font-size: 2.1rem;
  }
  h2 {
    font-size: 1.38rem;
  }
  .hero {
    padding: 33px 0;
    border-radius: 16px;
    margin-bottom: 36px;
  }
}

@media (max-width: 768px) {
  .text-image-section, .content-grid {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
  .card-container {
    flex-direction: column;
    gap: 18px;
  }
}

/* SPACING AND FLEX CONSISTENCY */
.section, main>section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  gap: 24px;
}
.card {
  margin-bottom: 20px;
}
.content-grid {
  gap: 20px;
}
.text-image-section {
  gap: 30px;
}
.testimonial-card {
  gap: 20px;
  padding: 20px;
}
.feature-item {
  gap: 15px;
}

/* FAQ ACCORDION */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq-item {
  background: #fff;
  border-left: 8px solid #A2B931;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(40,72,117,0.06);
  padding: 18px 16px;
  transition: box-shadow .17s, border-color .14s;
  font-size: 1.07rem;
  margin-bottom: 4px;
  position: relative;
}
.faq-item h2 {
  font-size: 1.2rem;
  color: #284875;
  margin-bottom: 6px;
  font-family: var(--font-display);
}
.faq-item p {
  color: #263145;
  margin: 0;
}
.faq-item:hover, .faq-item:focus-within {
  box-shadow: 0 6px 20px rgba(162,185,49,0.12);
  border-color: #284875;
}

/* QUICK CONTACT CTA in FAQ */
.quick-contact-cta {
  margin-top: 22px;
  background: #A2B931;
  color: #fff;
  border-radius: 14px;
  padding: 18px 14px;
  font-size: 1.14rem;
  box-shadow: var(--shadow);
}
.quick-contact-cta a {
  color: #fff;
  text-decoration: underline dotted #fff 1.5px;
  font-weight: bold;
}
.quick-contact-cta a:hover, .quick-contact-cta a:focus {
  color: #284875;
}

/* FOOTER */
footer {
  background: #284875;
  color: #fff;
  padding: 28px 0 14px 0;
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
footer nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  margin-bottom: 5px;
}
footer nav a {
  color: #A2B931;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.15s;
}
footer nav a:hover, footer nav a:focus {
  color: #fff;
  text-decoration: underline solid #fff 1px;
  text-underline-offset: 6px;
}
footer p {
  color: #fff;
  font-size: 0.99rem;
  margin-bottom: 0;
  margin-top: 2px;
  opacity: .95;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  width: 100vw;
  background: #fff;
  border-top: 4px solid #A2B931;
  box-shadow: 0 -4px 24px rgba(40,72,117,0.13);
  padding: 20px 12px 15px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  z-index: 1400;
  animation: slideUpCookie .51s cubic-bezier(.7,1,.2,1);
}
@keyframes slideUpCookie {
  0% {transform: translateY(120%); opacity: 0;}
  60% {transform: translateY(-20px); opacity: .7;}
  100% {transform: translateY(0); opacity: 1;}
}
.cookie-banner p {
  color: #263145;
  font-size: 1.07rem;
  text-align: center;
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 0;
}
.cookie-banner .cookie-btn {
  border: none;
  background: #A2B931;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.05rem;
  border-radius: 18px;
  padding: 11px 28px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(162,185,49,.09);
  transition: background .13s, color .13s;
  outline: none;
}
.cookie-banner .cookie-btn.reject {
  background: #EF476F;
  color: #fff;
}
.cookie-banner .cookie-btn.settings {
  background: #284875;
  color: #fff;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: #263145;
}

/* COOKIE MODAL OVERLAY */
.cookie-modal-backdrop {
  position: fixed;
  z-index: 1500;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(40,72,117,0.57);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInModal .25s;
}
@keyframes fadeInModal {
  from { opacity: 0;}
  to { opacity: 1;}
}
.cookie-modal {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 14px 54px rgba(40,72,117,0.13);
  padding: 30px 28px 24px 28px;
  max-width: 450px;
  width: calc(100vw - 32px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  z-index: 1502;
  animation: popupModal .33s cubic-bezier(.7,1,.2,1);
}
@keyframes popupModal {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1);   opacity: 1; }
}
.cookie-modal h2 {
  color: #A2B931;
  font-size: 1.27rem;
  margin-bottom: 6px;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
  font-size: 1.05rem;
  font-family: var(--font-body);
}
.cookie-switch {
  margin-left: auto;
  display: flex;
  align-items: center;
}
.cookie-switch input {
  appearance: none;
  width: 38px;
  height: 20px;
  background: #F7F5ED;
  border-radius: 12px;
  border: 2px solid #A2B931;
  position: relative;
  outline: none;
  transition: background .14s, border .13s;
}
.cookie-switch input:checked {
  background: #A2B931;
}
.cookie-switch input:before {
  content: '';
  position: absolute;
  width: 17px;
  height: 17px;
  top: 2px;
  left: 2px;
  border-radius: 50%;
  background: #fff;
  transition: transform .13s cubic-bezier(.7,1,.2,1);
  box-shadow: 0 1px 3px rgba(40,72,117,0.05);
}
.cookie-switch input:checked:before {
  transform: translateX(18px);
}
.cookie-switch input[disabled] {
  opacity: 0.4;
  pointer-events: none;
}
.cookie-modal .modal-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 14px;
}
.cookie-modal .cookie-btn {
  padding: 10px 22px;
  font-size: 1.02rem;
}
.cookie-modal .close-btn {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.5em;
  color: #284875;
  cursor: pointer;
  z-index: 1503;
  transition: color .15s;
}
.cookie-modal .close-btn:hover, .cookie-modal .close-btn:focus {
  color: #A2B931;
}
.cookie-modal .cookie-category[data-essential="true"] {
  opacity: .7;
}

/* SMALL DECORATIVE BUBBLE ANIMATION */
@keyframes floatBubble {
  0% {transform: translateY(0) scale(1);}
  50% {transform: translateY(-18px) scale(1.07);}
  100% {transform: translateY(0) scale(1);}
}
.hero:before, .hero:after {
  content: '';
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}
.hero:before {
  width: 140px; height: 140px;
  background: #28487522;
  top: -60px; 
  left: -60px;
  animation: floatBubble 5s infinite linear;
}
.hero:after {
  width: 98px; height: 98px;
  background: #A2B93133;
  bottom: -30px;
  right: -35px;
  animation: floatBubble 6.1s infinite ease-in-out;
}

/* MICRO-INTERACTION ANIMATIONS */
.cta,
.card,
.testimonial-card,
.faq-item {
  will-change: transform, box-shadow;
  transition: box-shadow .18s, transform .15s;
}
.cta:active {
  transform: scale(0.98);
}

/* ICONS IN LISTS/TEXT-SECTION */
.text-section img, .feature-item img, ul li img {
  height: 28px;
  width: 28px;
  margin-right: 9px;
  vertical-align: middle;
  border-radius: 8px;
  background: #F7F5ED;
  box-shadow: 0 0 8px rgba(162,185,49,0.1);
  display: inline-block;
}
ul li img {
  margin-left: -8px;
}

/* RESPONSIVE FINE TUNING */
@media (max-width: 430px) {
  .hero h1 {
    font-size: 1.17rem;
  }
  .card-content, .testimonial-card, .faq-item {
    font-size: 0.98rem;
  }
  .section, main>section {
    padding: 9px 2px;
  }
}

/* MISC. SPACING, OVERLAP-PREVENTION */
main>section+.section {
  margin-top: 24px;
}
.section+.section {
  margin-top: 24px;
}
.card+.card {
  margin-top: 20px;
}

/* NO ABSOLUTE POSITIONING FOR CONTENT CARDS */

/* ENSURE COLOR CONTRAST IN TESTIMONIALS */
.testimonial-card p,
.testimonial-card span {
  color: #284875;
  background: none;
}
.testimonial-card span {
  font-weight: 700;
  font-size: 1rem;
  color: #A2B931;
  letter-spacing: 0.01em;
}

/* FORM ELEMENTS (kontakt.html, cookie modal) */
input, select, textarea {
  background: #F7F5ED;
  color: #263145;
  border: 1.5px solid #A2B931;
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 1rem;
  margin-bottom: 12px;
  box-shadow: 0 1px 3px rgba(162,185,49,0.04);
  transition: border .13s;
  font-family: var(--font-body);
}
input:focus, select:focus, textarea:focus {
  border: 2px solid #284875;
  outline: none;
}
label {
  font-size: 1rem;
  font-family: var(--font-display);
}

/* THANK YOU & STATUS STYLES */
.thankyou {
  color: #A2B931;
  font-family: var(--font-display);
  text-align: center;
  margin-top: 32px;
  margin-bottom: 24px;
  font-size: 1.25rem;
}

/* DISABLED STATE */
[disabled], .disabled {
  opacity: .56;
  pointer-events: none;
}

/* ENERGETIC, PLAYFUL EFFECTS */
h1, h2, h3 {
  position: relative;
  z-index: 1;
}
h2 {
  background: linear-gradient(90deg,#A2B931 0 50%,#284875 95%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  animation: hue 10s infinite linear;
}
@keyframes hue {
  0% { filter: hue-rotate(0deg); }
  100% { filter: hue-rotate(20deg); }
}
/* playful underline for h3 on hover */
h3 {
  transition: text-shadow .12s;
}
h3:hover {
  text-shadow: 0 2px 0 #A2B93155, 0 6px 18px #A2B93133;
}

/* ERROR/INFO CLASSES */
.alert-error {
  background: #EF476F;
  color: #fff;
  border-radius: 8px;
  padding: 10px 16px;
  box-shadow: 0 2px 10px rgba(239,71,111,0.14);
}
.alert-info {
  background: #A2B931;
  color: #fff;
  border-radius: 8px;
  padding: 10px 16px;
  box-shadow: 0 2px 10px rgba(162,185,49,0.10);
}

/* SCROLLBAR -- playful accent */
::-webkit-scrollbar {
  width: 12px;
}
::-webkit-scrollbar-thumb {
  background: #A2B931cc;
  border-radius: 8px;
}
::-webkit-scrollbar-track {
  background: #F7F5ED;
}

/* PRINT FRIENDLY */
@media print {
  .cookie-banner,.mobile-menu,.mobile-menu-toggle,header,footer {display:none!important}
  main,.container{box-shadow:none!important;background:none!important}
}

/* END OF CSS */
