/* =====================================================
   CSS RESET & 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, 
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;
}
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
}
body {
  background: #fff;
  color: #181818;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a {
  color: #181818;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px dashed #E3AE3E;
  outline-offset: 2px;
}
a:hover {
  color: #274690;
}

/* Typography Scales and Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #111111;
}
h1 {
  font-size: 2.75rem;
  margin-bottom: 0.6em;
}
h2 {
  font-size: 2rem;
  margin-bottom: 0.5em;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 0.3em;
}
h4, h5, h6 {
  font-size: 1rem;
  margin-bottom: .3em;
  font-weight: 600;
}
p, ul, ol, li {
  color: #232323;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-size: 1rem;
  margin-bottom: 0.5em;
}
strong, b {
  font-weight: 700;
  color: #1a1a1a;
}
em, i {
  font-style: italic;
}

/* ================================
   CONTAINERS & LAYOUT UTILITIES
   ================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-section {
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* Spacing Utilities */
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.px-2 { padding-left: 16px; padding-right: 16px; }

/* ================================
   HEADER, NAV & LOGO
   ================================ */
header {
  background: #fff;
  border-bottom: 1px solid #ededed;
  position: sticky;
  top: 0;
  z-index: 20;
}
.header-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
}
.logo-link img {
  width: 150px;
  height: auto;
}
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #222;
  padding: 0 4px;
  opacity: .92;
  font-weight: 500;
  position: relative;
  transition: color 0.16s, opacity 0.2s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: #274690;
  opacity: 1;
}

.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 0.75em 2em;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  border-radius: 28px;
  font-weight: 600;
  border: none;
  text-align: center;
  background: #111;
  color: #fff;
  box-shadow: 0 2px 9px rgba(24,24,24,.07);
  cursor: pointer;
  transition: background 0.22s, color 0.2s, box-shadow 0.2s, border 0.22s;
}
.btn-primary {
  background: #181818;
  color: #fff;
  border: 2px solid #181818;
}
.btn-primary:hover, .btn-primary:focus {
  background: #fff;
  color: #181818;
  border: 2px solid #181818;
  box-shadow: 0 4px 24px rgba(24,24,24,.12);
}
.btn-secondary {
  background: #fff;
  color: #181818;
  border: 2px solid #222;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #181818;
  color: #fff;
  box-shadow: 0 4px 24px rgba(24,24,24,.13);
}


/* ================================
   MOBILE NAVIGATION
   ================================ */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #181818;
  cursor: pointer;
  margin-left: 16px;
  transition: color 0.3s;
  z-index: 100;
}
.mobile-menu-toggle:focus {
  color: #274690;
  outline: 2px solid #E3AE3E;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 100%;
  width: 100vw;
  background: #111;
  color: #fff;
  z-index: 3000;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.7,.1,.3,1);
  display: flex;
  flex-direction: column;
  padding: 0;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #fff;
  margin: 24px 24px 8px 0;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #E3AE3E;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 32px 0 0 0;
  align-items: flex-start;
}
.mobile-nav a {
  font-size: 1.35rem;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  color: #fff;
  opacity: .97;
  font-weight: 500;
  line-height: 1.4;
  padding: 8px 28px;
  border-radius: 4px;
  transition: background 0.17s, color 0.17s, opacity 0.12s;
}
.mobile-nav a:focus {
  outline: 2px solid #E3AE3E;
  color: #E3AE3E;
}
.mobile-nav a:hover {
  color: #E3AE3E;
  background: #232323;
}

/* Hide main nav, show burger on mobile */
@media (max-width: 1100px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 700px) {
  .logo-link img {
    width: 112px;
  }
}

/* ================================
   HERO & KEY SECTIONS
   ================================ */
.hero {
  background: #fff;
  padding-top: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid #ededed;
}
.hero h1 {
  font-size: 2.2rem;
  margin-bottom: 24px;
  color: #181818;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-weight: 800;
}
.hero p {
  font-size: 1.17rem;
  line-height: 1.6;
  color: #292929;
  margin-bottom: 28px;
}
.hero .btn-primary {
  margin-top: 8px;
  font-size: 1.1rem;
}

/* ================================
   FEATURE GRID & CARDS
   ================================ */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 14px;
}
.feature-item {
  background: #fff;
  border: 1px solid #e1e1e1;
  border-radius: 16px;
  padding: 28px 24px;
  flex: 1 1 235px;
  min-width: 210px;
  box-shadow: 0 2px 16px rgba(24,24,24,0.03);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow 0.21s, border-color 0.18s;
  margin-bottom: 20px;
}
.feature-item img {
  width: 40px;
  height: 40px;
  margin-bottom: 5px;
  filter: grayscale(100%) contrast(1.2);
  opacity: 0.82;
}
.feature-item:hover, .feature-item:focus-within {
  border-color: #C39532;
  box-shadow: 0 4px 30px rgba(39,70,144,0.09);
}

/* ================================
   SERVICES LIST / GRID
   ================================ */
.service-list,
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
}
.service-item {
  background: #f9f9f9;
  border: 1px solid #eaeaea;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(24,24,24,0.04);
  padding: 26px 22px;
  flex: 1 1 240px;
  min-width: 200px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.17s, box-shadow 0.17s;
  position: relative;
}
.service-item:hover, .service-item:focus-within {
  border-color: #C39532;
  box-shadow: 0 2px 30px rgba(39,70,144,0.09);
}
.service-item h2, .service-item h3 {
  font-size: 1.1rem;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  color: #161616;
  margin-bottom: 6px;
}
.service-item .price {
  font-weight: 700;
  font-size: 1.08em;
  letter-spacing: 0.02em;
  color: #274690;
  margin-top: 8px;
}

/* CARD CONTAINERS (general) */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(24,24,24,0.05);
  border: 1px solid #ededed;
  padding: 1.5em 1.25em;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.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: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 20px rgba(24,24,24,0.06);  
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid #e3e3e3;
  transition: box-shadow 0.2s, border 0.2s;
}
.testimonial-card p {
  font-size: 1.05rem;
  color: #232323;
  margin-right: 14px;
}
.testimonial-card strong {
  font-size: 1rem;
  color: #274690;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  margin-left: 14px;
}
.testimonial-card:hover {
  box-shadow: 0 4px 32px rgba(39,70,144,0.12);
  border: 1px solid #C39532;
}
.customer-ratings {
  margin-top: 20px;
  color: #181818;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-weight: 600;
  letter-spacing: .03em;
}
.customer-ratings span:first-child {
  color: #C39532;
  font-size: 1.05em;
  margin-right: 10px;
}

.team-bios {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}
.team-member {
  background: #fff;
  border: 1px solid #efefef;
  border-radius: 12px;
  padding: 20px 18px;
  flex: 1 1 210px;
  min-width: 180px;
  box-shadow: 0 2px 16px rgba(39,70,144,0.06);
  margin-bottom: 20px;
  transition: box-shadow 0.18s, border 0.16s;
}
.team-member:hover {
  border: 1px solid #C39532;
  box-shadow: 0 4px 32px rgba(39,70,144,.11);
}

/************************************
 *  ADDITIONAL FLEXBOX REQUIREMENTS  *
 *************************************/
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ================================
   PRICING TABLE
   ================================ */
.pricing-table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 38px;
  margin-top: 13px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(24,24,24,0.03);
  overflow: hidden;
}
.pricing-table th, .pricing-table td {
  padding: 1em 1.5em;
  text-align: left;
}
.pricing-table thead th {
  background: #f5f5f5;
  color: #222;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.08em;
  letter-spacing: 0.04em;
  border-bottom: 2px solid #e2e2e2;
}
.pricing-table tbody tr {
  border-bottom: 1px solid #ededed;
}
.pricing-table tbody tr:last-child {
  border: none;
}
.pricing-table td {
  color: #242424;
  font-size: 1em;
}

.pricing-notes ul {
  margin-left: 20px;
  font-size: 1em;
  color: #787878;
}

/* ================================
   FAQ Accordion Style
   ================================ */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-item {
  background: #fff;
  border-radius: 10px;
  border: 1px solid #ededed;
  padding: 18px 22px;
  transition: box-shadow 0.16s;
  box-shadow: 0 2px 16px rgba(24,24,24,0.03);
}
.faq-item h3 {
  font-size: 1.1em;
  color: #181818;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-weight: 600;
}
.faq-item p {
  margin-top: 7px;
  color: #232323;
  font-size: 1em;
}
.faq-item:hover {
  box-shadow: 0 4px 24px rgba(39,70,144,.10);
  border: 1px solid #C39532;
}

/* ================================
   CTA & CONFIRM SECTIONS
   ================================ */
.cta-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 36px 16px 18px 16px;
  background: #f9f9f9;
  border-radius: 16px;
}
.cta-section h2 {
  font-size: 1.55rem;
  text-align: center;
}
.confirmation-next-steps {
  margin-top: 26px; 
}

/* ================================
   CONTACT & ADDRESS INFO
   ================================ */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 16px;
}
.contact-info img {
  width: 19px;
  height: 19px;
  margin-right: 7px;
  vertical-align: middle;
  filter: grayscale(80%) brightness(0.75);
}
.contact-info a {
  color: #274690;
  text-decoration: underline;
  transition: color 0.2s;
}
.contact-info a:hover { color: #C39532; }
.address-details {
  margin-bottom: 18px;
}

/* ================================
   FOOTER
   ================================ */
footer {
  background: #181818;
  color: #fff;
  padding: 32px 0 0 0;
  border-top: 3px solid #111;
  margin-top: 42px;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 26px;
}
.footer-logo {
  min-width: 170px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.footer-logo img {
  width: 112px;
}
.footer-logo p {
  font-size: 0.95em;
  color: #ededed;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
}
.footer-nav a {
  color: #ededed;
  font-size: 1em;
  opacity: .85;
  transition: color 0.2s, opacity 0.17s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #C39532;
  opacity: 1;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.97em;
  color: #ededed;
}
.footer-contact strong {
  color: #C39532;
  margin-bottom: 7px;
}
.footer-contact img {
  width: 17px;
  height: 17px;
  vertical-align: sub;
  margin-right: 7px;
  opacity: 0.85;
  filter: grayscale(99%);
}
.footer-bottom {
  border-top: 1px solid #474747;
  text-align: center;
  padding: 15px 0;
  font-size: 0.97em;
  color: #c8c8c8;
}

/* ================================
   MODAL (for Cookie Settings)
   ================================ */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(24,24,24,0.43);
  z-index: 6000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  color: #181818;
  border-radius: 18px;
  max-width: 380px;
  width: 95vw;
  padding: 36px 20px 30px 20px;
  box-shadow: 0 8px 40px rgba(24,24,24,.2);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 7000;
}
.cookie-modal h2 {
  font-size: 1.15rem;
  margin-bottom: 19px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
}
.cookie-modal label {
  font-size: 1em;
  color: #1a1a1a;
}
.cookie-modal input[type="checkbox"] {
  accent-color: #274690;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 10px;
}

.cookie-modal .btn-primary, .cookie-modal .btn-secondary {
  padding: 0.65em 1.5em;
  font-size: 1rem;
}

.cookie-modal .modal-close {
  position: absolute;
  top: 13px;
  right: 13px;
  background: none;
  border: none;
  color: #272727;
  font-size: 1.7em;
  cursor: pointer;
}
.cookie-modal .modal-close:hover {
  color: #C39532;
}

/* ================================
   COOKIE CONSENT BANNER
   ================================ */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 5000;
  background: #181818;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 24px 16px 18px 16px;
  box-shadow: 0 -4px 24px rgba(24,24,24,0.14);
  border-radius: 20px 20px 0 0;
  font-size: 1.07em;
  width: 100%;
  transition: transform 0.4s cubic-bezier(.7,.1,.3,1) 0s, opacity .25s;
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
}
.cookie-banner.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cookie-banner p {
  color: #ededed;
  font-size: 1em;
  margin-bottom: 0;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.cookie-banner .btn-primary {
  background: #274690;
  border-color: #274690;
  color: #fff;
  padding: 0.6em 1.7em;
  font-size: 1em;
  font-weight: 600;
}
.cookie-banner .btn-primary:hover {
  background: #fff;
  color: #274690;
  border-color: #274690;
}
.cookie-banner .btn-secondary {
  background: #fff;
  color: #181818;
  border: 2px solid #274690;
  padding: 0.58em 1.6em;
  font-size: 1em;
  font-weight: 600;
}
.cookie-banner .btn-secondary:hover {
  background: #e9e9e9;
  color: #274690;
}
.cookie-banner .btn-preferences {
  background: #E3AE3E;
  color: #181818;
  border: 2px solid #E3AE3E;
  padding: 0.59em 1.55em;
  border-radius: 28px;
  font-size: 1em;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-weight: 600;
  cursor: pointer;
  margin-left: 6px;
  transition: background 0.17s, color 0.16s, border-color 0.17s;
}
.cookie-banner .btn-preferences:hover,
.cookie-banner .btn-preferences:focus {
  background: #fff9e1;
  color: #C39532;
  border-color: #C39532;
}

/* ================================
   ANIMATIONS & MICRO-INTERACTIONS
   ================================ */
.btn-primary,.btn-secondary,.cookie-banner .btn-primary, .cookie-banner .btn-secondary, .cookie-banner .btn-preferences {
  transition: background 0.22s, color 0.2s, box-shadow 0.2s, border 0.22s;
}
.card, .team-member, .faq-item, .feature-item, .service-item, .testimonial-card {
  transition: box-shadow 0.2s, border 0.2s;
}

a, .main-nav a, .footer-nav a, .mobile-nav a {
  transition: color 0.22s, background 0.18s;
}
input:focus, button:focus, select:focus {
  outline: 2px solid #E3AE3E;
}

/* ================================
   RESPONSIVE DESIGN (Mobile-First)
   ================================ */
@media (max-width: 1100px) {
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 26px;
  }
  .feature-grid, .service-list, .services-grid, .content-grid, .team-bios {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 92vw;
  }
  .footer-contact {
    font-size: .99em;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.3rem; }
  .main-nav { display: none !important; }
  .feature-grid,
  .service-list,
  .services-grid,
  .content-grid,
  .team-bios {
    flex-direction: column;
    gap: 20px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .cta-section {
    padding: 26px 6px 10px 6px;
    border-radius: 10px;
  }
  .footer-nav { flex-direction: row; flex-wrap: wrap; gap: 9px; }
  .footer-bottom { font-size: 0.89em; }
  .footer-top { gap: 12px; }
  .section { padding: 30px 8px; margin-bottom: 32px; }
}
@media (max-width: 500px) {
  .container {
    padding-left: 6px;
    padding-right: 6px;
  }
  .btn-primary, .btn-secondary, .cookie-banner .btn-primary, .cookie-banner .btn-secondary {
    padding: 0.7em 1.1em;
    font-size: 0.97em;
  }
  .feature-item,
  .service-item,
  .team-member,
  .testimonial-card,
  .faq-item {
    padding: 17px 10px;
  }
  .footer-logo img {
    width: 90px;
  }
  .pricing-table th, .pricing-table td {
    padding: 0.6em 0.45em;
  }
}

/* ================================
   UTILITY CLASSES
   ================================ */
.bg-accent { background: #C39532 !important; }
.bg-primary { background: #274690 !important; color: #fff !important; }
.bg-secondary { background: #f9f9f9 !important; }
.text-light { color: #fff !important; }
.text-dark { color: #181818 !important; }
.rounded-xl { border-radius: 16px !important; }

/* ================================
   HIGH CONTRAST FOR TESTIMONIALS
   ================================ */
.testimonial-card,
.testimonial-card p,
.testimonial-card strong {
  background: #fff !important; 
  color: #181818 !important;
}

/* ================================
   DARK/LIGHT BACKGROUNDS
   ================================ */
section[style*="background-color: #F9F9F9"] .feature-item,
section[style*="background-color: #F9F9F9"] .testimonial-card,
section[style*="background-color: #F9F9F9"] .faq-item {
  background: #fff;
}

/* ================================
   PRINT STYLES (Optional best effort)
   ================================ */
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
  body { color: #111 !important; background: #fff !important; }
}
