/* ==================================================
   XELVENTH LEARNING - INDUSTRIAL MODERN STYLE CSS
   Aesthetic: Industrial Modern (Dark, Urban, Metal)
   Brand: Trustworthy, Modern, Approachable, Urban Edge
   =================================================== */

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

html {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background: #181E2B; /* Urban industrial dark */
  color: #EBEDF0;
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background: #181E2B;
  color: #EBEDF0;
  min-height: 100vh;
  line-height: 1.6;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 400;
}

*, *:before, *:after {
  box-sizing: inherit;
}

img {
  max-width: 100%;
  display: block;
}

ul, ol {
  margin-left: 1.5em;
  margin-bottom: 1.5em;
}

/* Remove input, button browser default styles */
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  appearance: none;
  box-shadow: none;
}

/* -----------------------------
   TYPOGRAPHY - INDUSTRIAL MODERN
-------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&family=Open+Sans:wght@400;600;700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Black', Arial, sans-serif;
  font-weight: 700;
  color: #F1C93A;
  letter-spacing: 0.02em;
  line-height: 1.1;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  color: #F1C93A;
  text-shadow: 0 2px 16px #22282b60;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
  color: #F1C93A;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: #65A8B6;
}
h4 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #65A8B6;
}
p, li {
  font-size: 1rem;
  color: #EBEDF0;
  line-height: 1.7;
  margin-bottom: 12px;
}
strong, b {
  color: #F1C93A;
  font-weight: bold;
}
a {
  color: #65A8B6;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F1C93A;
}

/* -----------------------------
   FLEXBOX CONTAINER UTILITIES
------------------------------- */

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Spacing and pattern classes as required */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #222834;
  border-radius: 14px;
  box-shadow: 0 3px 14px 0 #1b1f245a;
  padding: 32px 24px;
  color: #EBEDF0;
}
.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;
  background: #F5F7FA;
  color: #222834;
  border-radius: 10px;
  box-shadow: 0 2px 10px #75757530;
  margin-bottom: 20px;
  flex: 1 1 calc(32% - 24px);
  position: relative;
  min-width: 260px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --------------------------------
   HEADER & NAVIGATION - FLEX LAYOUT
---------------------------------- */
header {
  width: 100%;
  background: #222834;
  box-shadow: 0px 2px 12px #222d356a;
  position: sticky;
  top: 0;
  z-index: 110;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  padding: 18px 0;
}
.main-nav img {
  height: 40px;
  width: auto;
  margin-right: 40px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: #EBEDF0;
  padding: 8px 16px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
.main-nav a.cta {
  background: #F1C93A;
  color: #222834;
  margin-left: auto;
  margin-right: 0;
  box-shadow: 0 2px 6px #0004;
  font-weight: 800;
  transition: filter 0.2s, box-shadow 0.2s, background 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #31384b;
  color: #F1C93A;
}
.main-nav a.cta:hover, .main-nav a.cta:focus {
  background: #FFD938;
  filter: brightness(1.09);
  color: #222834;
  box-shadow: 0 5px 12px #FFD93850;
}

/* ----------------------
   MOBILE MENU COMPONENT
------------------------*/
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #F1C93A;
  cursor: pointer;
  margin-left: 20px;
  z-index: 200;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 85vw;
  max-width: 340px;
  background: #181E2B;
  box-shadow: 4px 0 25px #000b;
  z-index: 500;
  transform: translateX(-110%);
  transition: transform 0.4s cubic-bezier(0.77,0,0.18,1);
  padding: 28px 24px 18px 24px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #F1C93A;
  cursor: pointer;
  margin-bottom: 20px;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}
.mobile-nav a {
  color: #F1C93A;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  padding: 14px 10px;
  border-radius: 7px;
  font-weight: 800;
  letter-spacing: .03em;
  background: #242e41;
  margin-left: -6px;
  transition: background 0.18s, color 0.18s;
  text-align: left;
}
.mobile-nav a:active, .mobile-nav a:hover {
  background: #F1C93A;
  color: #222834;
}

/* Responsive menu overlay (close menu if clicked outside) */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0 0 0 0;
  background: rgba(24,30,43,0.64);
  z-index: 400;
}
.mobile-menu.open ~ .mobile-menu-overlay {
  display: block;
}

/* --------------------------
   HERO SECTION & CTA BUTTONS
----------------------------*/
.hero {
  background: linear-gradient(120deg, #181E2B 70%, #31384b 98%);
  box-shadow: 0px 8px 34px #22282b35;
  display: flex;
  align-items: center;
  justify-content: stretch;
  margin-bottom: 0;
  padding: 0 0 20px 0;
}
.hero .container {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero .content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  margin: 0 auto;
  max-width: 670px;
  padding-top: 44px;
  padding-bottom: 44px;
}

.cta {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  background: #F1C93A;
  color: #222834 !important;
  border: none;
  border-radius: 10px;
  padding: 14px 36px;
  margin-top: 10px;
  text-align: center;
  letter-spacing: 0.025em;
  box-shadow: 0 2px 12px #F1C93A38;
  cursor: pointer;
  transition: background 0.16s, color 0.18s, box-shadow 0.25s, filter 0.18s;
  position: relative;
}
.cta:hover, .cta:focus {
  background: #FFD938;
  color: #181E2B !important;
  filter: brightness(1.06);
  box-shadow: 0 6px 22px #FFD93880;
  text-decoration: none;
}

/* --------------------------------
   FEATURE GRID & CARDS (Flexbox)
----------------------------------*/
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 6px;
  margin-top: 22px;
  justify-content: flex-start;
}
.feature-card {
  background: #232938;
  border-radius: 13px;
  box-shadow: 0 1px 12px #26304c28;
  padding: 34px 22px 26px 22px;
  min-width: 240px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.18s, background 0.18s, transform 0.18s;
  border: 1.5px solid #2c385a;
  margin-bottom: 20px;
}
.feature-card img {
  width: 44px;
  height: 44px;
  margin-bottom: 10px;
  filter: drop-shadow(0px 4px 8px #181E2B35) grayscale(10%) contrast(115%);
}
.feature-card h3 {
  margin-bottom: 8px;
}
.feature-card:hover, .feature-card:focus-within {
  background: #292e3d;
  box-shadow: 0 6px 24px #65A8B649, 0 2px 18px #181E2B32;
  transform: translateY(-5px) scale(1.015);
  border-color: #65A8B6;
}

/* Service Cards (Index) */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
  margin-bottom: 14px;
}
.service-card {
  background: #232938;
  flex: 1 1 246px;
  min-width: 240px;
  border-radius: 13px;
  box-shadow: 0 1px 13px #222d3560;
  padding: 34px 22px 26px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.16s, transform 0.16s, background 0.14s;
  margin-bottom: 20px;
  border: 1px solid #2c385a;
}
.service-card img {
  width: 44px;
  height: 44px;
  margin-bottom: 10px;
  filter: grayscale(12%) brightness(1.1);
}
.service-card h3 {
  margin-bottom: 8px;
}
.service-card a {
  margin-top: 12px;
  font-weight: 700;
  color: #65A8B6;
  text-decoration: underline;
  transition: color 0.17s;
}
.service-card a:hover {
  color: #F1C93A;
}
.service-card:hover {
  background: #292e3d;
  box-shadow: 0 7px 22px #F1C93A28;
  border-color: #F1C93A88;
  transform: translateY(-3px) scale(1.015);
}

/* --------------------------------------
   COURSES PAGE - COURSE LIST/ITEM/ACCORDION
-----------------------------------------*/
.course-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.course-item {
  background: #222834;
  border-radius: 11px;
  box-shadow: 0 1px 10px #222d3540;
  padding: 28px 22px 22px 22px;
  margin-bottom: 20px;
  position: relative;
  border-left: 4px solid #65A8B6;
}
.course-item h3 {
  color: #F1C93A;
  margin-bottom: 6px;
  font-size: 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.course-item span {
  color: #65A8B6;
  font-weight: 700;
  font-size: 1rem;
  margin-left: 12px;
}
.course-item details {
  margin-top: 14px;
}
.course-item summary {
  cursor: pointer;
  color: #F1C93A;
  font-weight: 700;
  outline: none;
  margin-bottom: 0;
  transition: color 0.15s;
}
.course-item details[open] summary {
  color: #65A8B6;
}
.course-item ul {
  margin-left: 1.2em;
  margin-bottom: 0;
  color: #EBEDF0;
}
.course-item li {
  margin-bottom: 5px;
}

/* -----------------
   TESTIMONIALS     
-------------------*/
.testimonials-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card span {
  color: #26304C;
  font-size: 0.98rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  margin-left: 12px;
}
.testimonial-card p {
  color: #222834;
  margin-bottom: 0;
  font-size: 1.08rem;
}

/* Emphasize testimonial card on hover */
.testimonial-card:hover, .testimonial-card:focus-within {
  background: #FFFBEA;
  box-shadow: 0 4px 18px #F1C93A40, 0 3px 10px #65A8B646;
  transform: translateY(-2px) scale(1.01);
  color: #181E2B;
}

/* -------------------
   VALUE/TEAM SECTIONS
---------------------*/
.brand-values, .team-highlights {
  background: #232938;
  border-radius: 11px;
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: 0 3px 16px #222d3535;
  border-left: 4px solid #F1C93A55;
}
.brand-values h3, .team-highlights h3 { margin-bottom: 14px; }
.brand-values ul li, .team-highlights p { color: #EBEDF0; }

/* -------------------
   CONTACT PAGE SPACING
---------------------*/
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #232938;
  border-radius: 10px;
  padding: 22px 20px;
  margin-bottom: 22px;
  box-shadow: 0 2px 12px #23293827;
  color: #F1C93A;
  font-weight: 600;
}
.contact-details a {
  color: #65A8B6;
}

/* -------------------
   RESOURCES GRID
---------------------*/
.resources-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
  margin-top: 6px;
}
.resource-category {
  background: #222834;
  border-radius: 11px;
  flex: 1 1 220px;
  min-width: 180px;
  padding: 22px 16px 18px 18px;
  box-shadow: 0 1px 10px #222d3540;
  margin-bottom: 20px;
  border-left: 4px solid #65A8B6;
}
.resource-category h3 {
  color: #F1C93A;
  margin-bottom: 12px;
}
.resource-category ul li a {
  text-decoration: underline;
  color: #65A8B6;
  font-size: 1rem;
}
.resource-category ul li a:hover {
  color: #F1C93A;
}
.downloads {
  background: #232938;
  padding: 18px 14px 12px 20px;
  border-radius: 12px;
  box-shadow: 0 1px 8px #23293822;
  border-left: 4px solid #F1C93A55;
  margin-bottom: 20px;
}
.downloads h4 {
  color: #65A8B6;
  margin-bottom: 10px;
}

/* ------------------
   FOOTER STYLE
-------------------*/
footer {
  background: #181E2B;
  box-shadow: 0px -2px 14px #22282b35 inset;
  padding: 44px 0 16px 0;
  margin-top: 45px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  padding-bottom: 15px;
  border-bottom: 1px solid #304156;
}
.footer-nav a {
  color: #65A8B6;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: .02em;
  padding: 2px 8px;
  transition: color 0.16s;
}
.footer-nav a:hover {
  color: #F1C93A;
}
.footer-details {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.footer-details img {
  height: 42px;
  margin-bottom: 0;
}
.footer-details p {
  color: #B9BDC5;
  font-size: 0.96rem;
  text-align: center;
}

/* ------------------
   COOKIE CONSENT BANNER
---------------------*/
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #232938;
  color: #F1C93A;
  padding: 24px 20px;
  z-index: 9999;
  box-shadow: 0 -2px 16px #181E2B50;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  animation: banner-slide-up 0.6s cubic-bezier(.45,1.15,.55,.95);
}
@keyframes banner-slide-up {
  from { transform: translateY(90px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 6px;
}
.cookie-banner button {
  margin: 0 5px 0 0;
  background: #F1C93A;
  color: #232938;
  border-radius: 8px;
  padding: 10px 22px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 10px #23293833;
  transition: background 0.17s, color 0.14s, filter 0.20s;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #FFD938;
  filter: brightness(1.04);
  color: #181E2B;
}
.cookie-banner .cookie-settings {
  background: transparent;
  color: #F1C93A;
  border: 2px solid #F1C93A;
  box-shadow: none;
  font-weight: 600;
  transition: background 0.17s, color 0.12s, border-color 0.14s;
}
.cookie-banner .cookie-settings:hover, .cookie-banner .cookie-settings:focus {
  background: #2c385a;
  color: #F1C93A;
  border-color: #FFD938;
}

/* Cookie Preferences Modal */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(24, 30, 43, 0.64);
  z-index: 12000;
}
.cookie-modal-overlay.open {
  display: block;
}
.cookie-modal {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: fixed;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%) scale(1);
  background: #222834;
  border-radius: 15px;
  box-shadow: 0 9px 42px #181E2B90;
  padding: 34px 28px 22px 28px;
  width: 90vw;
  max-width: 420px;
  z-index: 13000;
  animation: modal-pop 0.35s cubic-bezier(.44,1.06,.53,.98);
}
@keyframes modal-pop {
  from { transform: translate(-50%, -50%) scale(0.90); opacity: 0; }
  to { transform: translate(-50%, -50%) scale(1); opacity: 1; }
}
.cookie-modal h3 {
  color: #F1C93A;
  margin-bottom: 6px;
  font-size: 1.19rem;
}
.cookie-modal p {
  color: #ECECEC;
  font-size: .99rem;
  margin-bottom: 10px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #232938;
  border-radius: 8px;
  padding: 10px 18px;
  margin-bottom: 12px;
}
.cookie-category label {
  font-size: 1rem;
  color: #EBEDF0;
  font-weight: 600;
}
.cookie-category input[type='checkbox'] {
  width: 1.2em;
  height: 1.2em;
  accent-color: #F1C93A;
}
.cookie-category .toggle-disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.cookie-modal .cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 10px;
  justify-content: flex-end;
}
.cookie-modal .cookie-modal-actions button {
  background: #F1C93A;
  color: #222834;
  border-radius: 8px;
  border: none;
  font-weight: 700;
  font-size: 1rem;
  padding: 10px 22px;
  cursor: pointer;
}
.cookie-modal .cookie-modal-actions button:hover {
  background: #FFD938;
  filter: brightness(1.06);
}

/* ----------------------------------------------
   RESPONSIVE DESIGN - MOBILE-FIRST MEDIA QUERIES
-----------------------------------------------*/
@media (max-width: 1180px) {
  .container { max-width: 950px; }
  .feature-grid, .service-cards, .resources-grid, .testimonials-slider {
    gap: 16px;
  }
}
@media (max-width: 900px) {
  .container { max-width: 98vw; }
  .main-nav { gap: 10px; }
  .service-cards, .feature-grid, .resources-grid {
    gap: 14px;
  }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.3rem; }

  .main-nav { display: none; }
  .mobile-menu-toggle {
    display: inline-block;
    position: absolute;
    right: 18px;
    top: 14px;
  }
  header {
    min-height: 70px;
  }
  .hero .container, .hero .content-wrapper {
    padding-top: 25px;
    padding-bottom: 25px;
    min-height: unset;
  }
  .feature-grid, .service-cards, .testimonials-slider, .resources-grid {
    flex-direction: column;
    gap: 18px;
  }
  .feature-card, .service-card, .resource-category, .testimonial-card {
    min-width: 100px;
    width: 100%;
    flex: 1 1 100%;
  }
  .content-grid, .card-container {
    gap: 15px;
    flex-direction: column;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .footer-details {
    gap: 8px;
  }
}
@media (max-width: 500px) {
  html { font-size: 14px; }
  .container { padding: 0 8px; }
  .section { padding: 28px 6px; }
  .feature-card, .service-card, .resource-category, .testimonial-card, .brand-values, .team-highlights {
    padding: 16px 8px 16px 12px;
  }
  .cookie-modal { padding: 22px 5px 14px 8px; }
}

/* --------------------------
   MICRO-INTERACTIONS/ANIMATIONS
---------------------------*/
.feature-card, .service-card, .testimonial-card,
.resource-category, .card {
  transition: box-shadow 0.20s, transform 0.18s, background 0.16s, border 0.16s;
}

.feature-card:active, .service-card:active, .testimonial-card:active, .resource-category:active, .card:active {
  transform: scale(0.98) rotate(-0.5deg);
  box-shadow: 0 4px 18px #65A8B620;
}

.cta:active {
  filter: brightness(.92);
}

/* ---------------
   MISC & OVERRIDES
-----------------*/
::selection {
  background: #F1C93A44;
}
::-webkit-scrollbar {
  width: 10px;
  background: #222834;
}
::-webkit-scrollbar-thumb {
  background: #2c385a;
  border-radius: 4px;
}

input, textarea, select {
  background: #232938;
  border-radius: 7px;
  color: #F1C93A;
  padding: 10px 14px;
  margin-bottom: 14px;
  border: 1px solid #2c385a;
  font-size: 1rem;
}
input:focus, textarea:focus, select:focus {
  border-color: #F1C93A;
  outline: 1.5px solid #F1C93A;
}

/* Details/Summary-toggle arrow style */
details summary {
  list-style: none;
  position: relative;
  padding-right: 26px;
}
details summary::after {
  content: '\25bc';
  position: absolute;
  right: 0;
  top: 2px;
  transition: transform 0.2s;
  font-size: 0.94em;
  color: #F1C93A;
}
details[open] summary::after {
  transform: rotate(180deg);
}

/* ============================
   INDUSTRIAL STYLED SECTIONS
   =============================*/
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 22px;
  /* Use a subtle metallic gradient border for modern industrial accent */
  border: 1.5px solid #31384b;
  box-shadow: 0 9px 48px #181E2B15;
}
section:last-child {
  margin-bottom: 0;
}

/* =====================
   PRINT OVERRIDES
======================*/
@media print {
  * { color: #181E2B !important; background: none !important; box-shadow: none !important; }
  header, footer, .main-nav, .mobile-menu, .cookie-banner, .cookie-modal, .cookie-modal-overlay { display: none !important; }
  section, .container, main, .content-wrapper { box-shadow: none !important; border: none !important; }
  html { background: #FFF !important; }
}
