/* ============================================================
   CSS RESET & NORMALIZE (Mobile-first, Monochrome Sophisticated)
   ============================================================ */
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 { scroll-behavior: smooth; font-size: 100%; }
body { line-height: 1; font-family: 'Roboto', Arial, sans-serif; background: #fff; color: #222; min-height: 100vh; }
ol,ul { list-style: none; }
blockquote,q { quotes: none; }
blockquote:before,blockquote:after,q:before,q:after { content: ''; content: none; }
table { border-collapse: collapse; border-spacing: 0; }
a { color: inherit; text-decoration: none; transition: color 0.2s cubic-bezier(.77,0,.175,1); }
img { display: block; max-width: 100%; height: auto; }
input,button,select,textarea { font-family: inherit; font-size: inherit; }
button { border: none; cursor: pointer; background: none; padding: 0; }

/* ===========
   VARIABLES + FONTS
   =========== */
:root {
  /* Monochrome sophisticated palette (with drama and elegance) */
  --brand-primary: #1B2442;
  --brand-secondary: #F3C620;
  --brand-accent: #F8F8FA;
  --black: #111111;
  --off-black: #1A1A1A;
  --dark-gray: #232323;
  --gray: #6E7582;
  --medium-gray: #BABCC3;
  --light-gray: #EFEFF1;
  --white: #FFF;
  --danger: #b61a1a;
  
  --shadow1: 0 2px 12px 0 rgba(0,0,0,0.07), 0 1.5px 7px 0 rgba(0,0,0,0.06);
  --shadow2: 0 2.5px 24px -4px rgba(30,30,30,0.13);
  --radius1: 10px;
  --radius2: 24px;
  --transition: .18s cubic-bezier(.83,0,.12,1);
  
  --font-display: 'Montserrat', 'Roboto', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
  /* Typography scale */
  --step-xs: 0.85rem;      /* ~14px */
  --step-s: 1rem;          /* 16px */
  --step-m: 1.125rem;      /* 18px */
  --step-l: 1.5rem;        /* 24px */
  --step-xl: 2rem;         /* 32px */
  --step-xxl: 3rem;        /* 48px */
  /* Spacing scale */
  --space-xs: 8px;
  --space-s: 16px;
  --space-m: 24px;
  --space-l: 32px;
  --space-xl: 48px;
}

@media (min-width: 800px) {
  :root {
    --step-m: 1.188rem;
    --step-l: 1.7rem;
    --step-xl: 2.35rem;
    --step-xxl: 3.3rem;
  }
}

body { font-size: var(--step-s); color: var(--black); background: var(--white); }

/* ============
   GENERAL LAYOUT / CONTAINERS
   ============ */
.container {
  width: 100%;
  padding-left: 20px; padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
  max-width: 1120px;
  /* Breathing space top/bottom for main sections */
}
.content-wrapper {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  border-radius: var(--radius1);
}
@media (min-width: 800px) {
  .section {
    padding: 60px 0px;
    margin-bottom: 80px;
  }
}

.text-section, .content-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.text-section ul, .text-section ol {
  margin-left: 1.5em;
}

main section:not(:last-child) {
  margin-bottom: 60px;
}
@media (min-width: 800px) {
  main section:not(:last-child) {
    margin-bottom: 80px;
  }
}

/* ============
   TYPOGRAPHY
   ============ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--off-black);
  line-height: 1.16;
  letter-spacing: -0.01em;
}
h1 {
  font-size: var(--step-xxl);
  margin-bottom: var(--space-m);
  color: var(--black);
  text-shadow: 0 4px 36px rgba(27,36,66,0.09);
}
h2 {
  font-size: var(--step-xl);
  margin-bottom: var(--space-m);
  color: var(--black);
}
h3 {
  font-size: var(--step-l);
  margin-bottom: var(--space-s);
}
h4 {
  font-size: 1.125rem; font-weight: 700; margin-bottom: var(--space-xs); }
p { font-size: var(--step-s); color: var(--gray); margin-bottom: var(--space-s); line-height: 1.7; }
.subheadline { color: var(--dark-gray); font-size: var(--step-l); font-weight: 400; letter-spacing: 0.03em; margin-bottom: var(--space-m); }
strong { font-weight: 700; color: var(--black); }

ul,ol { margin-bottom: var(--space-s); margin-left: var(--space-m); }
ul li, ol li { margin-bottom: 8px; font-size: var(--step-s); color: var(--off-black); }
ul li strong, ol li strong { color: var(--brand-primary); font-weight: 700; }

/* Legal screens */
.legal-screen .content-wrapper { background: var(--light-gray); border-radius: var(--radius1); padding: 32px 18px; box-shadow: var(--shadow1); margin-top:32px; }
.legal-screen .text-section h2 { margin-top:32px; font-size: var(--step-l); }
.legal-screen .text-section ul { list-style: disc inside; margin-left: 1.5em; }
.legal-screen .text-section li { color: var(--gray); }

/* ============
  HERO SECTIONS
  ============ */
.hero {
  background: var(--brand-accent);
  padding: 64px 0 40px 0;
  border-bottom: 1px solid var(--light-gray);
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.hero h1 { color: var(--black); }
.hero .subheadline { color: var(--dark-gray); }

@media (min-width: 800px) {
  .hero { padding: 120px 0 64px 0; }
}

/* ============
   FEATURES GRID
   ============ */
.features .content-wrapper > h2 { margin-bottom: 30px; }
.feature-grid,
.features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: var(--space-m);
}
.feature-grid li,
.features ul li {
  background: var(--brand-accent);
  border-radius: var(--radius2);
  box-shadow: var(--shadow1);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 190px;
  max-width: 285px;
  flex: 1 1 190px;
  margin-bottom: 0;
  font-size: var(--step-s);
  color: var(--off-black);
  transition: box-shadow var(--transition), transform var(--transition), background 0.22s;
}
.feature-grid li:hover,
.features ul li:hover {
  box-shadow: var(--shadow2);
  background: var(--white);
  transform: translateY(-2px) scale(1.02);
}
.feature-grid img {
  width: 42px; height: 42px; margin-bottom: 8px; filter: grayscale(1) contrast(1.4);
}

@media (max-width: 799px) {
  .feature-grid,
  .features ul {
    flex-direction: column;
    gap: 18px;
  }
  .feature-grid li, .features ul li {
    min-width: 0;
    max-width: 100%;
    width: 100%;
  }
}

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

/* ============
  TESTIMONIALS
   ============ */
.testimonials { background: var(--light-gray); padding: 36px 0 40px 0; }
.testimonials .content-wrapper {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.testimonials h2 { color: var(--black); margin-bottom:30px; }
.testimonial-slider, .testimonials .content-wrapper {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  justify-content: center;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px 26px 18px 26px;
  background: var(--white);
  box-shadow: var(--shadow1);
  border-radius: var(--radius2);
  min-width: 220px;
  max-width: 350px;
  margin-bottom: 20px;
  flex:  1 1 260px;
  transition: box-shadow var(--transition), transform var(--transition), background 0.22s;
  border: 1.5px solid #e6e6e6;
}
.testimonial-card:hover {
  box-shadow: var(--shadow2);
  transform: translateY(-2px) scale(1.025);
  background: var(--brand-accent);
}
.testimonial-card p {
  margin-bottom: 8px;
  font-size: var(--step-s);
  color: #232323;
  font-style: italic;
}
.testimonial-meta {
  font-size: 1rem;
  color: var(--brand-primary);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.testimonial-meta span {
  color: var(--brand-secondary);
  font-size: 1.03em;
}

@media (max-width: 799px) {
  .testimonial-slider, .testimonials .content-wrapper {
    flex-direction: column;
    align-items: stretch;
  }
  .testimonial-card {
    margin-left: 0; margin-right: 0; max-width: 100%;
    min-width: 0;
  }
}

/* ============
   SERVICES & CARDS
   ============ */
.services .content-wrapper > h2 { margin-bottom: 30px; }
.service-card {
  background: var(--brand-accent);
  border-radius: var(--radius1);
  box-shadow: var(--shadow1);
  padding: 26px 22px 20px 22px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 460px;
  border: 1.5px solid #ececec;
  transition: box-shadow var(--transition), background 0.22s;
}
.service-card:hover {
  box-shadow: var(--shadow2);
  background: var(--white);
}
.service-card h3 {
  margin-bottom: 10px;
  color: var(--black);
}
.service-card span {
  font-weight: 700;
  background: var(--white);
  border-radius: 8px;
  padding: 6px 14px;
  color: var(--brand-primary);
  font-size: 0.98em;
  margin-top: 4px;
  box-shadow: 0 1.5px 8px 0 rgba(27,36,66,0.04);
}

/* ===== FORM & CONTACT ===== */
.contact-block .content-wrapper {
  background: var(--brand-accent);
  border-radius: var(--radius1);
  padding: 32px 18px;
  box-shadow: var(--shadow1);
}
.contact-block .text-section p { color: var(--off-black); }
.contact-block a {
  color: var(--brand-primary);
  text-decoration: underline;
  transition: color var(--transition);
}
.contact-block a:hover { color: var(--dark-gray); }
.map-embed {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  font-size: var(--step-m);
  color: var(--brand-primary);
}

/* ====== Card Container Generic Classes ====== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--brand-accent);
  border-radius: var(--radius1);
  box-shadow: var(--shadow1);
  padding: 24px 20px;
}

/* =============
   CTA BUTTONS
   ============= */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  font-family: var(--font-display);
  font-size: var(--step-m);
  font-weight: 700;
  color: var(--brand-primary);
  background: var(--white);
  border-radius: var(--radius1);
  border: 2.5px solid var(--brand-primary);
  transition: background 0.22s, color 0.2s, box-shadow var(--transition), border var(--transition), transform 0.18s;
  box-shadow: 0 1.5px 7px 0 rgba(27,36,66,0.04);
  cursor: pointer;
  letter-spacing: .01em;
  margin-top: var(--space-xs);
  white-space: nowrap;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--brand-primary);
  color: var(--white);
  transform: scale(1.035) translateY(-2px);
  box-shadow: 0 4px 22px 0 rgba(27,36,66,0.09);
  border-color: var(--brand-secondary);
}

/* ==
   Links
== */
a {
  color: var(--brand-primary);
  text-decoration: none;
}
a:focus,a:hover {
  color: var(--dark-gray);
}

/* ============
   HEADER
   ============ */
header {
  background: var(--white);
  border-bottom: 1.5px solid var(--light-gray);
  position: sticky; top: 0; z-index: 30;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 82px;
}
.logo img { height: 44px; width: auto; margin-right: 10px; }
.main-nav {
  display: none;
  gap: 22px;
  font-family: var(--font-display);
  font-size: var(--step-s);
  font-weight: 600;
  margin-right: 24px;
}
.main-nav a {
  color: var(--brand-primary);
  padding: 8px 10px;
  border-radius: 5px;
  transition: background 0.16s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--brand-primary);
  color: var(--white);
}
.mobile-menu-toggle {
  display: inline-flex;
  font-size: 2.4rem;
  color: var(--brand-primary);
  background: none;
  padding: 8px 16px;
  border-radius: 7px;
  border: 2px solid var(--brand-accent);
  margin-left: 6px;
  transition: background .16s, color .18s, border .14s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--brand-secondary);
  color: var(--black);
  border-color: var(--brand-secondary);
}
.cta-btn { margin-left: 0; }

@media (min-width: 950px) {
  .main-nav {
    display: flex;
  }
  .mobile-menu-toggle {
    display: none;
  }
}

/* ===============
   MOBILE MENU/OVERLAY
   =============== */
.mobile-menu {
  position: fixed;
  left: 0; top: 0; height: 100vh; width: 100vw;
  background: rgba(18, 20, 30, 0.98);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 0;
  transform: translateX(100%);
  pointer-events: none;
  opacity: 0;
  transition: transform 0.32s cubic-bezier(.77,0,.175,1), opacity 0.22s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  font-size: 2.2rem;
  color: var(--white);
  background: none;
  border: none;
  margin: 28px 24px 0 0;
  align-self: flex-end;
  transition: color 0.16s;
  z-index: 2;
}
.mobile-menu-close:hover, .mobile-menu-close:focus { color: var(--brand-secondary); }
.mobile-nav {
  width: 100vw;
  margin-top: 42px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--white);
  padding: 16px 12px;
  text-align: center;
  border-radius: 5px;
  background: none;
  width: 85vw;
  transition: background 0.16s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--brand-secondary);
  color: var(--black);
}

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

/* ============
   ABOUT / TEAM SECTION
   ============ */
.about .content-wrapper, .team .content-wrapper {
  background: var(--brand-accent);
  padding: 32px 18px;
  border-radius: var(--radius1);
  box-shadow: var(--shadow1);
  margin-bottom: 34px;
}
.team .text-section ul {
  list-style: disc inside;
  margin-bottom: 0px;
}
.team .text-section li strong { color: var(--brand-primary); }

/* ============
  FOOTER
   ============ */
footer {
  background: var(--off-black);
  color: var(--medium-gray);
  padding: 36px 0 0 0;
  margin-top: 70px;
  border-top: 2px solid var(--brand-accent);
}
.footer-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  padding-bottom: 20px;
}
.footer-logo img {
  height: 38px; width: auto;
  filter: grayscale(1) contrast(1.4);
  margin-bottom: 6px;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
}
.footer-menu a {
  color: var(--medium-gray);
  border-bottom: 1.5px dotted var(--medium-gray);
  transition: color 0.15s, border 0.18s;
  padding: 2px 4px 4px 4px;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: var(--brand-secondary);
  border-bottom: 2.5px solid var(--brand-secondary);
}
.footer-bottom {
  width: 100%; text-align: center; color: var(--gray); font-size: .97em;
  margin-top: 12px;
  padding-bottom: var(--space-m);
}

/*
===========================
  COOKIE CONSENT BANNER
===========================
*/
.cookie-consent-banner {
  position: fixed;
  bottom: 0; left: 0; width: 100vw;
  background: rgba(17,17,17,.99);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  z-index: 2023;
  padding: 24px 12px 20px 12px;
  box-shadow: 0 -2px 26px 0 rgba(70,70,70,0.16);
  font-family: var(--font-body);
  font-size: 1rem;
  border-radius: 24px 24px 0px 0px;
  animation: ccb-fade-in 0.7s cubic-bezier(.55,0,.42,1);
}
@keyframes ccb-fade-in {
  from { transform: translateY(20%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner .ccb-headline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--brand-secondary);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}
.cookie-consent-banner .ccb-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 6px;
  align-items: center;
  justify-content: center;
}
.ccb-btn {
  background: var(--brand-secondary);
  color: var(--black);
  font-family: var(--font-display);
  padding: 10px 24px;
  font-weight: 700;
  border-radius: 7px;
  font-size: 1rem;
  border: none;
  transition: filter 0.19s, background 0.14s, color 0.14s, box-shadow 0.14s;
  margin: 0 0 0 0;
}
.ccb-btn.accept {
  background: var(--brand-secondary);
  color: var(--black);
}
.ccb-btn.reject {
  background: var(--gray);
  color: var(--white);
}
.ccb-btn.settings {
  background: transparent;
  color: var(--brand-secondary);
  border: 1.5px solid var(--brand-secondary);
}
.ccb-btn:focus,.ccb-btn:hover {
  filter: brightness(0.93);
  box-shadow: 0 4px 12px 0 rgba(27,36,66,0.18);
}
.ccb-btn.settings:focus, .ccb-btn.settings:hover {
  color: var(--black); background: var(--brand-secondary); border-color: var(--brand-secondary);
}

@media (max-width: 460px) {
  .cookie-consent-banner { font-size: 0.95rem; padding: 16px 4px 12px 4px; }
  .cookie-consent-banner .ccb-actions { gap: 8px; }
}

/* -- Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(30,30,30,0.72);
  z-index: 2100;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  transition: opacity 0.18s;
}
.cookie-modal {
  width: 100vw;
  max-width: 420px;
  background: var(--white);
  color: var(--black);
  border-radius: 14px 14px 0 0;
  box-shadow: 0 0 40px 0 rgba(30,30,30,0.15);
  padding: 32px 20px 24px 20px;
  margin-bottom: 0;
  animation: ccm-slide-in .6s cubic-bezier(.65,0,.47,1);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@keyframes ccm-slide-in {
  from { transform: translateY(45%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-modal .modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-display);
  font-size: 1.21rem;
  color: var(--brand-primary);
  font-weight: 700;
}
.cookie-modal .modal-close {
  font-size: 1.7rem;
  color: var(--gray);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.13s;
}
.cookie-modal .modal-close:hover { color: var(--brand-secondary); }
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 12px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px 0;
  font-size: 1rem;
  color: var(--black);
}
.cookie-modal .cookie-category .switch {
  width: 34px; height: 20px;
  background: var(--brand-accent);
  border-radius: 10px; position: relative; transition: background .15s;
}
.cookie-modal .cookie-category .switch input {
  opacity: 0; width: 0; height: 0;
}
.cookie-modal .cookie-category .slider {
  position: absolute; left: 2px; top: 2px;
  width: 16px; height: 16px; border-radius: 50%; background: var(--gray); transition: left .16s, background .13s; }
.cookie-modal .cookie-category input:checked + .slider {
  left: 16px;
  background: var(--brand-primary);
}
.cookie-modal .cookie-category.cookie-essential .switch {
  background: var(--brand-secondary);
}
.cookie-modal .cookie-category.cookie-essential .slider {
  background: var(--black);
}
.cookie-modal .cookie-category.cookie-essential span {
  color: var(--brand-primary);
  font-weight: 600;
}
.cookie-modal .cookie-category .category-label {
  font-size: 1rem;
  margin-right: 8px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 18px;
}
.cookie-modal .ccb-btn {font-size: 0.98rem;}

@media (max-width: 480px) {
  .cookie-modal { padding: 16px 7px 12px 7px; }
}

/* === ANIMATIONS === */
.cta-btn, .main-nav a, .footer-menu a, .feature-grid li, .service-card, .testimonial-card, .card, .mobile-nav a {
  transition: box-shadow var(--transition), color var(--transition), background var(--transition), border var(--transition), transform var(--transition);
}

/* ===========
   FLEXBOX UTILS (PATTERNS)
   =========== */
.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; }

/* Responsive flex containers */
@media (max-width: 768px) {
  .content-grid,
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}

/* ===================
   MISCELLANEOUS
   =================== */
::-webkit-scrollbar { width: 10px; background: #ededed; }
::-webkit-scrollbar-thumb { background: #babcc3; border-radius: 10px; }

hr { border: none; border-bottom: 1.5px solid var(--light-gray); margin: 24px 0; }

/* HIDE FOCUS OUTLINES ONLY FOR MOUSE USERS */
:focus:not(:focus-visible) { outline: none !important; }
:focus-visible { outline: 2.5px solid var(--brand-secondary); outline-offset: 2px; }

/* =======
   Utility
   ======= */
.d-none { display: none !important; }
.m-auto { margin-left: auto; margin-right: auto; }
.w-100 { width: 100% !important; }
.mt-xs { margin-top: 8px; } .mt-s { margin-top: 16px; } .mt-m { margin-top: 32px; }

/* ==============
   PRINT STYLES (Optional)
   ============== */
@media print {
  header, .mobile-menu, .cookie-consent-banner, .cookie-modal-overlay, footer, .cta-btn { display: none !important; }
  body { background: #fff !important; color: #222 !important; }
  main { margin: 0; padding: 0; }
}
