/* ================================================================
   RESET AND BASE STYLES
================================================================ */
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;
}

/* Set base box-sizing and typography */
*, *:before, *:after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
  min-height: 100%;
}

body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #F6F5F3;
  background: #232A2F;
  min-height: 100vh;
}

main {
  flex: 1 0 auto;
}

/* ================================================================
   TYPOGRAPHY (industrial_modern)
================================================================ */
h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-rendering: optimizeLegibility;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  font-weight: 600;
}
h4 {
  font-size: 1.125rem;
  font-weight: 600;
}

p {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #E0E2E3;
  margin-bottom: 16px;
}

ul, ol {
  padding-left: 24px;
  margin-bottom: 20px;
}

li {
  margin-bottom: 10px;
  line-height: 1.7;
  font-size: 1rem;
}

strong {
  font-weight: 700;
}
em {
  font-style: italic;
  color: #b8babd;
}

a {
  color: #B26D40;
  text-decoration: underline;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #d88d54;
  outline: 0;
}

/* ================================================================
   BRAND COLORS (industrial_modern): primary/secondary/accent
================================================================ */
:root {
  --clr-primary: #253238;   /* Deep Slate (industrial) */
  --clr-secondary: #B26D40; /* Burnished Copper (metal/accent) */
  --clr-accent: #F6F5F3;    /* Bone White (light accent) */
  --clr-bg: #232A2F;        /* Urban Dark / main BG */
  --clr-card: #2D353C;      /* Card/section BG */
  --clr-border: #41484e;    /* Subtle steel border */
  --clr-shadow: 0 2px 16px 0 rgba(30, 33, 36, 0.16);
}

/* ================================================================
   LAYOUT CONTAINERS & FLEX ARRANGEMENTS
================================================================ */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}

/* Spacing for sections */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* Card Containers */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--clr-card);
  color: var(--clr-accent);
  border: 1px solid var(--clr-border);
  box-shadow: var(--clr-shadow);
  border-radius: 12px;
  margin-bottom: 20px;
  position: relative;
  padding: 24px 20px 20px 20px;
  min-width: 250px;
  transition: box-shadow 0.24s, border-color 0.24s;
}
.card:hover, .card:focus-within {
  border-color: var(--clr-secondary);
  box-shadow: 0 4px 28px 0 rgba(178, 109, 64, 0.12), var(--clr-shadow);
  z-index: 2;
}

.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;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: #F6F5F3;
  color: #232A2F;
  box-shadow: 0 2px 16px 0 rgba(30, 33, 36, 0.10);
  border-radius: 12px;
  padding: 28px 22px;
  margin-bottom: 24px;
  min-width: 260px;
  border: 1px solid #ded9d0;
  transition: box-shadow 0.24s, border-color 0.24s;
}
.testimonial-card span {
  color: #B26D40;
  font-size: 1rem;
  font-weight: 700;
  align-self: flex-end;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 6px 28px 0 rgba(178,109,64,0.17), 0 2px 16px 0 rgba(30, 33, 36, 0.09);
  border-color: #B26D40;
  z-index: 1;
}

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

ul.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  width: 100%;
}
ul.feature-grid li {
  flex: 1 1 220px;
  background: var(--clr-card);
  border: 1px solid var(--clr-border);
  border-radius: 10px;
  box-shadow: 0 1px 6px 0 rgba(30,33,36,0.07);
  padding: 24px 18px 19px 18px;
  min-width: 200px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: box-shadow 0.2s, border-color 0.2s;
}
ul.feature-grid li:hover, ul.feature-grid li:focus-within {
  border-color: var(--clr-secondary);
  box-shadow: 0 4px 20px 0 rgba(178, 109, 64, 0.14);
}
ul.feature-grid img {
  width: 38px;
  height: 38px;
  margin-bottom: 8px;
  filter: grayscale(90%) contrast(140%);
}

/* ================================================================
   HEADER & NAVIGATION (desktop & mobile)
================================================================ */
header {
  background: var(--clr-primary);
  width: 100%;
  box-shadow: 0 2px 12px 0 rgba(21,22,24,0.10);
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 99;
}
header nav {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 22px;
  justify-content: flex-start;
  padding: 18px 0;
}
header nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: var(--clr-accent);
  font-size: 0.98rem;
  text-decoration: none;
  padding: 7px 18px 7px 0;
  transition: color 0.2s, border-bottom 0.2s;
  font-weight: 500;
  border-bottom: 2px solid transparent;
  border-radius: 2px;
}
header nav a:hover, header nav a:focus {
  color: var(--clr-secondary);
  border-bottom: 2px solid var(--clr-secondary);
}
header nav a.cta-primary {
  background: var(--clr-secondary);
  color: #F6F5F3;
  padding: 9px 22px;
  margin-left: 12px;
  border-radius: 6px;
  border: none;
  letter-spacing: 1px;
  box-shadow: 0 2px 8px rgba(178,109,64,0.08);
  font-weight: 700;
  transition: background 0.15s, color 0.15s, box-shadow 0.2s;
}
header nav a.cta-primary:hover, header nav a.cta-primary:focus {
  background: #bd7b53;
  color: var(--clr-accent);
  box-shadow: 0 4px 18px rgba(178,109,64,0.16);
}
header nav img {
  height: 38px;
  margin-right: 18px;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  color: var(--clr-accent);
  border: none;
  font-size: 2.2rem;
  margin-left: auto;
  padding: 6px 14px;
  cursor: pointer;
  transition: background 0.15s;
  z-index: 102;
  border-radius: 50%;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--clr-border);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(36, 39, 43, 0.98);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.37,0.3,0.17,0.91);
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 30px 24px 4px 0;
  color: #F6F5F3;
  background: none;
  border: none;
  font-size: 2.2rem;
  cursor: pointer;
  z-index: 202;
  transition: color 0.18s, background 0.16s;
  border-radius: 50%;
  padding: 4px 12px;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #B26D40;
  background: var(--clr-border);
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin: 22px 0 0 38px;
}
.mobile-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: var(--clr-accent);
  font-size: 1.15rem;
  font-weight: 600;
  text-decoration: none;
  padding: 10px 0;
  margin-bottom: 2px;
  margin-right: 0;
  border-radius: 3px;
  width: 90vw;
  transition: color 0.22s, background 0.22s;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #2D353C;
  color: #B26D40;
}

@media (max-width: 1100px) {
  .container {
    max-width: 98vw;
  }
}

/* Hide desktop nav & show hamburger on mobile */
@media (max-width: 900px){
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

@media (min-width: 901px){
  .mobile-menu {
    display: none !important;
  }
}

/* ================================================================
   SECTIONS / CARDS / CTAs / BUTTONS
================================================================ */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 600px){
  section {
    padding: 26px 8px;
    margin-bottom: 34px;
  }
}

.cta-primary {
  background: var(--clr-secondary);
  color: #F6F5F3;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.1rem;
  letter-spacing: 1px;
  padding: 13px 30px;
  border-radius: 6px;
  border: none;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(178,109,64,0.08);
  transition: background 0.18s, color 0.15s, box-shadow 0.25s, border 0.16s;
  cursor: pointer;
  margin-top: 10px;
  display: inline-block;
}
.cta-primary:hover, .cta-primary:focus {
  background: #bd7b53;
  color: #F6F5F3;
  box-shadow: 0 4px 18px rgba(178,109,64,0.16);
  outline: none;
}

/* Card list General List Styles */
ul {
  list-style: disc inside;
  margin-bottom: 20px;
}
ul li {
  margin-bottom: 9px;
  line-height: 1.7;
}

/* Feature Cards (Icon + Title + Text) */
ul.feature-grid li {
}

/* Section Titles */
section > .container > h2,
section > .container > .content-wrapper > h2 {
  color: var(--clr-accent);
  font-weight: 700;
  letter-spacing: 1.2px;
  margin-bottom: 18px;
}

/* & Text/Description cards */
section .content-wrapper.text-section {
  background: none;
  padding: 0;
  box-shadow: none;
  border: none;
}

/* ==============================================================
   FOOTER
================================================================= */
footer {
  background: var(--clr-primary);
  color: var(--clr-accent);
  padding: 36px 0 18px 0;
}
footer .container {
  max-width: 1100px;
}
footer .content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
footer nav {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}
footer nav a {
  color: var(--clr-accent);
  font-size: 0.97rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  text-decoration: underline;
  opacity: 0.84;
  transition: color 0.21s, opacity 0.14s;
}
footer nav a:hover, footer nav a:focus {
  color: #B26D40;
  opacity: 1;
}
footer address {
  color: #b8babd;
  font-size: 0.93rem;
  font-style: normal;
  line-height: 1.6;
  margin-top: 10px;
  max-width: 320px;
}
footer address a {
  color: #B26D40;
  text-decoration: underline;
}
footer img {
  height: 44px;
  margin-right: 24px;
  filter: grayscale(60%) brightness(0.95) contrast(120%);
}

@media (max-width: 768px){
  footer .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

/* ==============================================================
   RESPONSIVE FLEX LAYOUTS / GRIDS
   All layouts are done using flex ONLY (never grid/columns)
================================================================= */
@media (max-width: 1000px){
  .content-grid, ul.feature-grid {
    flex-direction: column;
    justify-content: flex-start;
    gap: 24px;
  }
}
@media (max-width: 768px){
  .text-image-section, .content-grid, .card-container {
    flex-direction: column;
    align-items: stretch;
    gap: 22px;
  }
}

/* For testimonial area on small screens */
@media (max-width: 850px){
  .testimonial-card {
    min-width: 210px;
    padding: 18px 8px;
  }
  ul.feature-grid li {
    min-width: 145px;
    padding: 16px 6px;
    font-size: 0.96rem;
  }
}

/* ==============================================================
   ICONS IN FEATURE/CONTACT LISTS
================================================================= */
ul li img {
  height: 21px;
  width: 21px;
  vertical-align: middle;
  margin-right: 10px;
  filter: grayscale(100%) brightness(85%) contrast(160%);
}

/* ==============================================================
   TABLES/FORMS (if added later)
================================================================= */
table {
  border-collapse: collapse;
  background: var(--clr-card);
}
th, td {
  text-align: left;
  font-size: 1rem;
  padding: 10px 15px;
  color: var(--clr-accent);
}
th {
  background: var(--clr-primary);
}

input, textarea, select, button {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 5px;
  border: 1px solid var(--clr-border);
  background: #232A2F;
  color: #F6F5F3;
  padding: 8px 12px;
  margin-bottom: 12px;
  transition: border 0.18s, box-shadow 0.19s;
}
input:focus, textarea:focus, select:focus, button:focus {
  border-color: #B26D40;
  outline: none;
}

/* ==============================================================
   SHADOWS, BORDERS, DEPTH EFFECTS
================================================================= */
.section, .card, .testimonial-card, ul.feature-grid li {
  box-shadow: var(--clr-shadow);
}
.section, .card, ul.feature-grid li {
  border-radius: 12px;
}

/* ==============================================================
   TRANSITIONS/MICRO-INTERACTIONS
================================================================= */
button, a, .card, .testimonial-card, ul.feature-grid li {
  transition: box-shadow 0.23s, color 0.16s, background 0.15s, border-color 0.20s;
}

/* ==============================================================
   COOKIE CONSENT BANNER
================================================================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: var(--clr-card);
  color: var(--clr-accent);
  border-top: 2px solid var(--clr-secondary);
  box-shadow: 0 -2px 14px 0 rgba(34,35,37,0.16);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 18px 30px 16px 30px;
  z-index: 3000;
  font-size: 1rem;
  gap: 22px;
  animation: cookieFadeIn 0.5s cubic-bezier(0.38,0.25,0.21,1.0);
}
@keyframes cookieFadeIn {
  0% { opacity: 0; transform: translateY(110px);}
  100%{ opacity: 1; transform: translateY(0);}
}
.cookie-banner__text {
  max-width: 560px;
}
.cookie-banner__actions {
  display: flex;
  gap: 16px;
}
.cookie-banner .cookie-btn, .cookie-banner button {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  padding: 8px 16px;
  font-size: 1rem;
  border-radius: 6px;
  border: 1px solid var(--clr-secondary);
  background: var(--clr-secondary);
  color: #fff;
  cursor: pointer;
  font-weight: 700;
  transition: background 0.18s,color 0.15s,border-color 0.21s;
  min-width: 100px;
}
.cookie-banner .cookie-btn.reject {
  background: none;
  color: var(--clr-secondary);
  border: 1px solid var(--clr-secondary);
}
.cookie-banner .cookie-btn.settings {
  background: none;
  color: var(--clr-accent);
  border: 1px solid var(--clr-border);
}
.cookie-banner .cookie-btn.accept:hover, .cookie-banner .cookie-btn.accept:focus {
  background: #bd7b53;
  color: #fff;
  border-color: #bd7b53;
}
.cookie-banner .cookie-btn.reject:hover, .cookie-banner .cookie-btn.reject:focus {
  background: #232A2F;
  color: #fff;
  border-color: #232A2F;
}
.cookie-banner .cookie-btn.settings:hover, .cookie-banner .cookie-btn.settings:focus {
  border-color: #B26D40;
  color: #B26D40;
}
@media (max-width: 650px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 11px 6px 18px 8px;
    font-size: 0.95rem;
  }
  .cookie-banner__text {
    max-width: 96vw;
  }
  .cookie-banner__actions {
    width: 100%;
    gap: 8px;
  }
}

/* COOKIE CONSENT MODAL */
.cookie-modal-overlay {
  position: fixed;
  z-index: 3500;
  left: 0; top: 0; right: 0; bottom: 0;
  display: flex;
  background: rgba(24, 27, 32, 0.94);
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.27s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: var(--clr-card);
  color: var(--clr-accent);
  border-radius: 16px;
  padding: 34px 36px 28px 36px;
  max-width: 98vw;
  min-width: 320px;
  box-shadow: 0 4px 32px 0 rgba(21,22,24,0.22);
  border: 1px solid var(--clr-secondary);
  animation: modalfadein 0.36s cubic-bezier(0.26,0.16,0.23,0.94);
}
@keyframes modalfadein {
  0%{opacity: 0;transform: scale(0.95);}
  100%{opacity:1;transform: scale(1);}
}
.cookie-modal h2{
  font-size: 1.45rem;
  color: #B26D40;
  margin-bottom: 16px;
}
.cookie-modal label {
  font-size: 1.045rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.cookie-modal input[type="checkbox"],
.cookie-modal input[type="radio"] {
  accent-color: #B26D40;
  font-size: 1.09rem;
}
.cookie-modal .cookie-modal-actions {
  margin-top: 26px;
  display: flex;
  gap: 18px;
}
.cookie-modal .cookie-modal-actions button {
  background: var(--clr-secondary);
  color: #fff;
  border: 1px solid var(--clr-secondary);
}
.cookie-modal .cookie-modal-actions button.cancel {
  background: none;
  color: var(--clr-accent);
  border: 1px solid var(--clr-border);
}
.cookie-modal .cookie-modal-actions button:hover, .cookie-modal .cookie-modal-actions button:focus {
  background: #bd7b53;
  border-color: #bd7b53;
}
.cookie-modal .cookie-modal-actions button.cancel:hover, .cookie-modal .cookie-modal-actions button.cancel:focus {
  background: #232A2F;
  color: #fff;
  border-color: #232A2F;
}
@media (max-width: 500px){
  .cookie-modal {
    padding: 18px 5vw 18px 5vw;
  }
}

/* ==============================================================
   MISC: SCROLLBAR, SELECTION, ETC.
================================================================= */
::-webkit-scrollbar {
  width: 12px;
  background: #22272B;
}
::-webkit-scrollbar-thumb {
  background: #3d444b;
  border-radius: 5px;
}
::selection {
  background: #B26D40;
  color: #fff;
}

/* ==============================================================
   FOCUS STYLES (A11Y)
================================================================= */
a:focus, button:focus, .cta-primary:focus, input:focus {
  outline: 2px solid #B26D40;
  outline-offset: 1px;
  background: #232A2F;
}

/* ==============================================================
   VISUAL OVERRIDES FOR TESTIMONIALS (ENSURE CONTRAST)
================================================================= */
.testimonial-card p, .testimonial-card span, .testimonial-card em, .testimonial-card strong {
  color: #232A2F;
}

/* ==============================================================
   SPACES FOR CARDS AND SECTIONS
================================================================= */
.card, ul.feature-grid li, .testimonial-card, .content-wrapper > * {
  margin-bottom: 20px;
}
.card-container, ul.feature-grid, .content-grid, .section, .text-image-section {
  gap: 24px;
}

/* ==============================================================
   MOBILE-FOCUSED: LAYOUT + FONT SIZE
================================================================= */
@media (max-width: 600px){
  h1 { font-size: 1.65rem; }
  h2 { font-size: 1.25rem; }
  h3 { font-size: 1.07rem; }
  section {
    padding: 22px 4vw;
  }
  .content-wrapper {
    gap: 19px;
  }
  .card, .testimonial-card, ul.feature-grid li {
    padding: 12px 5px 14px 9px;
    margin-bottom: 15px;
  }
  .cta-primary {
    padding: 10px 18px;
    font-size: 1rem;
  }
}

/* ==============================================================
   INDUSTRIAL MODERN STYLING
================================================================= */
body, section, .card, .testimonial-card, .content-wrapper, .feature-item, ul.feature-grid li {
  font-family: 'Roboto', Arial, sans-serif;
  color: #F6F5F3;
  background-clip: border-box;
}
section, .card, ul.feature-grid li {
  background: linear-gradient(145deg, #232A2F 70%, #253238 100%);
  border: 1px solid var(--clr-border);
}
h1, h2, h3, .cta-primary, header nav a, .mobile-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  letter-spacing: 1px;
  font-weight: 700;
  /* Industrial modern font accentuation */
}
.card, .testimonial-card, ul.feature-grid li {
  /* Subtle metallic edge */
  border: 1.2px solid #3e4650;
  background: linear-gradient(139deg, #2D353C 85%, #37404A 100%);
  box-shadow: 0 3px 13px 0 rgba(30, 33, 36, 0.18);
}

.testimonial-card {
  background: #F6F5F3 !important;
  color: #232A2F !important;
  border: 1.5px solid #c7bbb0;
  box-shadow: 0 6px 28px 0 rgba(178,109,64,0.11),0 1.5px 12px 0 rgba(30,33,36,0.08);
}

ul.feature-grid li {
  background: linear-gradient(130deg, #2D353C 80%, #343d47 100%);
  border: 1.2px solid #41484e;
}

/* ===============================================================
   ANIMATIONS & HOVER STATES FOR BUTTONS & INTERACTIVE ELEMENTS
================================================================ */
.cta-primary, .cookie-btn, button {
  transition: background 0.22s cubic-bezier(0.55,0,.1,1), color 0.16s, box-shadow 0.18s, border 0.24s;
}
.cta-primary:active, .cookie-btn:active {
  background: #a35c26!important;
  color: #fff !important;
}

.card:hover, ul.feature-grid li:hover, .testimonial-card:hover {
  box-shadow: 0 6px 22px 0 rgba(178,109,64,0.14);
  border-color: #B26D40;
}

.mobile-nav a:active {
  background: #232A2F;
}

/* ===============================================================
   PRINT FRIENDLY
================================================================= */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal-overlay {
    display: none !important;
  }
  body {
    color: #232A2F;
    background: #fff;
  }
  section, .card, ul.feature-grid li {
    background: #fff !important;
    border-color: #999 !important;
    color: #232A2F !important;
    box-shadow: none !important;
  }
}
