/* =========================================
   Klarstein FitLife - style.css
   Modern Gradient Flexbox Design - Responsive
   ========================================= */

/* ==== CSS RESET & 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;
}
/* HTML5 display-role reset */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F4F4F6;  /* secondary */
  color: #224E87;        /* primary */
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #224E87;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #FFD166;
  outline-offset: 2px;
}

/* ==== FONT FACE ==== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Open+Sans:wght@400;600;700&display=swap');

body {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  background: #F4F4F6;
  color: #224E87;
  min-height: 100vh;
  position: relative;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #224E87;
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
  line-height: 1.2;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.4rem; margin-bottom: 16px; }
h4 { font-size: 1.1rem; }

p, ul, ol {
  color: #224E87;
  font-size: 1rem;
  margin-bottom: 14px;
  line-height: 1.6;
}

strong { color: #224E87; font-weight: 700; }

ul, ol {
  padding-left: 22px;
}
ul li, ol li {
  margin-bottom: 10px;
}

/* ==== CONTAINERS & LAYOUT ==== */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px 0 rgba(34,78,135,0.08);
}

/* =====================
       HEADER
====================== */
header {
  width: 100%;
  background: linear-gradient(90deg, #224E87 20%, #3671c8 100%);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 40;
}
header .logo-link img {
  height: 44px;
  margin: 18px 0 18px 12px;
}

.main-navigation {
  display: flex;
  align-items: center;
  gap: 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-left: auto;
  margin-right: 12px;
}
.main-navigation a {
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  position: relative;
  transition: background 0.2s, color 0.2s;
}
.main-navigation a:not(.btn-primary):hover {
  background: rgba(255,209,102,0.19);
  color: #FFD166;
}
.main-navigation .btn-primary {
  background: #FFD166;
  color: #224E87 !important;
  border-radius: 24px;
  padding: 8px 22px;
  margin-left: 14px;
  box-shadow: 0 3px 8px 0 rgba(255,209,102,0.16);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  font-weight: 900;
}
.main-navigation .btn-primary:hover,
.main-navigation .btn-primary:focus {
  background: #ffe08b;
  color: #224E87;
  box-shadow: 0 4px 16px 0 rgba(255,209,102,0.24);
}

/* Hamburger for mobile */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #FFD166;
  margin: 18px 18px 18px 0;
  cursor: pointer;
  z-index: 120;
  transition: color 0.2s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #FFD166;
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  width: 100vw; height: 100vh;
  background: linear-gradient(100deg, #224E87 80%, #FFD166 100%);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.77,0,0.18,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  z-index: 2000;
  box-shadow: -1px 0 16px 0 rgba(34,78,135, 0.10);
  padding: 24px 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.3rem;
  color: #FFD166;
  background: none;
  border: none;
  align-self: flex-end;
  margin: 0 24px 16px 0;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  gap: 10px;
  margin-left: 32px;
}
.mobile-nav a {
  display: block;
  color: #fff;
  background: none;
  padding: 12px 0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  width: 100%;
  border-radius: 18px;
  transition: color 0.18s, background 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #224E87;
  background: #FFD166;
}

@media (max-width: 1100px) {
  .container {
    max-width: 100vw;
  }
}
@media (max-width: 900px) {
  .main-navigation {
    gap: 14px;
    font-size: 0.98rem;
    padding-right: 12px;
  }
}
@media (max-width: 768px) {
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    z-index: 1020;
    padding-bottom: 0;
  }
  .main-navigation {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    right: 12px;
    top: 12px;
  }
  .logo-link img {
    margin-left: 18px;
    margin-top: 12px;
    margin-bottom: 12px;
    height: 40px;
  }
}

/* =====================
        HERO
====================== */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  background: linear-gradient(135deg, #F4F4F6 70%, #FFD166 100%);
  margin-bottom: 60px;
  padding: 40px 0 60px 0;
  border-radius: 0 0 50px 50px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.hero .content-wrapper {
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
  background: rgba(255, 255, 255, 0.88);
  padding: 28px 22px 36px 22px;
  border-radius: 24px;
  box-shadow: 0 4px 20px 0 rgba(34,78,135,0.09);
}
.hero h1 {
  color: #224E87;
  font-size: 2.3rem;
  font-weight: 900;
}
.hero p {
  color: #224E87;
  font-size: 1.18rem;
  margin-bottom: 18px;
  line-height: 1.4;
}

@media (max-width: 600px) {
  .hero {
    min-height: 200px;
    border-radius: 0 0 30px 30px;
    padding: 26px 0 30px 0;
  }
  .hero .content-wrapper {
    padding: 16px 8px 20px 8px;
  }
  .hero h1 {
    font-size: 1.55rem;
    margin-bottom: 16px;
  }
}

/* =====================
    FEATURES SECTION
====================== */
.features {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 16px 0 rgba(34,78,135,0.05);
}
.features h2 {
  margin-top: 0;
  margin-bottom: 18px;
  color: #224E87;
}
.features .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 0;
}
.features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.features ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #F4F4F6;
  padding: 18px 20px;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(34,78,135,0.05);
  color: #224E87;
  font-size: 1rem;
  min-width: 230px;
  font-weight: 600;
}
.features ul li img {
  width: 32px;
  height: 32px;
}
@media (max-width: 900px) {
  .features ul {
    flex-direction: column;
    gap: 14px;
  }
  .features ul li {
    min-width: 0;
    width: 100%;
  }
}

/* =====================
   SERVICES/CARDS GRID
====================== */
.services {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 14px 0 rgba(34,78,135,0.05);
}
.services h2 {
  margin-bottom: 24px;
}
.services .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  align-items: stretch;
}
.service-card {
  flex: 1 1 250px;
  margin-bottom: 20px;
  background: linear-gradient(120deg, #F4F4F6 60%, #e4edf7 100%);
  border-radius: 18px;
  box-shadow: 0 2px 14px 0 rgba(34,78,135,0.10);
  padding: 28px 20px 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 220px;
  min-height: 190px;
  position: relative;
  transition: box-shadow 0.18s;
}
.service-card h3 {
  color: #224E87;
  font-size: 1.18rem;
  margin-bottom: 10px;
  font-weight: 900;
}
.service-card p {
  color: #224E87;
  font-size: 1rem;
  margin-bottom: 8px;
}
.service-card .btn-secondary {
  align-self: flex-start;
  margin-top: 14px;
}
.service-card:hover, .service-card:focus-within {
  box-shadow: 0 6px 30px 0 rgba(34,78,135,0.10);
}
@media (max-width: 1200px) {
  .services .content-wrapper {
    flex-wrap: wrap;
    gap: 20px;
  }
  .service-card {
    flex-basis: 45%;
    min-width: 190px;
  }
}
@media (max-width: 700px) {
  .services .content-wrapper {
    flex-direction: column;
    gap: 16px;
  }
  .service-card {
    flex-basis: 100%;
    width: 100%;
    min-width: 0;
  }
}

/* =====================
     TESTIMONIALS
====================== */
.testimonials {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #F4F4F6;
}
.testimonials h2 {
  margin-bottom: 20px;
}
.testimonials .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
}
.testimonial-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(34,78,135,0.13);
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  min-width: 250px;
  max-width: 370px;
  margin-bottom: 20px;
  color: #224E87; /* dark text for contrast */
  font-size: 1.06rem;
  transition: box-shadow 0.16s;
}
.testimonial-card p {
  color: #224E87;
  font-size: 1rem;
  font-style: italic;
  line-height: 1.5;
}
.testimonial-author {
  color: #224E87;
  font-weight: 700;
  font-size: 0.97rem;
  margin-top: 4px;
}
.testimonial-card:hover {
  box-shadow: 0 6px 26px 0 rgba(34,78,135,0.17);
}
@media (max-width: 900px) {
  .testimonials .content-wrapper {
    flex-direction: column;
    gap: 14px;
  }
  .testimonial-card {
    max-width: 100%;
    min-width: 0;
  }
}

/* =====================
         CTA
====================== */
.cta {
  margin-bottom: 60px;
  padding: 48px 20px 48px 20px;
  background: linear-gradient(120deg, #224E87 55%, #FFD166 120%);
  color: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 30px 0 rgba(34,78,135,0.13);
}
.cta h2, .cta p {
  color: #fff;
}
.cta .content-wrapper {
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 22px;
}
.cta a.btn-primary {
  margin-top: 12px;
  background: #FFD166;
  color: #224E87;
  border-radius: 24px;
  font-weight: 900;
  transition: background 0.2s, color 0.2s, box-shadow 0.21s;
  box-shadow: 0 2px 10px 0 rgba(255,209,102,0.12);
}
.cta a.btn-primary:hover,
.cta a.btn-primary:focus {
  background: #ffe08b;
  color: #224E87;
  box-shadow: 0 6px 22px 0 rgba(255,209,102,0.18);
}
@media (max-width: 600px) {
  .cta {
    padding: 24px 8px 24px 8px;
    border-radius: 16px;
  }
}

/* =========================
     FOOTER
========================= */
footer {
  width: 100%;
  background: #224E87;
  color: #fff;
  padding: 0 0 12px 0;
  margin-top: 30px;
}
footer .container {
  padding-top: 28px;
  padding-bottom: 6px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 28px;
  justify-content: space-between;
}
.footer-logo img {
  height: 48px;
}
.footer-navigation {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.footer-navigation a {
  color: #FFD166;
  font-weight: 700;
  font-size: 0.99rem;
  margin-bottom: 6px;
  transition: color 0.2s, text-decoration 0.2s;
}
.footer-navigation a:hover,
.footer-navigation a:focus {
  color: #fff;
  text-decoration: underline;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #fff;
}
.contact-info a {
  color: #FFD166;
  text-decoration: underline;
}
.social-media {
  display: flex;
  align-items: center;
  gap: 14px;
}
.social-media img {
  width: 32px; height: 32px;
  filter: brightness(1) saturate(1.7);
  opacity: 0.80;
  transition: opacity 0.2s;
}
.social-media img:hover {
  opacity: 1;
}
@media (max-width: 900px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .footer-logo img {
    height: 40px;
  }
}

/* =========================
   BUTTONS & INTERACTIVES
========================== */
.btn-primary, .btn-secondary {
  padding: 10px 26px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 900;
  border: none;
  border-radius: 24px;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(34,78,135,0.09);
  transition: background 0.19s, color 0.19s, box-shadow 0.19s;
  display: inline-block;
  margin-top: 10px;
}
.btn-primary {
  background: #FFD166;
  color: #224E87;
}
.btn-primary:hover, .btn-primary:focus {
  background: #ffe08b;
  color: #224E87;
  box-shadow: 0 6px 22px 0 rgba(255,209,102,0.17);
}
.btn-secondary {
  background: #224E87;
  color: #FFD166;
  border: 1.5px solid #FFD166;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #364776;
  color: #FFD166;
  box-shadow: 0 6px 25px 0 rgba(34,78,135,0.22);
}

/* ===== CONTENT GRID / CARDS ===== */
.card-container, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 14px 0 rgba(34,78,135,0.10);
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.16s;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  gap: 10px;
}

@media (max-width: 800px) {
  .card-container, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
}

/* ========= TEXT & IMAGE SECTION FLEX ========= */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}

/* ====== FEATURE ITEM ====== */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ====== LEGAL/INFO PAGES ====== */
.legal {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 16px 0 rgba(34,78,135,0.09);
}
.legal h1, .legal h2, .legal h3, .legal h4 {
  color: #224E87;
}
.legal ul {
  margin-bottom: 15px;
  padding-left: 25px;
}
.legal ul li {
  margin-bottom: 10px;
}

/* ===== SECTION SPACING PATTERNS ===== */
.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; }

/* =============================
    RESPONSIVE TYPOGRAPHY
============================= */
@media (max-width: 700px) {
  h1 { font-size: 1.3rem; }
  h2 { font-size: 1.07rem; }
  .btn-primary, .btn-secondary { font-size: 1rem; padding: 9px 14px; }
}

/* =============================
   SPACING/WHITE SPACE SYSTEM
============================= */
section {
  margin-bottom: 60px;
  padding: 40px 0 40px 0;
}
@media (max-width: 900px) {
  section {
    margin-bottom: 36px;
    padding: 20px 0 20px 0;
  }
}

/* ==============
  COOKIE BANNER
================ */
.cookie-consent-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100vw;
  background: linear-gradient(90deg, #FFD166 60%, #224E87 100%);
  color: #224E87;
  font-family: 'Open Sans', Arial, sans-serif;
  padding: 20px 18px 20px 18px;
  box-shadow: 0 -2px 20px 0 rgba(34,78,135,0.08);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  font-size: 1rem;
  z-index: 4600;
  transition: transform 0.35s;
}
.cookie-consent-banner.hide { transform: translateY(120%); }
.cookie-banner-text {
  flex: 1 1 auto;
  font-size: 1rem;
}
.cookie-banner-buttons {
  display: flex;
  gap: 12px;
}
.cookie-consent-banner button {
  border: none;
  outline: none;
  border-radius: 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 7px 18px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.22s, color 0.19s;
  margin-bottom: 0;
}
.accept-btn {
  background: #224E87;
  color: #FFD166;
}
.accept-btn:hover { background: #15315a; color: #FFD166; }
.reject-btn {
  background: #fff;
  color: #224E87;
  border: 1.5px solid #224E87;
}
.reject-btn:hover { background: #FFE5A3; color: #224E87; }
.settings-btn {
  background: none;
  color: #224E87;
  text-decoration: underline;
}
.settings-btn:hover { color: #FFD166; background: #224E87; }

@media (max-width: 700px) {
  .cookie-consent-banner {
    flex-direction: column;
    padding: 16px 5px 12px 5px;
    gap: 8px;
    align-items: flex-start;
    font-size: 0.94rem;
  }
  .cookie-banner-text { font-size: 0.95rem; }
  .cookie-banner-buttons { flex-wrap: wrap; gap: 8px; }
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-overlay {
  position: fixed;
  z-index: 4700;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(34,78,135,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
  pointer-events: none;
  opacity: 0;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  color: #224E87;
  border-radius: 18px;
  box-shadow: 0 6px 32px 0 rgba(34,78,135,0.13);
  padding: 32px 28px 26px 32px;
  max-width: 480px;
  width: 97vw;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: fadeInModal 0.35s;
  z-index: 4710;
  position: relative;
}
@keyframes fadeInModal {
  from { opacity: 0; transform: scale(0.97); } to { opacity: 1; transform: scale(1); }
}
.cookie-modal h2 {
  margin-bottom: 8px;
  font-size: 1.24rem;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.cookie-modal input[type=checkbox] {
  width: 18px; height: 18px;
  accent-color: #FFD166;
  cursor: pointer;
}
.cookie-category {
  display: flex;
  flex-direction: column;
  margin-bottom: 12px;
}
.cookie-modal-footer {
  display: flex;
  gap: 18px;
  justify-content: flex-end;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 10px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: #224E87;
  cursor: pointer;
}
.cookie-modal .close-modal:hover {
  color: #FFD166;
}

@media (max-width: 600px) {
  .cookie-modal {
    padding: 15px 6px 16px 10px;
    max-width: 92vw;
  }
}

/* ===========================
    MICRO-INTERACTIONS
=========================== */
section,.service-card,.testimonial-card,.btn-primary,.btn-secondary {
  transition: box-shadow 0.23s, background 0.19s, color 0.19s, transform 0.15s;
}
.service-card:active,
.testimonial-card:active {
  transform: translateY(2px) scale(0.98);
}
.btn-primary:active,
.btn-secondary:active {
  transform: scale(0.96);
}

/* ===========================
    MISCELLANEOUS UTILITIES
=========================== */
.text-center { text-align: center !important; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px !important; }
.mb-40 { margin-bottom: 40px !important; }

/* =========================
    SCROLLBAR STYLE
========================== */
::-webkit-scrollbar {
  width: 10px; height: 10px;
}
::-webkit-scrollbar-thumb {
  background: #FFD166; border-radius: 6px;
}
::-webkit-scrollbar-track {
  background: #F4F4F6;
}

/* ==================
 ACCESSIBILITY FOCUS
================== */
*:focus-visible {
  outline: 2.5px solid #FFD166;
  outline-offset: 2px;
}

/* ==============================
  THANK-YOU PAGE & INFO BOXES
============================== */
.next-steps {
  background: #fff;
  padding: 34px 18px;
  border-radius: 18px;
  margin-bottom: 60px;
  box-shadow: 0 2px 16px 0 rgba(34,78,135,0.07);
}

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