/* =====================
   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,
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;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #222B45;
  background: #F4F7FA;
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

ul, ol {
  list-style: none;
}

a {
  color: #1A2238;
  text-decoration: none;
  transition: color 0.18s;
}

a:hover, a:focus {
  color: #406FDE;
  outline: none;
}

button {
  font-family: inherit;
  font-size: 1rem;
  cursor: pointer;
  background: none;
  border: none;
  outline: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial', sans-serif;
  color: #1A2238;
  font-weight: 700;
  line-height: 1.18;
}
h1 { font-size: 2.5rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.25rem; margin-bottom: 10px; }
h4 { font-size: 1.1rem; margin-bottom: 8px; }

p, li, td, th {
  font-size: 1rem;
  color: #222B45;
}

strong { font-weight: 600; }

.container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* =========================
    MAIN NAVIGATION DESKTOP
   ========================= */
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(33, 52, 105, 0.06);
  position: relative;
  z-index: 101;
  padding: 0 24px;
}
.logo-link {
  display: flex;
  align-items: center;
  height: 55px;
  margin-right: 32px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #1A2238;
  padding: 10px 16px;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}

.nav-links a:hover,
.nav-links a:focus {
  background: #9DAAF2;
  color: #1A2238;
}

.nav-links .cta.primary {
  background: #1A2238;
  color: #fff;
  border-radius: 6px;
  padding: 11px 22px;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 2px 12px 0 rgba(26,34,56,0.08);
  margin-left: 8px;
  transition: background 0.15s, color 0.15s, box-shadow 0.13s;
}

.nav-links .cta.primary:hover,
.nav-links .cta.primary:focus {
  background: #406FDE;
  color: #fff;
  box-shadow: 0 4px 18px 0 rgba(26,34,56,0.18);
}

/* ============================
     MOBILE NAVIGATION/BURGER
   ============================ */
.mobile-menu-toggle {
  display: none;
  margin-left: 20px;
  font-size: 2rem;
  color: #1A2238;
  background: none;
  border: none;
  padding: 7px 14px;
  border-radius: 5px;
  transition: background 0.16s;
  z-index: 110;
}

.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #F4F7FA;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(26,34,56,0.97);
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  z-index: 1250;
  transform: translateX(100%);
  transition: transform 0.29s cubic-bezier(.61,.16,.32,1);
}
.mobile-menu.active {
  display: flex;
  transform: translateX(0);
}

.mobile-menu-close {
  align-self: flex-end;
  font-size: 2rem;
  background: none;
  color: #fff;
  border: none;
  margin: 28px 26px 8px 0;
  padding: 5px 12px;
  border-radius: 5px;
  transition: background 0.12s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: #9DAAF2;
  color: #18203B;
}

.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 36px 28px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  padding: 15px 8px;
  border-radius: 5px;
  transition: background 0.17s, color 0.12s;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #9DAAF2;
  color: #18203B;
}

@media (max-width: 1024px) {
  .nav-links {
    gap: 12px;
  }
}
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* Brand logo shrink on small screens */
@media (max-width: 600px) {
  .main-nav {
    height: 58px;
    padding: 0 10px;
  }
  .logo-link {
    height: 39px;
    margin-right: 18px;
  }
}

/* ======================
    COMMON SECTIONS STYLES
   ====================== */
section {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 32px 0 rgba(33,52,105,0.07);
  margin-bottom: 60px;
  padding: 40px 20px;
  display: flex;
  justify-content: center;
}

.container {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

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

@media (max-width: 900px) {
  section {
    padding: 24px 8px;
    margin-bottom: 30px;
    border-radius: 9px;
  }
  .section {
    padding: 24px 8px;
    margin-bottom: 32px;
    border-radius: 9px;
  }
}

/* ======================
   HERO STYLES
   ====================== */
section:first-of-type {
  background: #1A2238;
  color: #fff;
  box-shadow: 0 8px 40px 0 rgba(26,34,56,0.15);
}
section:first-of-type h1,
section:first-of-type h2,
section:first-of-type p {
  color: #fff;
}
section:first-of-type .cta.primary {
  background: #fff;
  color: #1A2238;
}
section:first-of-type .cta.primary:hover {
  background: #9DAAF2;
  color: #1A2238;
}

/* ======================
    BUTTONS
   ====================== */
.cta {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 12px 28px;
  background: #9DAAF2;
  color: #1A2238;
  border: none;
  border-radius: 7px;
  box-shadow: 0 2px 10px 0 rgba(33,52,105,0.08);
  transition: background 0.17s, color 0.17s, box-shadow 0.13s;
  cursor: pointer;
  margin-top: 4px;
  text-align: center;
}
.cta.primary {
  background: #1A2238;
  color: #fff;
}
.cta:hover,
.cta:focus {
  background: #406FDE;
  color: #fff;
  box-shadow: 0 4px 20px 0 rgba(26,34,56,0.15);
}

/* ========================
    FLEXBOX LAYOUTS, CARDS
   ======================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 14px 0 rgba(26,34,56,0.08);
  margin-bottom: 20px;
  padding: 28px 22px;
  position: relative;
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.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: 18px;
  }
  .content-grid,
  .card-container {
    flex-direction: column;
  }
}

/* ========================
   FEATURE, SERVICES, CARDS
   ======================== */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.feature-card {
  flex: 1 1 235px;
  background: #F4F7FA;
  border-radius: 10px;
  box-shadow: 0 2px 10px 0 rgba(26,34,56,0.07);
  padding: 28px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 220px;
  min-height: 260px;
  transition: box-shadow .17s, transform .13s;
}
.feature-card img {
  width: 38px;
  height: 38px;
  margin-bottom: 7px;
}
.feature-card:hover {
  box-shadow: 0 6px 22px 0 rgba(26,34,56,0.15);
  transform: translateY(-2px) scale(1.02);
}

.service-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.service-card {
  flex: 1 1 235px;
  min-width: 220px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px 0 rgba(26,34,56,0.07);
  padding: 28px 18px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  border-left: 4px solid #9DAAF2;
  transition: box-shadow 0.15s, border-color 0.12s;
}
.service-card:hover {
  box-shadow: 0 8px 28px 0 rgba(26,34,56,0.14);
  border-color: #406FDE;
}
.service-card a {
  margin-top: 10px;
  font-weight: 600;
  color: #406FDE;
  text-decoration: underline;
}
.service-card a:hover,
.service-card a:focus {
  color: #1A2238;
}

/* ==============
   TEAM GRID
   ============== */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.team-member {
  flex: 1 1 220px;
  min-width: 180px;
  background: #F4F7FA;
  border-radius: 10px;
  box-shadow: 0 2px 8px 0 rgba(26,34,56,0.06);
  padding: 26px 16px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

@media (max-width: 900px) {
  .feature-grid,
  .service-highlights,
  .team-grid {
    flex-direction: column;
    gap: 16px;
  }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ================
   TESTIMONIALS
   ================ */
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #F4F7FA;
  box-shadow: 0 2px 8px 0 rgba(26,34,56,0.10);
  border-radius: 10px;
  min-width: 225px;
  flex: 1 1 225px;
  margin-bottom: 20px;
  transition: box-shadow .18s, transform .11s;
}
.testimonial-card p {
  color: #18203B;
  font-size: 1.1rem;
  font-style: italic;
}
.testimonial-card span {
  color: #1A2238;
  font-weight: 600;
  font-size: 0.96rem;
  opacity: 0.87;
}
.testimonial-card:hover {
  box-shadow: 0 4px 22px 0 rgba(26,34,56,0.15);
  transform: translateY(-2px) scale(1.01);
}

@media (max-width: 900px) {
  .testimonial-list {
    flex-direction: column;
    gap: 16px;
  }
}

/* ================
   PRICING TABLES
   ================ */
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #F4F7FA;
  border-radius: 11px;
  overflow: hidden;
  margin-bottom: 26px;
  box-shadow: 0 2px 10px 0 rgba(26,34,56,0.10);
}
.pricing-table th,
.pricing-table td {
  text-align: left;
  padding: 16px 18px;
  font-size: 1rem;
  border-bottom: 1px solid #e8ecfa;
}
.pricing-table th {
  background: #9DAAF2;
  color: #1A2238;
  font-weight: 700;
}
.pricing-table tr:last-child td {
  border: none;
}

/* ==========
   FORMS
   ========== */
select {
  font-size: 1.04rem;
  padding: 8px 12px;
  border: 1px solid #D1D5E6;
  border-radius: 7px;
  margin-right: 10px;
  background: #F9FAFC;
  color: #1A2238;
  transition: border-color 0.13s;
}
select:focus {
  border-color: #406FDE;
}
.comparison-selector {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
}
.comparison-selector div {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* ===============
   TABLES
   =============== */
.comparison-table {
  margin-top: 22px;
  overflow-x: auto;
}
.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
  font-size: 1rem;
}
.comparison-table th,
.comparison-table td {
  padding: 13px 18px;
  border-bottom: 1px solid #E9EDF7;
}
.comparison-table th {
  background: #9DAAF2;
  color: #1A2238;
  font-weight: 700;
}
.comparison-table tr:nth-child(even) td {
  background: #F7FAFF;
}

/* ===========
   INSIGHTS
   =========== */
.insight-summary {
  background: #F4F7FA;
  border-left: 5px solid #9DAAF2;
  border-radius: 7px;
  padding: 24px 16px;
  margin-bottom: 20px;
  box-shadow: 0 2px 9px 0 rgba(26,34,56,0.07);
}
.trends-overview {
  background: #F4F7FA;
  border-left: 4px solid #406FDE;
  border-radius: 7px;
  padding: 24px 13px;
  box-shadow: 0 1px 4px 0 rgba(26,34,56,0.04);
  margin-bottom: 13px;
  margin-top: 16px;
}

/* ==============
   QUICK TIP BOX
   ============== */
.quick-tip {
  background: #D3E2FF;
  color: #142042;
  font-size: 1rem;
  border-radius: 7px;
  padding: 11px 16px;
  box-shadow: 0 2px 7px 0 rgba(26,34,56,0.07);
  margin-top: 16px;
}

/* =========
   FAQ
   ========= */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-item {
  padding: 18px 15px;
  background: #F4F7FA;
  border-radius: 8px;
  box-shadow: 0 1px 6px 0 rgba(26,34,56,0.06);
}
.faq-item h3 {
  margin-bottom: 6px;
}

/* ==============
   CONTACT DETAILS
   ============== */
.contact-details {
  padding: 18px 13px;
  background: #F4F7FA;
  border-radius: 7px;
  box-shadow: 0 1px 6px 0 rgba(26,34,56,0.08);
  margin-top: 12px;
  font-size: 1.06rem;
}

/* ===================
        FOOTER
   =================== */
footer {
  background: #1A2238;
  color: #fff;
  padding-top: 42px;
  padding-bottom: 15px;
  width: 100%;
  margin-top: 40px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 36px;
  margin-bottom: 18px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a {
  color: #ced5ea;
  font-size: 1rem;
  margin-bottom: 2px;
  transition: color 0.14s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: #9DAAF2;
}
.footer-contact {
  color: #f9fbff;
  font-size: 0.97rem;
}
.footer-contact a {
  color: #9DAAF2;
  text-decoration: underline;
}
.footer-bottom {
  border-top: 1px solid #26325d;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  flex-wrap: wrap;
  font-size: 0.98rem;
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-social img {
  width: 22px;height: 22px;
  opacity: 0.67;
  transition: opacity 0.13s, transform .13s;
}
.footer-social img:hover {
  opacity: 1;
  transform: scale(1.11);
}
@media (max-width: 1024px) {
  .footer-top {
    flex-direction: column;
    gap: 18px;
  }
}

/* ==========================
    TAGLINE (special class)
   ========================= */
.tagline {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #406FDE;
  font-size: 1.2rem;
  margin-top: 10px;
}

/* ==============
   COOKIE CONSENT
   ============== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #1A2238;
  color: #fff;
  padding: 18px 22px 18px 22px;
  z-index: 3000;
  box-shadow: 0 -2px 16px 0 rgba(26,34,56,0.13);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  font-size: 1rem;
  transition: transform .3s cubic-bezier(0.31,1,0.5,1);
  transform: translateY(0);
}
.cookie-banner.closed {
  transform: translateY(100%);
}
.cookie-banner .cookie-text {
  flex: 1 100%;
  min-width: 180px;
  margin-bottom: 10px;
  color: #fff;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 10px 18px;
  border-radius: 6px;
  border: none;
  transition: background 0.16s, color 0.14s, box-shadow 0.12s;
}
.cookie-banner .accept {
  background: #406FDE;
  color: #fff;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #293669;
}
.cookie-banner .reject {
  background: #eaeaea;
  color: #1A2238;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #c8cfec;
}
.cookie-banner .settings {
  background: #9DAAF2;
  color: #1A2238;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #406FDE;
  color: #fff;
}

@media (max-width:600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 9px 14px 9px;
    font-size: 0.97rem;
    gap:10px;
  }
  .cookie-banner .cookie-actions {
    width: 100%;
    gap: 8px;
    margin-top: 6px;
  }
}

/* COOKIE SETTINGS MODAL */
.cookie-modal-overlay {
  position: fixed;
  z-index: 3040;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(26,34,56,0.78);
  display: none;
  justify-content: center;
  align-items: center;
  transition: opacity 0.24s;
}
.cookie-modal-overlay.active {
  display: flex;
  animation: fadeIn .28s linear;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #1A2238;
  border-radius: 16px;
  padding: 38px 28px;
  min-width: 320px;
  box-shadow: 0 6px 38px 0 rgba(26,34,56,0.19);
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  animation: popIn .22s cubic-bezier(.61,.16,.32,1);
}
@keyframes popIn {
  from { transform: scale(0.9); opacity:0; }
  to { transform: scale(1); opacity:1; }
}
.cookie-modal h2 {
  margin-bottom: 6px;
  color: #1A2238;
  font-size: 1.3rem;
}
.cookie-modal .category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #e9ecfa;
}
.cookie-modal .category:last-child {
  border-bottom: none;
}
.cookie-modal .category label {
  font-size: 1rem;
  color: #1A2238;
  font-weight: 500;
}
.cookie-modal .category .toggle {
  appearance: none;
  width: 38px;
  height: 22px;
  background: #d3dbee;
  border-radius: 16px;
  position: relative;
  outline: none;
  border: none;
  transition: background 0.15s;
}
.cookie-modal .category .toggle:checked {
  background: #406FDE;
}
.cookie-modal .category .toggle:disabled {
  background: #dedede;
  cursor: not-allowed;
}
.cookie-modal .category .toggle::after {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.15s;
}
.cookie-modal .category .toggle:checked::after {
  left: 19px;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 15px; right: 14px;
  font-size: 1.45rem;
  color: #1A2238;
  background: none;
  border: none;
  cursor: pointer;
  padding: 2px 7px;
  border-radius: 4px;
  transition: background 0.16s;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  background: #e5ebfa;
}
.cookie-modal .actions {
  margin-top: 10px;
  display: flex;
  gap: 13px;
  align-items: center;
}
.cookie-modal .actions button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 5px;
  border: none;
}
.cookie-modal .save {
  background: #406FDE;
  color: #fff;
}
.cookie-modal .save:hover { background: #293669; }
.cookie-modal .cancel {
  background: #eaeaea;
  color: #1A2238;
}
.cookie-modal .cancel:hover { background: #c8cfec; }

@media (max-width: 480px) {
  .cookie-modal {
    min-width: 0;
    padding: 28px 12px;
    font-size: 0.95rem;
  }
}

/* ====================
      MEDIA QUERIES
   ==================== */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.45rem; }
  .content-wrapper { gap: 16px; }
  .feature-card, .service-card, .team-member, .testimonial-card {
    min-width: 0;
    padding: 18px 8px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 6px;
    padding-top: 10px;
  }
  .footer-top {
    padding-bottom: 8px;
  }
  .pricing-table th, .pricing-table td {
    padding: 10px 8px;
  }
  .insight-summary, .trends-overview {
    padding: 14px 7px;
  }
}

/* =========
 ACCESSIBILITY
=========== */
:focus {
  outline: 2px solid #406FDE;
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px; height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  left: 0;
  width: auto; height: auto;
  background: #1A2238;
  color: #fff;
  padding: 8px 16px;
  z-index: 2002;
}

/* ==========
  ANIMATIONS
  ========== */
.cta, .feature-card, .service-card, .testimonial-card, .team-member, .quick-tip, .faq-item, .insight-summary, .trends-overview, .card {
  transition: box-shadow 0.17s, transform 0.12s, background 0.15s, color 0.12s;
}

/* ============
 PRINT SUPPORT
 ============ */
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
  section, .container { box-shadow: none !important; background: #fff !important; }
  * { color: #111 !important; background: none !important; }
}
