/* ===================================================
   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,
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;
}
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
  background: none;
}
img, svg {
  max-width: 100%;
  display: block;
}
button {
  font: inherit;
  cursor: pointer;
  background: none;
  border: none;
  outline: none;
}
input, textarea, select {
  font: inherit;
  outline: none;
  background: transparent;
  border: none;
}

/* ==============
   BRAND VARIABLES & FALLBACKS
   (No CSS vars, just repeated values for compatibility)
================= */
/*
  Colors:
    Primary:   #254B62   (dark blue)
    Secondary: #ECAD49   (bright gold/yellow)
    Accent:    #F5F6F8   (light grey)
    Extra:     #F04D63   (fun/playful red-pink)
    Support:   #3EBCA5   (teal/mint)
    Button Text: #254B62
    White:     #fff
    Black:     #222
*/

/* ==============
    FONTS
================= */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&family=Open+Sans:400,600,700&display=swap');

html {
  font-size: 16px;
  font-family: 'Open Sans', Arial, sans-serif;
  background: #F5F6F8;
  color: #254B62;
  scroll-behavior: smooth;
}
body {
  color: #254B62;
  min-height: 100vh;
  letter-spacing: 0.01em;
  background: #F5F6F8;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: bold;
  color: #254B62;
  line-height: 1.1;
}
h1 {
  font-size: 2.8rem;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
  /* playful underline animation */
  position: relative;
  z-index: 1;
}
h1::after {
  content: '';
  display: block;
  margin-top: 4px;
  width: 60px;
  height: 6px;
  background: #ECAD49;
  border-radius: 8px 8px 8px 2px;
  transition: width 0.5s cubic-bezier(.68,-0.55,.27,1.55);
}
@media (max-width: 768px) {
  h1 {
    font-size: 2.1rem;
  }
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
  color: #3EBCA5;
  letter-spacing: 0.01em;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: #F04D63;
}

p, ul, li, blockquote, ol {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.06rem;
  font-weight: 400;
  color: #254B62;
  line-height: 1.7;
}
strong {
  font-weight: 700;
}
.subheadline {
  font-size: 1.18rem;
  color: #254B62;
  margin-bottom: 18px;
  letter-spacing: .01em;
  font-family: 'Montserrat', 'Open Sans', sans-serif;
  font-weight: 600;
}

/* =================
   LAYOUT CONTAINERS
==================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 0;
}

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

@media (max-width: 768px) {
  .section, section {
    margin-bottom: 36px;
    padding: 28px 8px;
  }
  .container {
    padding-left: 11px;
    padding-right: 11px;
  }
}

/* ===============
    FLEXBOX GROUPS
================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 0;
}
.card {
  margin-bottom: 20px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 4px 18px rgba(51,86,112,0.13);
  transition: box-shadow 0.3s, transform 0.25s;
  position: relative;
  overflow: hidden;
  flex: 1 1 280px;
  min-width: 260px;
  max-width: 370px;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(236,173,73,.22);
  transform: translateY(-4px) scale(1.03);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px 18px 26px 18px;
  gap: 12px;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .text-image-section, .content-grid {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 10px rgba(51,86,112,0.08);
  padding: 24px 20px;
  min-width: 220px;
  max-width: 320px;
  flex: 1 1 210px;
  transition: transform 0.25s cubic-bezier(.58,.2,.57,1.29), box-shadow 0.3s;
  margin-bottom: 0;
  border: 2.5px solid #F5F6F8;
}
.feature-item img {
  width: 44px;
  height: 44px;
  margin-bottom: 2px;
  transition: transform .35s cubic-bezier(.61,-0.36,.33,1.53);
}
.feature-item:hover {
  transform: translateY(-6px) scale(1.04) rotate(-2deg);
  box-shadow: 0 9px 28px rgba(236,173,73,.13),0 2px 16px rgba(240,77,99,.08);
  border-color: #ECAD49;
}
.feature-item:hover img {
  transform: rotate(14deg) scale(1.12);
}

.usp-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin: 20px 0 0 0;
}

/* FAQ GROUP */
.faq-group {
  display: flex;
  flex-direction: column;
  gap: 28px;
  background: #fff;
  padding: 32px 20px;
  border-radius: 22px;
  box-shadow: 0 2px 12px rgba(60,140,150,.07);
}
.faq-group h3 {
  margin-top: 8px;
  color: #3EBCA5;
}
.faq-group ul {
  gap: 11px;
  display: flex;
  flex-direction: column;
  margin-top: 0;
}


/* ===============
   HERO, CTA & SECTIONS
================== */
.hero {
  background: #ECAD49;
  background-image: linear-gradient(150deg, #ECAD49 75%, #fff 100%);
  border-radius: 0 0 52px 52px;
  text-align: left;
  margin-bottom: 60px;
  position: relative;
  overflow: visible;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 14px;
  padding: 36px 0;
}
.hero h1, .hero h2 {
  color: #254B62;
  text-shadow: 1px 2px 0 #FFF8E5;
}
.hero .cta-btn {
  margin-top: 15px;
}
@media (max-width: 768px) {
  .hero {
    border-radius: 0 0 32px 32px;
    margin-bottom: 36px;
  }
  .hero .content-wrapper {
    padding: 26px 0 12px 0;
  }
}

.cta {
  background: #F04D63;
  border-radius: 18px;
  margin-bottom: 60px;
  position: relative;
  overflow: visible;
}
.cta .content-wrapper {
  align-items: flex-start;
  gap: 10px;
  padding: 18px 0;
}
.cta h2, .cta p {
  color: #fff;
}
.cta .cta-btn {
  background: #fff;
  color: #F04D63;
  border: 2.6px solid #fff;
}
.cta .cta-btn:hover {
  background: #ECAD49;
  color: #254B62;
  border-color: #fff;
}
/* ===================
  BUTTONS & INTERACTIONS
====================== */
.cta-btn, .main-nav .cta-btn, .mobile-nav .cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 1.13rem;
  padding: 12px 34px;
  border-radius: 40px;
  background: #254B62;
  color: #fff;
  box-shadow: 0 2px 14px rgba(236,173,73,.09);
  border: 2.6px solid #ECAD49;
  margin-top: 8px;
  transition: background 0.22s, color 0.12s, box-shadow 0.27s, border-color 0.18s, transform .19s;
  position: relative;
  z-index: 1;
}
.cta-btn:active, .cta-btn:focus {
  outline: 3px dotted #F04D63;
  outline-offset: 2px;
}
.cta-btn:hover {
  background: #ECAD49;
  color: #254B62;
  border-color: #254B62;
  box-shadow: 0 7px 24px rgba(236,173,73,.21);
  transform: translateY(-2px) scale(1.035);
}

button, .main-nav a, .footer-nav a, .mobile-nav a {
  transition: color 0.18s, background 0.16s, box-shadow 0.16s, transform 0.2s;
}
/* Fun Icon on Hover */
.main-nav a:not(.cta-btn):hover,  .footer-nav a:hover, .mobile-nav a:hover {
  color: #F04D63;
  text-shadow: 0 1px 0 #ECAD49, 1px 2px 0 #fcfcfc;
  background: rgba(236,173,73,.12);
  border-radius: 13px;
}

/* ===============
      NAVIGATION
================== */
header {
  background: #fff;
  box-shadow: 0 2px 17px rgba(34,75,98,0.04);
  position: sticky;
  top: 0;
  left: 0;
  z-index: 109;
}

.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
  justify-content: flex-start;
  padding: 15px 0 9px 0;
}
.main-nav a {
  font-family: 'Montserrat', 'Open Sans', sans-serif;
  font-size: 1.06rem;
  color: #254B62;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 12px;
  margin: 0 2px;
  transition: background 0.18s, color 0.13s, box-shadow 0.18s;
}
.main-nav .cta-btn {
  margin-left: auto;
  margin-right: 0;
  font-size: 1.05rem;
  padding: 10px 25px;
}
.main-nav a img {
  height: 38px;
  width: auto;
  margin-right: 16px;
  vertical-align: middle;
}

/* Hamburger menu button */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  color: #254B62;
  padding: 7px 12px;
  border-radius: 19px;
  background: #ECAD49;
  box-shadow: 0 2px 10px rgba(236,173,73,0.08);
  position: absolute;
  right: 16px;
  top: 17px;
  z-index: 120;
  border: 2px solid #F04D63;
  transition: background 0.22s, color 0.22s, box-shadow 0.18s;
}
.mobile-menu-toggle:hover {
  background: #F04D63;
  color: #fff;
}

/* MOBILE NAVIGATION */
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  background: #254B62;
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  z-index: 301;
  padding: 0 0 0 0;
  transform: translateX(100%);
  transition: transform 0.47s cubic-bezier(.85,-0.2,.21,1.23);
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: 0px 0px 20px 10px rgba(37,75,98,0.18);
}
.mobile-menu-close {
  position: absolute;
  right: 22px;
  top: 22px;
  background: #F04D63;
  color: #fff;
  font-size: 2.2rem;
  border-radius: 50%;
  padding: 7px 18px 7px 18px;
  z-index: 310;
  border: 2.7px solid #ECAD49;
  transition: background 0.18s, color 0.2s;
}
.mobile-menu-close:hover {
  background: #ECAD49;
  color: #254B62;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 19px;
  margin-top: 70px;
  width: 100%;
  align-items: center;
}
.mobile-nav a {
  font-family: 'Montserrat', 'Open Sans', sans-serif;
  font-size: 1.27rem;
  color: #fff;
  font-weight: 600;
  padding: 11px 20px;
  width: 82%;
  border-radius: 13px;
  background: #3EBCA5;
  margin-bottom: 0;
  text-align: center;
  box-shadow: 0 2px 12px rgba(62,188,165,0.10);
  transition: background 0.18s, color 0.13s, box-shadow 0.18s, transform 0.16s;
}
.mobile-nav a:hover {
  background: #ECAD49;
  color: #254B62;
  box-shadow: 0 4px 16px rgba(236,173,73,0.15);
  transform: scale(1.035);  
}

/* Show/hide for mobile navigation */
@media (max-width: 1024px) {
  .main-nav{
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* =============
    FOOTER
=============== */
footer {
  background: #254B62;
  padding: 42px 0 12px 0;
  color: #fff;
  border-radius: 42px 42px 0 0;
  box-shadow: 0 -2px 34px rgba(37,75,98,.07);
  margin-top: 48px;
}
footer .container {
  display: flex;
  flex-direction: row;
  gap: 38px;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.footer-logo img {
  width: 48px;
  height: 48px;
  margin-bottom: 13px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.footer-nav a {
  color: #ECAD49;
  font-family: 'Montserrat', 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 1.07rem;
  margin-bottom: 0;
  border-radius: 8px;
  padding: 2px 6px;
}
.footer-nav a:hover {
  background: #fff;
  color: #254B62;
  text-decoration: underline;
}
.footer-contact p {
  color: #fff;
  font-size: 1.02rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.footer-contact img {
  width: 19px;
  height: 19px;
}
@media (max-width: 1024px) {
  footer .container {
    flex-direction: column;
    gap: 23px;
    align-items: flex-start;
  }
  footer {
    padding: 34px 0 8px 0;
    border-radius: 28px 28px 0 0;
  }
}

/* ================
   TESTIMONIALS
================== */
.testimonials {
  background: #F5F6F8;
  margin-bottom: 60px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 19px;
  box-shadow: 0 2px 23px 0 rgba(236,173,73,0.09);
  margin-bottom: 22px;
  border-left: 9px solid #ECAD49;
  font-size: 1.11rem;
  color: #254B62;
  position: relative;
  transition: box-shadow 0.21s, transform 0.22s;
}
.testimonial-card:before {
  content: '"';
  color: #F04D63;
  font-size: 2.3rem;
  font-family: 'Montserrat', cursive;
  font-weight: bold;
  position: absolute;
  left: 16px;
  top: -6px;
  opacity: .23;
}
.testimonial-card blockquote {
  font-family: 'Montserrat', 'Open Sans', sans-serif;
  font-size: 1.22rem;
  color: #254B62;
  background: transparent;
  border: none;
  margin: 0;
  padding: 0;
  font-weight: 600;
}
.testimonial-author {
  font-size: 0.97rem;
  color: #3EBCA5;
  font-family: 'Open Sans', Arial, sans-serif;
  font-style: italic;
  margin-left: 18px;
}
.testimonial-card:hover {
  box-shadow: 0 5px 25px rgba(37,75,98,0.15);
  transform: scale(1.025);
}
@media (max-width: 768px) {
  .testimonial-card {
    flex-direction: column;
    gap: 9px;
    padding: 18px 10px;
  }
  .testimonial-card .testimonial-author {
    margin-left: 0;
  }
}

/* ================
    OL/UL STYLES
================== */
ul, ol {
  margin-left: 0;
  margin-bottom: 10px;
  list-style: none;
}
ul li:before {
  content: '•';
  color: #ECAD49;
  display: inline-block;
  font-size: 1.2em;
  width: 1em;
  margin-left: -1em;
  margin-right: 9px;
  font-weight: bold;
}

ol {
  counter-reset: num;
}
ol li {
  counter-increment: num;
}
ol li:before {
  content: counter(num) '.';
  color: #F04D63;
  font-weight: bold;
  display: inline-block;
  width: 1.2em;
  margin-right: 7px;
}

/* ================
     CONTACT DETAILS
================== */
.contact-details ul,
footer .footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: 12px;
  margin-bottom: 0;
  padding: 7px 14px;
  font-size: 1.1rem;
  box-shadow: 0 1px 8px rgba(236,173,73,0.07);
}
.contact-details img {
  width: 22px;
  height: 22px;
}

/* ===============
    COOKIES BANNER
================== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100%;
  background: #254B62;
  box-shadow: 0 -2px 40px rgba(34,75,98,0.11);
  color: #fff;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  padding: 19px 21px 18px 21px;
  font-size: 1.05rem;
  animation: cookie-slide-in 0.63s cubic-bezier(.58,-0.2,.56,1.37);
}
@keyframes cookie-slide-in {
  from { transform: translateY(120%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  color: #fff;
  margin-bottom: 0;
  font-size: 1.08rem;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
}
.cookie-btn, .cookie-settings-btn {
  font-family: 'Montserrat', 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 1.06rem;
  border-radius: 23px;
  padding: 8px 24px;
  background: #ECAD49;
  color: #254B62;
  border: none;
  box-shadow: 0 2px 14px rgba(236,173,73,.07);
  margin-left: 0;
  transition: background 0.19s, color 0.15s, box-shadow 0.19s;
}
.cookie-btn:hover, .cookie-settings-btn:hover {
  background: #F04D63;
  color: #fff;
}
.cookie-reject-btn {
  background: #fff;
  color: #F04D63;
  border: 2px solid #F04D63;
}
.cookie-reject-btn:hover {
  background: #F04D63;
  color: #fff;
}

/* COOKIES MODAL */
.cookie-modal-backdrop {
  position: fixed;
  top:0; left:0; width:100vw; height:100vh;
  background: rgba(37,75,98,0.48);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fade-in .37s;
}
@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #254B62;
  border-radius: 33px;
  box-shadow: 0 8px 44px rgba(37,75,98,0.19);
  padding: 40px 32px 26px 32px;
  max-width: 395px;
  width: 85vw;
  z-index: 10010;
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: modal-bounce .47s;
}
@keyframes modal-bounce {
  0% { transform: scale(.92) translateY(44px); opacity: 0; }
  60% { transform: scale(1.03) translateY(-11px); }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  color: #3EBCA5;
  font-size: 1.31rem;
  margin-bottom: 12px;
}
.cookie-modal p {
  font-size: 1.08rem;
  color: #254B62;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 9px;
}
.cookie-category label {
  font-size: 1.01rem;
  font-weight: 600;
}
.cookie-toggle {
  width: 2.3em;
  height: 1.2em;
  border-radius: 1em;
  background: #ECAD49;
  position: relative;
  transition: background 0.14s;
  margin-right: 2px;
}
.cookie-toggle[aria-checked="true"] {
  background: #3EBCA5;
}
.cookie-toggle-knob {
  position: absolute;
  left: 3px;
  top: 4px;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1.5px 6px rgba(37,75,98,0.12);
  transition: left 0.15s;
}
.cookie-toggle[aria-checked="true"] .cookie-toggle-knob {
  left: 1.2em;
}
.cookie-save-btn {
  background: #254B62;
  color: #fff;
  border: none;
  border-radius: 19px;
  padding: 10px 30px;
  font-size: 1.06rem;
  font-family: 'Montserrat', 'Open Sans', sans-serif;
  font-weight: 700;
  margin-top: 7px;
  margin-bottom: 0;
  transition: background 0.17s, color 0.15s;
}
.cookie-save-btn:hover {
  background: #3EBCA5;
  color: #fff;
}

/* ================
  UTILITY CLASSES
================== */
.mt-32 { margin-top: 32px; }
.mb-24 { margin-bottom: 24px; }
.mt-14 { margin-top: 14px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }
.text-right { text-align: right; }

/* ==========
   ANIMATIONS & MICRO-INTERACTIONS
============ */
a, .cta-btn, button {
  transition: all 0.15s cubic-bezier(.7,.24,.53,1.04);
}
.feature-item, .card, .testimonial-card {
  transition: box-shadow 0.23s, transform 0.17s;
}

@media (hover: none) {
  .feature-item:hover, .card:hover, .testimonial-card:hover, .cta-btn:hover {
    filter: brightness(1.07);
    transform: scale(1.01);
  }
}

/* ===========
   SCROLLBAR
============ */
::-webkit-scrollbar {
  width: 10px;
  background: #F5F6F8;
}
::-webkit-scrollbar-thumb {
  background: #ECAD49;
  border-radius: 7px;
}

/* ==============
   RESPONSIVE RULES
================== */
@media (max-width: 900px) {
  .feature-grid, .card-container, .content-grid {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 2.0rem;
  }
  h2 {
    font-size: 1.35rem;
  }
  .feature-item {
    min-width: 85vw;
    max-width: 100%;
    padding: 16px 10px;
  }
  .footer-nav {
    flex-direction: row;
    gap: 18px;
  }
}
@media (max-width: 500px) {
  .footer-logo img { width: 31px; height: 31px; }
  .contact-details li img {
    width: 16px; height: 16px;
  }
  .cookie-modal { padding: 18px 5px; }
}

/* =============
   AESTHETIC DECORATIONS
================== */
.hero::before {
  content: '';
  display: block;
  position: absolute;
  right: -80px; top: 0;
  width: 180px; height: 180px;
  background: #F04D63;
  opacity: 0.14;
  border-radius: 50%;
  z-index: 0;
}
.cta::after {
  content: '';
  display: block;
  position: absolute;
  left: -40px; bottom: -35px;
  width: 90px; height: 90px;
  background: #FFF8E5;
  opacity: 0.37;
  border-radius: 60% 36% 42% 58%;
}

/* ===============
   PRINT STYLES
============== */
@media print {
  header, footer, .cta, .cookie-banner, .cookie-modal, .mobile-menu { display: none !important; }
  main, section { background: #fff !important; }
  body { color: #222; }
}
