/* WATTRIPPLE REINIGUNG — 'Elegant Classic' CSS RESET & BASICS */

/* CSS Reset (normalize common elements, remove grid/columns) */
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;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  font-family: 'Georgia', 'Times New Roman', serif;
  line-height: 1.6;
  background: #FAFAF8;
  color: #212329;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #0B3A4A;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #79B4B7;
}
button {
  font-family: inherit;
  font-size: inherit;
  background: transparent;
  border: none;
  cursor: pointer;
}
ul, ol {
  list-style: none;
}

/* FONT HIERARCHY */
h1, .cta-title {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-weight: 700;
  font-size: 2.5rem;
  letter-spacing: -0.5px;
  margin-bottom: 18px;
  color: #0B3A4A;
}
h2, .cta-title {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-weight: 600;
  font-size: 2rem;
  margin-bottom: 16px;
  color: #0B3A4A;
}
h3 {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #254F61;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: #254F61;
}
p, li, ul, ol {
  color: #212329;
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 1rem;
}
.subheadline, .highlight {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.7;
  color: #466E75;
  margin-bottom: 20px;
}
.strong {
  font-weight: 700;
}

/* Layout Containers */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 18px;
  width: 100%;
}
.content-wrapper {
  background: transparent;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* --- SPACINGS --- */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 550px) {
  section {
    padding: 24px 10px;
    margin-bottom: 32px;
  }
}
.text-section ul, .text-section ol {
  list-style: disc inside;
  margin-left: 18px;
  margin-bottom: 18px;
}
.text-section ul li,
.text-section ol li {
  margin-top: 0;
  margin-bottom: 12px;
}

/* FLEXBOX PATTERNS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #FFF;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(11,58,74,0.06);
  position: relative;
  margin-bottom: 20px;
  padding: 28px 24px;
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 8px 28px 0 rgba(11,58,74,0.14);
}
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature {
  flex: 1 1 220px;
  min-width: 230px;
  max-width: 320px;
  background: #FFF;
  border-radius: 12px;
  box-shadow: 0 2px 11px 0 rgba(11,58,74,0.07);
  padding: 22px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  position: relative;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.12s;
}
.feature img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 4px;
  opacity: 0.95;
}
.feature:hover {
  box-shadow: 0 8px 28px 0 rgba(11,58,74,0.16);
  transform: translateY(-4px);
}

/* TESTIMONIALS */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  background: #F7F7F7;
  border-radius: 14px;
  box-shadow: 0 2px 11px 0 rgba(11,58,74,0.07);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 280px;
  max-width: 420px;
  margin-bottom: 20px;
  color: #153746;
  transition: box-shadow 0.2s, transform 0.13s;
}
.testimonial-card:hover {
  box-shadow: 0 5px 19px 0 rgba(11,58,74,0.19);
  transform: translateY(-2px);
}
.testimonial-meta {
  font-size: 0.99rem;
  color: #466E75;
  display: flex;
  align-items: center;
  gap: 8px;
}
.star-rating {
  color: #B89363;
  font-size: 1.15em;
  margin-left: 6px;
}

/* CTA & BUTTONS */
.primary-cta, .secondary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  padding: 12px 28px;
  font-family: 'Georgia', serif;
  font-size: 1.11rem;
  font-weight: 700;
  background: #0B3A4A;
  color: #FFF;
  letter-spacing: 0.02em;
  border: none;
  box-shadow: 0 1px 6px 0 rgba(11,58,74,0.08);
  transition: background 0.19s, color 0.18s, box-shadow 0.2s, transform 0.13s;
  margin-top: 6px;
  margin-bottom: 6px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
}
.secondary-cta {
  background: #79B4B7;
  color: #0B3A4A;
  font-weight: 600;
}
.primary-cta:hover, .primary-cta:focus {
  background: #254F61;
  color: #FFF;
  box-shadow: 0 5px 21px 0 rgba(11,58,74,0.16);
  transform: translateY(-1px) scale(1.03);
}
.secondary-cta:hover, .secondary-cta:focus {
  background: #0B3A4A;
  color: #FFF;
  box-shadow: 0 3px 10px 0 rgba(11,58,74,0.12);
  transform: translateY(-1px) scale(1.02);
}

/* HEADER & NAVIGATION */
header {
  background: #FFF;
  border-bottom: 1.2px solid #E1E7EA;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 20;
  box-shadow: 0 2px 7px 0 rgba(11,58,74,0.045);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.logo img {
  width: 160px;
  height: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.main-nav a {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 1rem;
  color: #79b4b7;
  font-weight: 500;
  padding: 5px 8px;
  border-radius: 8px;
  transition: background 0.2s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #F7F7F7;
  color: #0B3A4A;
}
.main-nav .primary-cta {
  margin-left: 12px;
  font-size: 1.1rem;
}
.mobile-menu-toggle {
  display: none;
  background: #0B3A4A;
  color: #FFF;
  font-size: 2.1rem;
  border: none;
  border-radius: 10px;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  transition: background 0.18s;
  z-index: 100;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #79B4B7;
  color: #0B3A4A;
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(11,58,74,0.92);
  z-index: 999;
  transform: translateX(-100vw);
  transition: transform 0.32s cubic-bezier(0.6,0,0.4,1);
  opacity: 1;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  position: absolute;
  top: 26px;
  right: 26px;
  background: rgba(247,247,247,0.92);
  color: #0B3A4A;
  font-size: 2.1rem;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1111;
  transition: background 0.2s, color 0.18s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #79B4B7;
  color: #FFF;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-top: 98px;
  padding: 36px 30px 10px 30px;
}
.mobile-nav a {
  color: #FAFAF8;
  font-size: 1.22rem;
  font-family: 'Georgia', 'Times New Roman', serif;
  font-weight: 600;
  padding: 10px 6px;
  border-radius: 10px;
  transition: background 0.17s, color 0.16s;
  width: 100%;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F7F7F7;
  color: #0B3A4A;
}

/* Responsive Navigation */
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 901px) {
  .mobile-menu {
    display: none!important;
  }
}

/* HERO & HIGHLIGHTS */
.subheadline {
  font-size: 1.25rem;
  color: #466E75;
  margin-bottom: 18px;
}
.highlight {
  background: #F7F7F7;
  padding: 9px 22px;
  border-radius: 7px;
  color: #254F61;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}

/* SERVICE LIST, FAQ, ETC */
.service-list, .service-categories, .service-benefits {
  margin: 0 0 20px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.service-list li, .service-categories li, .service-benefits li {
  background: #F7F7F7;
  border-radius: 9px;
  padding: 13px 18px;
  font-size: 1rem;
  color: #212329;
  margin-bottom: 0;
  display: flex;
  align-items: flex-start;
  gap: 13px;
  box-shadow: 0 1px 5px 0 rgba(11,58,74,0.04);
}
.service-benefits img {
  width: 30px;
  height: 30px;
  margin-right: 8px;
  margin-top: 3px;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.faq-item {
  background: #F7F7F7;
  border-radius: 10px;
  padding: 18px 20px;
  box-shadow: 0 1px 7px 0 rgba(11,58,74,0.03);
  color: #153746;
}
.faq-item h3 {
  font-size: 1.13rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: #0B3A4A;
}
.faq-item p {
  font-size: 1rem;
}

.text-section {
  padding-bottom: 15px;
}

/* PRICING TABLES */
.pricing-tables {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
  justify-content: flex-start;
}
.pricing-table {
  flex: 1 1 230px;
  min-width: 230px;
  max-width: 320px;
  background: #FFF;
  border-radius: 14px;
  box-shadow: 0 2px 13px 0 rgba(11,58,74,0.07);
  padding: 28px 22px;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
  transition: box-shadow 0.15s, transform 0.13s;
}
.pricing-table:hover {
  box-shadow: 0 7px 31px 0 rgba(11,58,74,0.15);
  transform: translateY(-2px) scale(1.03);
}
.pricing-table h2 {
  font-size: 1.25rem;
  color: #0B3A4A;
  margin-bottom: 12px;
}
.pricing-table ul {
  margin-bottom: 9px;
  padding-left: 17px;
}
.pricing-table li {
  list-style: disc inside;
  margin-bottom: 3px;
  color: #254F61;
}
.pricing-table p {
  font-size: 1.10rem;
  color: #B89363;
  font-weight: bold;
  letter-spacing: 0.01em;
}

/* PACKAGE COMPARISON */
.package-comparisons {
  background: #F7F7F7;
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 15px 22px;
  color: #254F61;
}
.package-comparisons h3 {
  font-size: 1.1rem;
  color: #0B3A4A;
  margin-bottom: 7px;
}
.package-comparisons ul {
  padding-left: 16px;
}
.package-comparisons li {
  list-style: disc inside;
}

/* CLIENT LOGO LIST */
.client-list-logos {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 18px 0 0 0;
}
.client-list-logos img {
  max-width: 70px;
  opacity: 0.7;
  border-radius: 7px;
}

/* FOOTER */
footer {
  background: #0B3A4A;
  color: #F7F7F7;
  padding: 38px 0 26px 0;
  margin-top: 60px;
  font-family: 'Georgia', 'Times New Roman', serif;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
  font-size: 1rem;
}
.footer-links a {
  color: #F7F7F7;
  font-weight: bold;
  margin: 0 2px;
  transition: color 0.17s, text-decoration 0.17s;
}
.footer-links a:hover, .footer-links a:focus {
  color: #79B4B7;
  text-decoration: underline;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  font-size: 0.99rem;
}
.contact-details img {
  vertical-align: middle;
  margin-right: 8px;
  width: 21px;
  height: 21px;
}
.social-media {
  display: flex;
  align-items: center;
  gap: 19px;
  justify-content: center;
  margin-top: 6px;
}
.social-media a {
  background: #254F61;
  border-radius: 50%;
  padding: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.social-media a:hover, .social-media a:focus {
  background: #79B4B7;
}
.social-media img {
  height: 26px;
  width: 26px;
}

/* --- COOKIE CONSENT BANNER & MODAL --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #0B3A4A;
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 22px 26px;
  z-index: 2000;
  box-shadow: 0 -2px 10px 0 rgba(11,58,74,0.10);
  font-size: 1rem;
  animation: fadeInCookie 0.6s cubic-bezier(0.68,0.65,0.3,1);
  pointer-events: auto;
}
@keyframes fadeInCookie {
  0% { transform: translateY(120%); opacity: 0; }
  80% { transform: translateY(-8px); opacity: 1; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner__text {
  flex: 1 1 320px;
  font-weight: 400;
  color: #FFF;
  line-height: 1.58;
  margin-right: 8px;
}
.cookie-banner__btns {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.cookie-banner__btn, .cookie-banner__settings {
  border: none;
  border-radius: 21px;
  padding: 10px 26px;
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 1.05rem;
  font-weight: 600;
  margin-right: 2px;
  cursor: pointer;
  transition: background 0.14s, color 0.13s, box-shadow 0.12s;
}
.cookie-banner__btn.accept {
  background: #79B4B7;
  color: #0B3A4A;
}
.cookie-banner__btn.accept:hover,
.cookie-banner__btn.accept:focus {
  background: #B89363;
  color: #FFF;
}
.cookie-banner__btn.reject {
  background: #B89363;
  color: #FFF;
}
.cookie-banner__btn.reject:hover,
.cookie-banner__btn.reject:focus {
  background: #254F61;
  color: #FFF;
}
.cookie-banner__settings {
  background: #FFF;
  color: #0B3A4A;
  font-weight: 600;
  border: 1.2px solid #79B4B7;
}
.cookie-banner__settings:hover,
.cookie-banner__settings:focus {
  background: #79B4B7;
  color: #0B3A4A;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    gap: 12px;
    padding: 19px 11px 15px 13px;
    font-size: 0.93rem;
  }
  .cookie-banner__btns {
    gap: 8px;
  }
}

/* COOKIE SETTINGS MODAL */
.cookie-modal {
  position: fixed;
  z-index: 2020;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(44,67,80,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.cookie-modal.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal__box {
  background: #FFF;
  border-radius: 18px;
  max-width: 410px;
  width: 97vw;
  padding: 30px 25px 15px 25px;
  color: #153746;
  box-shadow: 0 10px 60px 0 rgba(11,58,74,0.24), 0 2px 11px 0 rgba(11,58,74,0.07);
  display: flex;
  flex-direction: column;
  gap: 17px;
  animation: fadeInCookieModal 0.43s cubic-bezier(0.42,0.25,0.3,1.09);
  position: relative;
}
@keyframes fadeInCookieModal {
  0% { transform: scale(0.88); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.cookie-modal__close {
  position: absolute;
  top: 16px; right: 18px;
  background: #79B4B7;
  color: #FFF;
  border-radius: 10px;
  border: none;
  width: 38px; height: 38px;
  font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
  z-index: 15;
  transition: background 0.16s;
}
.cookie-modal__close:hover, .cookie-modal__close:focus {
  background: #0B3A4A;
  color: #FFF;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 10px;
}
.cookie-category {
  background: #F7F7F7;
  border-radius: 10px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 13px;
}
.cookie-category label {
  font-size: 1rem;
  font-family: 'Georgia', 'Times New Roman', serif;
  font-weight: 600;
  color: #0B3A4A;
  margin-right: 21px;
}
.cookie-toggle {
  width: 46px; height: 24px;
  border-radius: 12px;
  background: #E1E7EA;
  position: relative;
  cursor: pointer;
  transition: background 0.18s;
  outline: none;
  flex-shrink: 0;
}
.cookie-toggle input {
  display: none;
}
.cookie-toggle span {
  display: block;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #B89363;
  position: absolute;
  top: 1px; left: 1px;
  transition: left 0.17s, background 0.16s;
}
.cookie-toggle input:checked + span {
  left: 23px;
  background: #79B4B7;
}
.cookie-category .cookie-toggle:disabled,
.cookie-category .cookie-toggle input:disabled + span {
  background: #B89363;
  opacity: 0.55;
  cursor: default;
}
.cookie-category .cookie-info {
  font-size: 0.92rem;
  color: #254F61;
  margin-left: 12px;
}
.cookie-modal__actions {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 8px;
}
.cookie-modal__actions button {
  border-radius: 17px;
  padding: 10px 24px;
  background: #0B3A4A;
  color: #FFF;
  font-family: 'Georgia', 'Times New Roman', serif;
  font-weight: 600;
  font-size: 1.05rem;
  border: none;
  cursor: pointer;
  transition: background 0.16s, color 0.12s;
}
.cookie-modal__actions .btn-accept {
  background: #79B4B7;
  color: #0B3A4A;
}
.cookie-modal__actions .btn-accept:hover,
.cookie-modal__actions .btn-accept:focus {
  background: #B89363;
  color: #FFF;
}
.cookie-modal__actions .btn-cancel {
  background: #B89363;
}
.cookie-modal__actions .btn-cancel:hover,
.cookie-modal__actions .btn-cancel:focus {
  background: #254F61;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1080px) {
  .container {
    max-width: 97vw;
  }
  .card-container, .feature-grid, .pricing-tables {
    gap: 16px;
  }
}
@media (max-width: 900px) {
  .feature-grid, .pricing-tables {
    flex-direction: column;
    align-items: stretch;
  }
  .feature, .pricing-table {
    min-width: unset; max-width: unset;
    width: 100%;
  }
}
@media (max-width: 700px) {
  h1, .cta-title {
    font-size: 2.0rem;
  }
  h2 {
    font-size: 1.45rem;
  }
  .card, .feature, .pricing-table {
    padding: 16px 10px;
    font-size: 1rem;
  }
  .testimonial-card {
    min-width: unset; max-width: unset;
    padding: 16px 10px;
    font-size: 0.96rem;
  }
  .footer-links,
  .contact-details,
  .social-media {
    flex-direction: column;
    gap: 6px;
  }
}
@media (max-width: 550px) {
  .logo img {
    width: 112px;
  }
  .container {
    padding-left: 7px;
    padding-right: 7px;
  }
  .cookie-modal__box {
    padding: 17px 5px 7px 8px;
  }
}

/* Micro-interactions & Animations */
.primary-cta, .secondary-cta, .main-nav a, .mobile-nav a, .footer-links a {
  transition: background 0.23s, color 0.17s, box-shadow 0.18s, transform 0.11s;
}

/* Hide visually but accessible for a11y */
.sr-only {
  border: 0;
  clip: rect(0,0,0,0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/* Utility Classes */
.d-flex {
  display: flex !important;
}
.flex-wrap {
  flex-wrap: wrap !important;
}
.align-center {
  align-items: center !important;
}
.align-start {
  align-items: flex-start !important;
}
.gap-20 {
  gap: 20px !important;
}

/* MANDATORY FLEXBOX PATTERNS */
.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; }

/* Print Styles */
@media print {
  header, .main-nav, .mobile-menu, .mobile-menu-toggle, .cookie-banner, .cookie-modal, footer {
    display: none !important;
  }
  section {
    box-shadow: none !important;
    background: #FFF !important;
    color: #111 !important;
  }
}
