/* RESET & BASE TYPOGRAPHY */
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;
}

body {
  line-height: 1.5;
  font-family: 'Roboto', Arial, sans-serif;
  color: #205473;
  background: linear-gradient(135deg,#F7F6F2 0%,#e7eef5 100%);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}

ul, ol {
  list-style: none;
}

a {
  color: #205473;
  text-decoration: none;
  transition: color 0.2s;
}

a:hover, a:focus {
  color: #5CA16D;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #205473;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
  line-height: 1.2;
}

h1 { font-size: 2.375rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.125rem; }
h5, h6 { font-size: 1rem; }

p, li {
  font-size: 1rem;
  color: #205473;
  margin-bottom: 8px;
  font-family: 'Roboto', Arial, sans-serif;
}

strong {
  font-weight: 700;
}

::selection {
  background: #5CA16D;
  color: #fff;
}

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* LAYOUT: FLEXBOX PATTERNS */
.card-container, .feature-grid, .activity-teaser-cards, .offer-grid, .footer-wrapper, .content-grid, .tip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card-container { gap: 24px; }
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(32,84,115,0.08);
  padding: 32px 24px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(32,84,115,0.12);
  transform: translateY(-3px) scale(1.012);
}
.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;
  background: #F7F6F2;
  border-radius: 16px;
  padding: 20px 28px;
  box-shadow: 0 2px 12px rgba(32,84,115,0.04);
  margin-bottom: 32px;
  transition: box-shadow 0.2s;
}
.testimonial-card blockquote {
  color: #205473;
  font-size: 1.125rem;
  font-style: italic;
  margin: 0 0 8px 0;
  line-height: 1.55;
}
.testimonial-person {
  display: block;
  font-size: 0.95rem;
  color: #205473;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.feature-grid, .offer-grid, .activity-teaser-cards {
  gap: 24px;
  justify-content: flex-start;
}
.feature-item, .offer-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: linear-gradient(135deg,#ffffff 80%,#eaf4ee 100%);
  gap: 15px;
  border-radius: 14px;
  box-shadow: 0 1px 6px rgba(92,161,109,0.06);
  padding: 28px 22px 20px 22px;
  flex: 1 1 270px;
  min-width: 220px;
  max-width: 340px;
  margin-bottom: 20px;
}
.feature-item img {
  width: 42px;
  height: 42px;
  margin-bottom: 8px;
}

/* HERO SECTION */
.hero-section {
  background: linear-gradient(135deg,#F7F6F2 50%,#c3e3d5 100%);
  padding: 56px 0 48px 0;
  position: relative;
}
.hero-section .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  max-width: 700px;
  padding: 0 12px;
}
.hero-section h1 {
  font-size: 2.5rem;
  letter-spacing: -0.5px;
}
.hero-section .subheadline {
  font-size: 1.25rem;
  color: #205473;
  margin-bottom: 10px;
  font-weight: 400;
}

/* BADGES */
.badge {
  display: inline-block;
  font-size: 0.87rem;
  font-weight: 600;
  padding: 4px 15px;
  border-radius: 28px;
  letter-spacing: 0.01em;
  margin-right: 8px;
  color: #fff;
  background: #5CA16D;
}
.badge-outdoor { background: #5CA16D; color: #fff; }
.badge-indoor { background: #205473; color: #fff; }

/* BUTTONS */
.btn-primary,
.btn-secondary {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.12rem;
  font-weight: 600;
  padding: 13px 34px;
  border-radius: 32px;
  border: none;
  cursor: pointer;
  outline: none;
  letter-spacing: 0.01em;
  margin-top: 10px;
  transition: background 0.17s, color 0.17s, box-shadow 0.18s, transform 0.17s;
  box-shadow: 0 2px 10px rgba(32,84,115,0.09);
}
.btn-primary {
  background: linear-gradient(90deg, #205473 70%, #5CA16D 100%);
  color: #fff;
}
.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus {
  background: linear-gradient(90deg, #17425a 80%, #42794f 100%);
  color: #fff;
  transform: translateY(-2px) scale(1.03);
}
.btn-secondary {
  background: #5CA16D;
  color: #fff;
}
.btn-secondary:hover,
.btn-secondary:active,
.btn-secondary:focus {
  background: #205473;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
}

/* HIGHLIGHTS SECTION */
.highlights-section {
  background: #eaf4ee;
  border-radius: 20px;
  margin: 40px 0;
  padding: 40px 0;
}
.activity-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
}
.activity-list li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(32,84,115,0.04);
  padding: 16px 24px;
  font-size: 1.05rem;
}
.activity-name { font-weight: 700; margin-right: 12px; }
.weather-preview {
  background: #205473;
  color: #fff;
  border-radius: 12px;
  padding: 2px 11px;
  font-size: 0.96rem;
  margin-left: auto;
}

/* CTA SECTION */
.cta-section {
  background: linear-gradient(100deg, #205473 70%, #5CA16D 100%);
  color: #fff;
  border-radius: 20px;
  margin: 36px 0 60px 0;
  padding: 44px 0 36px 0;
}
.cta-section h2, .cta-section .quick-links {
  color: #fff;
}
.cta-section .btn-secondary {
  background: #fff;
  color: #205473;
  border: none;
  margin-top: 18px;
}
.cta-section .btn-secondary:hover {
  background: #5CA16D;
  color: #fff;
}
.cta-section .quick-links {
  margin-top: 20px;
  font-size: 1.09rem;
}
.cta-section .quick-links a {
  color: #fff;
  font-weight: 600;
  margin: 0 7px;
  transition: text-decoration 0.18s, color 0.18s;
  text-decoration: underline dotted rgba(255,255,255,0.2);
}
.cta-section .quick-links a:hover {
  color: #F7F6F2;
}

/* FILTER BAR (AKTIVITÄTEN) */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  padding: 18px 0 8px 0;
}
.filter-bar span {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  margin-right: 4px;
}
.filter-bar select, .filter-bar input[type="text"] {
  padding: 7px 16px;
  border: 1px solid #94baf0;
  border-radius: 24px;
  font-size: 0.98rem;
  background: #fff;
  margin-right: 5px;
  margin-bottom: 5px;
  transition: border 0.2s;
}
.filter-bar input[type="text"]:focus {
  border: 1.5px solid #205473;
}

/* CARD GRIDS & TEASERS */
.activity-teaser-cards {
  gap: 24px;
  justify-content: flex-start;
}
.activity-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 8px rgba(32,84,115, 0.08);
  padding: 28px 20px 20px 20px;
  min-width: 220px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.17s;
}
.activity-card:hover {
  box-shadow: 0 4px 24px rgba(32,84,115, 0.13);
  transform: translateY(-3px) scale(1.02);
}
.age-range {
  margin-left: auto;
  color: #5CA16D;
  font-weight: 600;
  font-size: 0.95rem;
}

/* OTHER FEATURED FLEXBOX */
.value-list {
  margin: 15px 0 25px 0;
}
.value-list li {
  margin-bottom: 12px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
}
.community-engagement, .sustainability-focus {
  margin-bottom: 18px;
}

.tip-list {
  margin-bottom: 20px;
}
.tip-list ul {
  padding-left: 16px;
}
.tip-list li {
  list-style: disc outside;
  margin-bottom: 8px;
}
.safety-tips, .creative-solutions, .diy-weatherproofing {
  margin-bottom: 18px;
}

/* WEATHER SECTION */
.weather-widget {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  background: #f5fafd;
  border-radius: 15px;
  box-shadow: 0 2px 12px rgba(92,161,109,0.03);
  padding: 35px 32px;
  margin-top: 30px;
  margin-bottom: 24px;
}
.weather-forecast-summary {
  flex: 1 1 180px;
  min-width: 180px;
  color: #205473;
}
.detailed-forecast, .indoor-outdoor-suggestions {
  flex: 2 1 270px;
  min-width: 220px;
  color: #205473;
}
.weather-widget ul {
  padding-left: 18px;
}
.weather-widget li {
  list-style: disc;
}

.tip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
  margin-top: 14px;
}
.tip-grid > div {
  background: #fff;
  border-radius: 12px;
  padding: 23px 18px 13px 18px;
  box-shadow: 0 1px 8px rgba(32,84,115, 0.05);
  min-width: 165px;
  flex: 1 1 220px;
}

.weekend-packing-lists {
  margin-bottom: 18px;
}
.weekend-packing-lists ul {
  padding-left: 18px;
}

.diy-weatherproofing {
  background: #eaf4ee;
  border-radius: 10px;
  padding: 18px 16px 10px 18px;
  margin-bottom: 24px;
}

/* ACCORDION/FAQ */
.faq-accordion {
  margin: 22px 0 18px 0;
}
.faq-accordion h3 {
  margin-bottom: 7px;
}
.faq-accordion ul {
  padding-left: 13px;
}
.faq-accordion li {
  list-style: disc;
  margin-bottom: 10px;
}

/* User Suggestion Area */
.user-suggestions-highlight {
  background: linear-gradient(90deg, #e0fde1 70%, #c3e3d5 100%);
  border-radius: 13px;
  padding: 22px 16px 18px 18px;
  margin-bottom: 18px;
}
.next-steps {
  margin-bottom: 24px;
}

/******* FOOTER ********/
footer {
  background: linear-gradient(90deg, #205473 80%, #5CA16D 100%);
  color: #fff;
  padding-top: 38px;
  position: relative;
  z-index: 1;
}
footer p {
  color: white;
}
.footer-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 36px;
  justify-content: space-between;
  margin-bottom: 26px;
  align-items: flex-start;
}
.footer-brand, .footer-links, .footer-newsletter {
  flex: 1 1 220px;
  min-width: 220px;
}
.footer-brand img {
  width: 48px;
  margin-bottom: 14px;
}
.footer-intro {
  color: #fff;
  margin: 0 0 10px 0;
  font-size: 1.03rem;
}
.contact-short-info {
  color: #d5e3ea;
  font-size: 0.97rem;
  margin-top: 10px;
}

.footer-links nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links a {
  color: #e0fde1;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: color 0.17s, text-decoration 0.16s;
  text-decoration: underline dotted #36b57c22;
}
.footer-links a:hover {
  color: #fff;
  text-decoration: underline solid #fff;
}

.social-media-icons {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}
.social-media-icons img {
  width: 28px;
  height: 28px;
  background: #F7F6F2;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(32,84,115,0.13);
  padding: 4px;
  transition: background 0.18s;
}
.social-media-icons img:hover {
  background: #eaf4ee;
}

.footer-newsletter {
  color: #fff;
  font-size: 1rem;
}
.footer-newsletter h3 {
  color: #fff;
  font-size: 1.11rem;
}
.privacy-note {
  display: block;
  color: #b9d3d2;
  font-size: 0.91rem;
  margin-top: 7px;
}
.footer-bottom {
  border-top: 1px solid #4b889e;
  padding: 13px 0 14px 0;
  color: #eaf4ee;
  font-size: 0.98rem;
  text-align: center;
}

/****** HEADER, NAVIGATION & MOBILE MENU ******/
header {
  background: #fff;
  box-shadow: 0 1px 7px rgba(32,84,115,0.05);
  position: sticky;
  top: 0;
  z-index: 40;
}
header .container {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 15px;
  padding-bottom: 15px;
  justify-content: space-between;
}
.logo img {
  width: 46px;
  height: auto;
  vertical-align: middle;
}
.main-nav {
  display: flex;
  gap: 18px;
  align-items: center;
}
.main-nav a {
  color: #205473;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.01rem;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: border, color 0.2s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: #5CA16D;
  border-bottom: 2px solid #5CA16D;
}

.mobile-menu-toggle {
  background: #205473;
  color: #fff;
  border: none;
  border-radius: 8px;
  width: 45px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  cursor: pointer;
  margin-left: 18px;
  transition: background 0.13s;
  z-index: 101;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #5CA16D;
}

/***** MOBILE NAVIGATION OVERLAY *****/
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(32,84,115,0.95);
  transform: translateX(-110vw);
  transition: transform 0.32s cubic-bezier(0.82,0,0.18,1);
  z-index: 110;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 32px;
  padding-left: 0;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  margin-left: 24px;
  margin-bottom: 8px;
  cursor: pointer;
  z-index: 120;
  align-self: flex-start;
  transition: color 0.13s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #eaf4ee;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 22px 0 0 36px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.28rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 10px 0 5px 0;
  border-bottom: 1px solid rgba(247,246,242,0.07);
  width: 100%;
  transition: color 0.18s, background 0.14s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: #5CA16D;
  background: rgba(247,246,242,0.11);
}

/******* COOKIE CONSENT BANNER *******/
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  background: #205473;
  color: #fff;
  padding: 28px 18px 18px 18px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  box-shadow: 0 -4px 20px rgba(32,84,115,0.09);
  font-size: 1.05rem;
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.32s cubic-bezier(0.8,0,0.16,1),opacity 0.27s;
}
.cookie-consent-banner.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.cookie-consent-banner .cookie-buttons {
  display: flex;
  gap: 12px;
}
.cookie-consent-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 24px;
  border: none;
  outline: none;
  padding: 8px 24px;
  cursor: pointer;
  transition: background 0.14s, color 0.14s, box-shadow 0.17s;
  margin-top: 5px;
}
.cookie-consent-banner .cookie-accept {
  background: #5CA16D;
  color: #fff;
}
.cookie-consent-banner .cookie-accept:hover {
  background: #36b57c;
}
.cookie-consent-banner .cookie-reject {
  background: #fff;
  color: #205473;
}
.cookie-consent-banner .cookie-reject:hover {
  background: #eaf4ee;
  color: #5CA16D;
}
.cookie-consent-banner .cookie-settings {
  background: none;
  color: #fff;
  border: 2px solid #5CA16D;
  padding: 7px 20px;
}
.cookie-consent-banner .cookie-settings:hover {
  background: #5CA16D;
  color: #fff;
}

/******* COOKIE PREFERENCES MODAL ******/
.cookie-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(32,84,115,0.35);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.28s;
}
.cookie-modal.active {
  pointer-events: all;
  opacity: 1;
}
.cookie-modal-content {
  background: #fff;
  color: #205473;
  border-radius: 18px;
  box-shadow: 0 5px 36px rgba(32,84,115,0.16);
  padding: 38px 28px 32px 28px;
  max-width: 400px;
  width: 94vw;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 1rem;
}
.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 22px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #205473;
  cursor: pointer;
  z-index: 2110;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 11px 0;
  padding: 9px 0;
  border-bottom: 1px dashed #e7eef5;
}
.cookie-category label {
  font-weight: 500;
  font-size: 1rem;
}
.cookie-category input[type="checkbox"]:disabled {
  accent-color: #205473;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-top: 16px;
}
.cookie-modal-actions button {
  min-width: 110px;
  font-size: 1rem;
}

/******* TABS (draussen-drinnen) *******/
.tabs {
  display: flex;
  gap: 20px;
  margin: 20px 0 10px 0;
}
.tab-link {
  background: #eaf4ee;
  color: #205473;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 23px 23px 0 0;
  padding: 12px 28px 11px 28px;
  cursor: pointer;
  transition: background 0.16s, color 0.16s;
  margin-bottom: -3px;
}
.tab-link.active, .tab-link:focus {
  background: #5CA16D;
  color: #fff;
}
.tabbed-content {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  margin-top: 0px;
}
.tab-content {
  background: #fff;
  border-radius: 12px;
  padding: 24px 18px 18px 18px;
  box-shadow: 0 1px 9px rgba(32,84,115,0.07);
  min-width: 220px;
  flex: 1 1 320px;
  margin-bottom: 20px;
}
.tab-content h2 {
  margin-top: 0;
}

/******** RESPONSIVE: MOBILE-FIRST *********/
@media (max-width: 1020px) {
  .footer-wrapper {
    gap: 30px 18px;
  }
  .main-nav {
    gap: 10px;
  }
  .container {
    max-width: 97vw;
  }
}

@media (max-width: 900px) {
  .footer-wrapper {
    flex-direction: column;
    gap: 22px;
  }
  header .container {
    flex-wrap: wrap;
    gap: 18px 10px;
  }
}

@media (max-width: 800px) {
  .activity-teaser-cards, .card-container, .footer-wrapper, .feature-grid, .offer-grid, .content-grid, .tip-grid, .tabbed-content {
    flex-direction: column;
    gap: 18px;
  }
  .feature-item, .offer-item, .activity-card, .card {
    max-width: 100%;
    min-width: 0;
  }
  .tab-content {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.28rem; }
  h3 { font-size: 1.1rem; }
  body {
    font-size: 0.978rem;
  }
  .section {
    margin-bottom: 36px;
    padding: 23px 8px;
  }
  .hero-section {
    padding: 32px 0 28px 0;
  }
  .highlights-section, .cta-section {
    margin: 18px 0;
    padding: 18px 0;
  }
  .weather-widget {
    flex-direction: column;
    gap: 13px;
    padding: 18px 11px;
  }
}

@media (max-width: 630px) {
  .main-nav {
    display: none;
  }
  .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .hero-section .content-wrapper {
    padding: 0 0;
  }
  .footer-brand, .footer-links, .footer-newsletter {
    min-width: 0;
  }
}

@media (max-width: 540px) {
  .container {
    padding: 0 8px;
  }
}

@media (max-width: 480px) {
  .hero-section, .section, .highlights-section, .cta-section, .footer-wrapper, .activity-list li, .testimonial-card, .feature-item, .offer-item, .tab-content {
    padding: 10px 5px !important;
  }
  .cookie-consent-banner {
    padding: 18px 8px 12px 8px;
    flex-direction: column;
    align-items: flex-start;
    font-size: 0.99rem;
    gap: 11px;
  }
  .cookie-modal-content {
    padding: 16px 6vw 19px 6vw;
  }
}

/***** Utilities *****/
.mt-24 { margin-top: 24px !important; }
.mb-24 { margin-bottom: 24px !important; }
.text-center { text-align: center !important; }

/**** Printing Support (min.) ****/
@media print {
  header, nav, footer, .btn-primary, .btn-secondary, .mobile-menu-toggle, .cookie-consent-banner, .cookie-modal { display: none !important; }
  body { background: #fff !important; color: #205473 !important; }
}

/* END CSS */
