/* ========================================
   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;
    vertical-align: baseline;
    box-sizing: border-box;
}
html { box-sizing: border-box; scroll-behavior: smooth; }
body {
  min-height: 100vh;
  background: #1a232a;
  color: #F1FAEE;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  background-color: #1D3557;
}
img, svg { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; cursor: pointer; transition: color 0.2s; }
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  border: none;
  outline: none;
  background: none;
}
:focus-visible {
  outline: 2px solid #E63946;
  outline-offset: 2px;
}


/* ========================================
   VARIABLES / FONT IMPORTS
======================================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Open+Sans:wght@400;600;700&display=swap');
:root {
  --color-primary: #1D3557;
  --color-secondary: #E63946;
  --color-accent: #F1FAEE;
  --color-bg-dark: #161b22;
  --color-bg-card: #232d38;
  --color-bg-metallic: #273044;
  --color-border: #4B5B6B;
  --color-shadow: rgba(36,42,50,0.25);
  --color-shadow-strong: rgba(36,42,50,0.45);
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Open Sans', Arial, sans-serif;
  --radius-card: 14px;
  --radius-btn: 8px;
  --transition: 0.2s cubic-bezier(.58,.33,.33,1);
  --shadow-sm: 0 2px 8px var(--color-shadow);
  --shadow-md: 0 6px 20px var(--color-shadow-strong);
}


/* ========================================
   TYPOGRAPHY
======================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 900;
  color: #F1FAEE;
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.75rem; line-height: 1.11; }
h2 { font-size: 2rem; line-height: 1.2; }
h3 { font-size: 1.3rem; line-height: 1.3; font-weight: 700; }
h4, h5, h6 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
p, ul, ol, li {
  font-family: var(--font-body);
  color: #E0E6EF;
  font-size: 1rem;
  margin-bottom: 14px;
}
p.subheadline {
  font-size: 1.18rem;
  font-weight: 600;
  color: #E63946;
  margin-bottom: 24px;
  letter-spacing: 0.01em;
}
ul, ol {
  padding-left: 18px;
  margin-bottom: 20px;
  color: #F1FAEE;
}
ul li, ol li { margin-bottom: 10px; }
strong, b { color: #F1FAEE; font-weight: 700; }

/* Special for industrial_modern feel */
h1, h2, h3 {
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Links */
a {
  transition: color var(--transition);
}
a:hover, nav a.active, nav a.selected {
  color: var(--color-secondary);
}


/* ========================================
   BRAND LAYOUT CONTAINERS
======================================== */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  margin: 0 auto;
  width: 100%;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
@media (max-width: 768px) {
  .section { padding: 28px 10px; margin-bottom: 36px; }
}


/* ========================================
   HEADER & NAVIGATION
======================================== */
header {
  background: #181f26;
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 4px 12px var(--color-shadow);
  position: sticky;
  top: 0;
  z-index: 60;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 10px;
}
header img {
  max-height: 48px;
  margin-right: 28px;
}
nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
nav .btn-primary {
  margin-left: 24px;
}
@media (max-width:960px) {
  nav { gap: 14px; }
  nav .btn-primary { margin-left: 15px; }
}
@media (max-width: 768px) {
  nav {
    display: none;
  }
  header .container {
    gap: 0;
  }
}

/* ========================================
   BUTTONS
======================================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(90deg, #232d38 0%, #314053 100%);
  color: #F1FAEE;
  font-size: 1.09rem;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.05em;
  border-radius: var(--radius-btn);
  box-shadow: 0 2px 12px var(--color-shadow);
  border: 1.5px solid var(--color-secondary);
  padding: 13px 32px;
  cursor: pointer;
  transition: background var(--transition), box-shadow var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary:before {
  content: '';
  position: absolute;
  top: 0; left: -70px; bottom: 0;
  width: 68px;
  background: rgba(230,57,70,0.12);
  filter: blur(9px);
  z-index: 1;
  transform: skew(16deg);
  transition: left var(--transition);
}
.btn-primary span {
  z-index: 3;
}
.btn-primary:after { content: none; }
.btn-primary:hover,
.btn-primary:focus {
  background: #E63946;
  color: #F1FAEE;
  border-color: #dc3a4a;
  box-shadow: 0 5px 22px var(--color-shadow-strong);
  transform: translateY(-2px) scale(1.03);
}
.btn-primary:hover:before { left: 140%; }

.btn-secondary {
  background: #314053;
  color: #F1FAEE;
  border-radius: var(--radius-btn);
  border: 1.5px solid #31373e;
  padding: 10px 26px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.03em;
  font-size: 0.96rem;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.btn-secondary:hover { background: #E63946; color: #fff; border-color: #c42e36; }

/* Link buttons */
a.btn-primary, a.btn-secondary {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}


/* ========================================
   FLEXBOX LAYOUTS - INDUSTRIAL MODERN
======================================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
  align-items: stretch;
  justify-content: flex-start;
}
.card {
  background: var(--color-bg-card);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--color-border);
  margin-bottom: 20px;
  padding: 32px 26px 28px 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-width: 240px;
  max-width: 350px;
  position: relative;
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
}
.card:hover {
  border-color: var(--color-secondary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px) scale(1.03);
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 16px;
}
.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: #F1FAEE;
  color: #253144;
  border-radius: var(--radius-card);
  min-width: 230px;
  box-shadow: 0 2px 10px rgba(32,44,52,0.14);
  border-left: 5px solid var(--color-secondary);
  margin-bottom: 20px;
  flex: 1 1 320px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.testimonial-card:hover {
  box-shadow: 0 8px 24px rgba(32,44,52,0.28);
  transform: translateY(-2px) scale(1.02);
}
.testimonial-card p {
  font-size: 1.07rem;
  color: #232d38;
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 6px;
}
.testimonial-card span {
  color: #4D5B6B;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

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

/* Feature grid as on all templates */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-bottom: 20px;
}
.feature {
  background: var(--color-bg-card);
  color: var(--color-accent);
  border-radius: var(--radius-card);
  box-shadow: 0 2px 8px var(--color-shadow);
  border: 1.5px solid var(--color-border);
  padding: 28px 22px;
  flex: 1 1 280px;
  min-width: 230px;
  max-width: 360px;
  margin-bottom: 20px;
  transition: transform .19s cubic-bezier(.55,.17,.37,1.18), box-shadow .19s;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feature img {
  width: 42px;
  height: 42px;
  margin-bottom: 8px;
  filter: grayscale(0.7) brightness(1.3) drop-shadow(0 1px 4px #29324733);
}
.feature:hover {
  background: #222b34;
  transform: translateY(-3px) scale(1.028);
  box-shadow: 0 6px 18px var(--color-shadow-strong);
  border-color: #6d7b8c;
}

.testimonial-slider, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 22px;
  align-items: stretch;
  justify-content: flex-start;
}


/* ========================================
   RESPONSIVE FLEXBOX MEDIA QUERIES
======================================== */
@media (max-width: 1000px) {
  .container {
    max-width: 98vw;
  }
  .feature-grid {
    gap: 20px;
  }
}
@media (max-width: 900px) {
  .feature, .card {
    min-width: 180px;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    gap: 0;
    min-height: 58px;
  }
  .section {
    margin-bottom: 38px;
    padding: 22px 5px;
  }
  .content-grid, .card-container, .feature-grid, .testimonial-slider, .testimonial-list {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .feature, .card, .testimonial-card {
    max-width: 100%;
    min-width: 0;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}
@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.45rem; }
  .btn-primary, .btn-secondary { font-size: 1rem; padding: 10px 16px; }
}


/* ========================================
   FOOTER
======================================== */
footer {
  border-top: 2px solid #253144;
  background: #171e25;
  color: #BEC7D6;
  margin-top: 70px;
  font-size: 0.96rem;
}
footer .container {
  padding: 12px 0;
}
footer nav {
  display: flex;
  gap: 22px;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  flex-wrap: wrap;
}
footer nav a {
  color: #A5B1BE;
  font-size: 0.99rem;
  letter-spacing: 0.01em;
  transition: color var(--transition);
}
footer nav a:hover { color: #E63946; }
footer img { max-height: 36px; margin-bottom: 8px; }
footer p { color: #848A99; font-size: 0.97rem; }


/* ========================================
   MOBILE NAVIGATION / BURGER MENU
======================================== */
.mobile-menu-toggle {
  background: #232d38;
  border-radius: 7px;
  font-size: 2rem;
  color: #F1FAEE;
  padding: 6px 15px;
  border: 1px solid #28334b;
  cursor: pointer;
  display: none;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition), color var(--transition);
  z-index: 101;
}
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
    margin-right: 8px;
    margin-left: auto;
  }
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; height: 100vh; width: 100vw;
  background: rgba(29, 42, 60, 0.98);
  z-index: 999;
  display: flex;
  flex-direction: column;
  transform: translateX(-110vw);
  transition: transform 0.36s cubic-bezier(.4,1,.3,1.1);
  box-shadow: 10px 0 32px -8px #131B23B3;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  color: #E63946;
  background: none;
  border: none;
  font-size: 2.2rem;
  align-self: flex-end;
  margin: 16px 20px 0 0;
  cursor: pointer;
  z-index: 1002;
  transition: color var(--transition);
}
.mobile-menu-close:hover {
  color: #F1FAEE;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 32px;
  align-items: flex-start;
  padding: 0 35px;
}
.mobile-nav a {
  font-size: 1.19rem;
  font-family: var(--font-display);
  color: #F1FAEE;
  padding: 13px 0;
  border-bottom: 1px solid #223148;
  width: 100%;
  transition: color var(--transition), background var(--transition);
  border-radius: 8px;
  letter-spacing: 0.03em;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover {
  color: #E63946;
  background: #233655;
}

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


/* ========================================
   COOKIE CONSENT BANNER & MODAL
======================================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  background: #232d38;
  color: #F1FAEE;
  border-top: 2px solid #273044;
  box-shadow: 0 -4px 16px var(--color-shadow-strong);
  z-index: 2000;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 26px 20px 16px 26px;
  gap: 22px;
  font-size: 1.04rem;
  animation: cookie-slideup 0.55s cubic-bezier(.4,1,.43,1.02);
}
@keyframes cookie-slideup {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-text {
  max-width: 500px;
  font-family: var(--font-body);
  color: #F1FAEE;
  font-size: 1rem;
  margin-right: 16px;
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
}
.cookie-banner .cookie-btns .btn-cookie {
  background: #1D3557;
  color: #F1FAEE;
  border: 1.5px solid #273044;
  border-radius: var(--radius-btn);
  padding: 8px 20px;
  letter-spacing: 0.03em;
  font-size: 0.98rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  margin-right: 0;
  cursor: pointer;
}
.cookie-banner .cookie-btns .btn-cookie.accept {
  background: #E63946;
  color: #fff;
  border-color: #dc3a4a;
}
.cookie-banner .cookie-btns .btn-cookie.accept:hover {
  background: #b02432;
  border-color: #911924;
}
.cookie-banner .cookie-btns .btn-cookie.reject {
  background: #314053;
  color: #F1FAEE;
  border-color: #29313F;
}
.cookie-banner .cookie-btns .btn-cookie.reject:hover {
  background: #232d38;
  color: #E63946;
  border-color: #E63946;
}
.cookie-banner .cookie-btns .btn-cookie.settings {
  background: transparent;
  color: #A5B1BE;
  border: 1.5px solid #A5B1BE;
}
.cookie-banner .cookie-btns .btn-cookie.settings:hover {
  color: #E63946;
  border-color: #E63946;
}
@media (max-width: 830px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 20px 8px;
    font-size: 1rem;
  }
  .cookie-banner .cookie-text { margin-right: 0; }
  .cookie-banner .cookie-btns { width: 100%; gap: 10px; }
}


/* COOKIE SETTINGS MODAL */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(24,31,38, 0.95);
  backdrop-filter: blur(7px);
  z-index: 3200;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  padding: 28px 8px;
  animation: cookie-modal-fadein 0.35s cubic-bezier(.25,1,.27,1.08);
}
@keyframes cookie-modal-fadein {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal .cookie-modal-dialog {
  max-width: 420px;
  width: 100%;
  background: #F1FAEE;
  border-radius: 16px;
  box-shadow: 0 10px 45px -8px #1D3557aa;
  padding: 28px 22px 18px 22px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: relative;
  color: #222b34;
}
.cookie-modal .modal-close {
  position: absolute;
  right: 14px; top: 14px;
  background: none;
  border: none;
  color: #E63946;
  font-size: 1.7rem;
  cursor: pointer;
  transition: color var(--transition);
}
.cookie-modal .modal-close:hover { color: #142135; }
.cookie-modal h2, .cookie-modal h3 {
  color: #1D3557;
  margin-bottom: 8px;
  font-size: 1.27rem;
  font-family: var(--font-display);
  text-transform: uppercase;
}
.cookie-modal .cookie-modal-section { margin-bottom: 15px; }
.cookie-modal .category {
  font-weight: 700;
  font-family: var(--font-display);
  color: #142135;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}
.cookie-modal .toggle {
  accent-color: #E63946;
  width: 18px;
  height: 18px;
  margin-inline-end: 7px;
}
.cookie-modal .always {
  color: #75829c;
  font-size: 0.89rem;
  margin-left: 2px;
}
.cookie-modal button.save-cookies {
  background: #E63946;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 24px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 10px;
  transition: background var(--transition);
}
.cookie-modal button.save-cookies:hover {
  background: #b02432;
}


/* ========================================
   INDUSTRIAL MODERN - VISUAL HIERARCHY
======================================== */
.section {
  background: none;
  border-radius: 0;
}
.text-section ul, .text-section ol { padding-left: 1.4em; margin-bottom: 16px; }
.text-section ul li, .text-section ol li { position: relative; padding-left: 0.2em; color: #d1dae5; }
.text-section ul li img, .text-section ol li img {
  margin-right: 8px; vertical-align: sub;
  filter: invert(0.7) contrast(1.3) brightness(1.1);
  height: 22px; width: 22px;
}

/* Highlight lists used in 'about', 'methodology', etc. */
ul li, ol li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 0.9em;
}
ul li:before {
  content: '';
  display: inline-block;
  width: 9px; height: 9px;
  background: #E63946;
  border-radius: 2px;
  margin-right: 13px;
  vertical-align: middle;
  position: absolute;
  left: 0; top: 8px;
}
ul li img {
  display: inline;
  margin-right: 10px;
  vertical-align: middle;
  position: static;
}


/* ========================================
   BLOG - ARTICLE PREVIEW CARDS
======================================== */
.feature a {
  color: #E63946;
  text-decoration: underline;
  font-weight: 700;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 0.93rem;
  margin-top: 11px;
  transition: color var(--transition);
}
.feature a:hover,bool:focus {
  color: #F1FAEE;
  background: #E63946;
  border-radius: 7px;
  padding: 2px 7px;
}


/* ========================================
   ANIMATIONS & MICRO-INTERACTIONS
======================================== */
.card, .feature, .testimonial-card {
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.card:hover,
.feature:hover,
.testimonial-card:hover {
  transform: translateY(-4px) scale(1.013);
  box-shadow: 0 8px 24px var(--color-shadow-strong);
  border-color: #E63946;
}

.btn-primary, .btn-secondary, .cookie-banner .btn-cookie {
  transition: background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

/* Subtle metallic accent effect for buttons */
.btn-primary, .btn-secondary {
  box-shadow: 0 3px 16px #1D355777, inset 0 -4px 13px #29365533;
}

/* Card metallic shine effect (subtle) */
.card:after, .feature:after {
  content: '';
  display: block;
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none;
  border-radius: var(--radius-card);
  box-shadow: 0 5px 28px rgba(176,195,216,0.022);
  z-index: 2;
}

/* == Hide visually but accessible to screen readers == */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
  white-space: nowrap;
}

/* == Util == */
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }

/* ========================================
   Z-INDEX STACKING (MOBILE, COOKIE)
======================================== */
header { z-index: 60; }
.mobile-menu { z-index: 999; }
.cookie-banner { z-index: 2000; }
.cookie-modal { z-index: 3200; }

/* ========================================
   PREVENT CONTENT OVERLAP (SPACING RULES)
======================================== */
.card, .feature, .section, .testimonial-card, .content-wrapper, .feature-item {
  margin-bottom: 20px;
}
.card-container, .feature-grid, .content-grid, .testimonial-slider, .testimonial-list {
  gap: 20px;
  margin-bottom: 20px;
}

/* ========================================
   OVERRIDES FOR ACCESSIBILITY & CONTRAST
======================================== */
.testimonial-card {
  background: #F1FAEE;
  color: #232d38;
}
.testimonial-card p, .testimonial-card span {
  color: #232d38;
}

/* ========================================
   FORM (for contact, newsletter section)
======================================== */
form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 440px;
}
input, textarea, select {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 13px 15px;
  border-radius: 8px;
  border: 1.5px solid #344058;
  background: #232d38;
  color: #F1FAEE;
  margin-bottom: 14px;
  transition: border var(--transition), box-shadow var(--transition);
  box-shadow: 0 1px 5px rgba(24,31,38, 0.09);
}
input:focus, textarea:focus, select:focus {
  border-color: #E63946;
  box-shadow: 0 2px 12px #E6394630;
}
label {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 7px;
  color: #E63946;
  letter-spacing: 0.01em;
}

/* ========================================
   MISCELLANEOUS (ICONS, BADGES, ETC)
======================================== */
.icon {
  filter: grayscale(1) contrast(1.2);
  opacity: 0.85;
  width: 26px; height: 26px;
}

/* ========================================
   PRINT UTILITIES
======================================== */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal { display: none !important; }
}
