/* =============================== */
/* CSS RESET & NORMALIZE (MOBILE-FIRST) */
/* =============================== */
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  min-height: 100vh;
  background: #F9F6F0;
  color: #27324D;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.01em;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
  border: 0;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.22s cubic-bezier(.45,0,.55,1);
}
ul, ol {
  padding-left: 1.5em;
  margin-bottom: 1.2em;
}
li {
  margin-bottom: 0.5em;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #27324D;
  letter-spacing: 0.03em;
  margin-bottom: 18px;
}
h1 {font-size:2.2rem;}
h2 {font-size:1.6rem;}
h3 {font-size:1.25rem;}
h4 {font-size:1rem;}
code, pre {font-family: monospace;}

/* =============================== */
/* GEOMETRIC/STRUCTURED BASE LAYOUTS */
/* =============================== */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
section, .section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 16px;
}

/* =============================== */
/* TYPOGRAPHY: GEOMETRIC LOOK */
/* =============================== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,400&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.hero h1, h2 {
  font-weight: 800;
  text-transform: none;
  font-feature-settings: "tnum";
  letter-spacing: 0.035em;
}
.subheadline {
  font-size: 1.3rem;
  color: #547591;
  margin-bottom: 8px;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 400;
}
p, li, a, ul, ol, label, input, textarea {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #27324D;
}
p {
  margin-bottom: 12px;
  line-height: 1.7;
}
strong { font-weight: 700; }

/* =============================== */
/* HEADER & NAVIGATION */
/* =============================== */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 16px 0 rgba(39,50,77,0.04);
  position: relative;
  z-index: 101;
}
.logo {
  display: flex;
  align-items: center;
  padding: 8px;
  margin-right: 28px;
}
.header .container {
  flex-direction: row;
  align-items: center;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-left: auto;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 8px;
  color: #27324D;
  transition: background 0.18s, color 0.18s, box-shadow 0.2s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #F9F6F0;
  color: #1f2536;
  outline: none;
}
.main-nav .cta {
  background: #27324D;
  color: #fff;
  font-weight: 700;
  border-radius: 10px;
  border: none;
  margin-left: 8px;
  padding: 8px 28px;
  box-shadow: 0 2px 10px 0 rgba(39,50,77,0.08);
  letter-spacing: 0.08em;
  text-transform: none;
  transition: background 0.21s, color 0.21s, box-shadow 0.18s;
}
.main-nav .cta.primary:hover,
.main-nav .cta.primary:focus {
  background: #9DB9CA;
  color: #27324D;
  box-shadow: 0 4px 24px 0 rgba(39,50,77,0.09);
}
/* Hamburger Icon */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #27324D;
  color: #fff;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 10px;
  font-size: 2rem;
  margin-left: 18px;
  margin-right: 0;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #9DB9CA;
  color: #27324D;
}
/* Hide mobile nav toggle on desktop */
@media (min-width: 1025px) {
  .mobile-menu-toggle {
    display: none;
  }
}
/* Hide main nav on mobile */
@media (max-width: 1024px) {
  .main-nav {
    display: none !important;
  }
  .logo {
    margin-right: auto;
  }
}

/* =============================== */
/* MOBILE MENU OVERLAY */
/* =============================== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right:0; bottom:0;
  width: 100vw;
  height: 100vh;
  background: #27324D;
  color: #fff;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100vw);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(.77,0,.18,1), opacity 0.22s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  padding: 22px 18px 12px 28px;
  align-self: flex-end;
  cursor: pointer;
  transition: color 0.17s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #9DB9CA;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px 32px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
  background: none;
  border-radius: 8px;
  padding: 15px 4px 14px 4px;
  letter-spacing: 0.04em;
  transition: background 0.15s, color 0.15s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #9DB9CA;
  color: #27324D;
}

/* =============================== */
/* HERO SECTION */
/* =============================== */
.hero {
  background: linear-gradient(135deg, #F9F6F0 80%, #9DB9CA 100%);
  border-bottom: 6px solid #27324D;
  margin-bottom: 60px;
  padding: 38px 0 52px 0;
}
.hero .container {
  flex-direction: column;
  align-items: flex-start;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
}
.hero h1 {
  font-size: 2.4rem;
  color: #27324D;
}
.hero .cta {
  margin-top: 7px;
}

/* =============================== */
/* CARD CONTAINERS & LAYOUTS */
/* =============================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 20px 0 rgba(39,50,77,0.09);
  padding: 28px 24px;
  margin-bottom: 20px;
  min-width: 260px;
  position: relative;
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 2px solid #9DB9CA;
  transition: border-color 0.16s, box-shadow 0.18s;
}
.card:hover, .card:focus-within {
  border-color: #27324D;
  box-shadow: 0 10px 30px 0 rgba(39,50,77,0.14);
}
.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;
  align-items: stretch;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; gap: 20px; }
  .content-grid      { flex-direction: column; }
  .card-container    { flex-direction: column; gap: 20px; }
}

/* =============================== */
/* FEATURES & ICON SECTIONS */
/* =============================== */
.features-icons {
  display: flex;
  flex-direction: row;
  gap: 24px;
  flex-wrap: wrap;
  margin: 34px 0 14px 0;
}
.features-icons > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 14px 0 rgba(39,50,77,0.08);
  border: 1.5px solid #9DB9CA;
  padding: 18px 26px 14px 26px;
  min-width: 115px;
  transition: box-shadow 0.14s, border 0.14s;
}
.features-icons > div:hover {
  box-shadow: 0 8px 22px 0 rgba(39,50,77,0.12);
  border: 2px solid #27324D;
}
.features-icons img {
  height: 44px;
  width: auto;
}
.features-icons p {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.02rem;
  color: #27324D;
  margin-top: 7px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.features-overview {
  gap: 18px;
}

/* =============================== */
/* TESTIMONIALS */
/* =============================== */
.testimonials-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 14px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 22px;
  background: #fff;
  border-radius: 18px 18px 8px 8px;
  box-shadow: 0 4px 20px rgba(39,50,77,0.10);
  min-width: 270px;
  max-width: 340px;
  margin-bottom: 20px;
  border: 1.5px solid #9DB9CA;
  position: relative;
}
.testimonial-card p {
  color: #27324D;
  font-size: 1.08rem;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  margin-bottom: 0;
}
.testimonial-card strong {
  color: #27324D;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
}
.testimonials h2,
.testimonials-list h2 {
  color: #27324D;
}
.testimonials {
  margin-top: 30px;
}
@media (max-width: 900px) {
  .testimonials-list { flex-direction: column; gap: 20px; }
}

/* =============================== */
/* CALL TO ACTION */
/* =============================== */
.call-to-action {
  background: #27324D;
  color: #fff;
  padding: 50px 0 46px 0;
  text-align: center;
  border-radius: 20px;
  box-shadow: 0 6px 22px 0 rgba(39,50,77,0.07);
  margin-bottom: 60px;
}
.call-to-action .container {
  align-items: center;
  justify-content: center;
}
.call-to-action .content-wrapper {
  align-items: center;
  gap: 18px;
}
.call-to-action p {
  color: #fff;
  font-size: 1.12rem;
}

/* =============================== */
/* CONTACT INFO BRIEF */
/* =============================== */
.contact-brief ul, .content-wrapper ul {
  list-style: none;
  padding: 0;
  margin: 0 0 10px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-brief li, .content-wrapper ul li {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1.06rem;
}
.contact-brief img, .content-wrapper ul img {
  height: 22px;
  width: auto;
}

/* =============================== */
/* CTA / BUTTONS / LINK STYLES  */
/* =============================== */
.cta, .cta.primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.12rem;
  padding: 13px 34px;
  border-radius: 18px 7px 18px 7px;
  background: #9DB9CA;
  color: #27324D;
  transition: background 0.23s, color 0.18s, box-shadow 0.19s, transform 0.16s;
  box-shadow: 0 3px 18px 0 rgba(39,50,77,0.08);
  border: 2px solid #27324D;
  cursor: pointer;
  text-transform: none;
  letter-spacing: 0.05em;
  text-decoration: none;
  margin-top: 12px;
}
.cta.primary {
  background: #27324D;
  color: #fff;
  border-color: #27324D;
  box-shadow: 0 4px 24px rgba(39,50,77,0.11);
}
.cta:hover, .cta:focus,
.cta.primary:hover, .cta.primary:focus {
  background: #fff;
  color: #27324D;
  border-color: #27324D;
  transform: translateY(-2px) scale(1.025);
  box-shadow: 0 8px 30px 0 rgba(39,50,77,0.14);
  text-decoration: none;
  outline: none;
}

/* =============================== */
/* FOOTER */
/* =============================== */
footer {
  background: #27324D;
  color: #fff;
  margin-top: 60px;
  padding: 48px 0 24px 0;
}
footer .content-wrapper {
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.footer-nav,
.footer-legal {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 10px;
  justify-content: center;
}
.footer-nav a, .footer-legal a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #fff;
  padding: 7px 13px;
  border-radius: 7px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: background 0.15s, color 0.15s;
}
.footer-nav a:hover, .footer-legal a:hover, .footer-nav a:focus, .footer-legal a:focus{
  background: #9DB9CA;
  color: #27324D;
  outline: none;
}
.footer-tagline {
  font-size: 1.08rem;
  margin-top: 12px;
  color: #CED8E1;
  font-style: italic;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}

/* =============================== */
/* COOKIE CONSENT BANNER & MODAL */
/* =============================== */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 24px;
  z-index: 3500;
  background: #fff;
  color: #27324D;
  border-radius: 18px 7px 18px 7px;
  box-shadow: 0 8px 32px rgba(39,50,77,0.15);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
  padding: 25px 12px 25px 32px;
  font-size: 1rem;
  border: 2px solid #27324D;
  justify-content: space-between;
  animation: fadeBannerIn 0.5s cubic-bezier(.45,0,.55,1);
}
@keyframes fadeBannerIn {
  from { opacity:0; transform: translateY(50px); }
  to   { opacity:1; transform: translateY(0);   }
}
.cookie-banner .cookie-text {
  flex: 1 1 260px;
  margin-right: 16px;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 13px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 10px;
  padding: 8px 19px;
  cursor: pointer;
  border: 2px solid #27324D;
  background: #fff;
  color: #27324D;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
}
.cookie-banner .accept {
  background: #27324D;
  color: #fff;
  border-color: #27324D;
}
.cookie-banner .accept:hover,
.cookie-banner .accept:focus {
  background: #9DB9CA;
  color: #27324D;
  outline: none;
}
.cookie-banner .reject {
  border-color: #bdd0dd;
  color: #27324D;
  background: #fff;
}
.cookie-banner .reject:hover,
.cookie-banner .reject:focus {
  border-color: #27324D;
  background: #f7fafd;
}
.cookie-banner .settings {
  border-color: #9DB9CA;
  background: #9DB9CA;
  color: #27324D;
}
.cookie-banner .settings:hover,
.cookie-banner .settings:focus {
  background: #27324D;
  color: #fff;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 10px 20px 18px;
    gap: 14px;
  }
  .cookie-banner .cookie-actions {
    margin-top: 6px;
    width: 100%;
    gap: 9px;
  }
}

.cookie-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 4100;
  background: rgba(39,50,77,0.38);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeBackdropIn 0.38s;
}
@keyframes fadeBackdropIn { from{opacity:0;} to{opacity:1;} }
.cookie-modal {
  background: #fff;
  color: #27324D;
  border-radius: 18px 7px 18px 7px;
  max-width: 420px;
  width: 94vw;
  padding: 40px 30px 30px 30px;
  border: 2px solid #27324D;
  box-shadow: 0 8px 48px 0 rgba(39,50,77,0.16);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  animation: fadeCookieModalIn 0.35s cubic-bezier(.48,0,.58,1);
}
@keyframes fadeCookieModalIn { from{opacity:0; transform: scale(0.96);} to{opacity:1; transform: scale(1);} }
.cookie-modal h3 {
  font-size: 1.24rem;
  margin-bottom: 7px;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 19px 0 18px 0;
}
.cookie-modal .category {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-modal .category label {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.04rem;
  cursor: pointer;
}
.cookie-modal .category input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  accent-color: #27324D;
}
.cookie-modal .category.essential label {
  color: #27324D;
  font-style: italic;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 13px;
  margin-top: 10px;
}
.cookie-modal button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 10px;
  padding: 8px 20px;
  cursor: pointer;
  border: 2px solid #27324D;
  background: #fff;
  color: #27324D;
  transition: background 0.17s, color 0.17s, border 0.17s;
}
.cookie-modal .accept {
  background: #27324D;
  color: #fff;
  border-color: #27324D;
}
.cookie-modal .accept:hover,
.cookie-modal .accept:focus {
  background: #9DB9CA;
  color: #27324D;
}
.cookie-modal .close {
  background: #fff;
  border-color: #9DB9CA;
  color: #27324D;
}
.cookie-modal .close:hover,
.cookie-modal .close:focus {
  background: #f2f2f2;
  border-color: #27324D;
}

/* =============================== */
/* FORMS AND INPUTS */
/* =============================== */
input[type="text"], input[type="email"], input[type="tel"], textarea {
  padding: 11px 13px;
  border-radius: 8px;
  border: 1.5px solid #9DB9CA;
  font-size: 1rem;
  outline: none;
  margin-bottom: 14px;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  transition: border-color 0.16s, box-shadow 0.21s;
  background: #fff;
  color: #27324D;
}
input[type="text"]:focus, input[type="email"]:focus, input[type="tel"]:focus, textarea:focus {
  border-color: #27324D;
  box-shadow: 0 2px 12px 0 rgba(39,50,77,0.04);
}
label {
  margin-bottom: 7px;
  display: inline-block;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  color: #27324D;
}

/* =============================== */
/* TABLES (Geometric style) */
/* =============================== */
table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  margin-bottom: 36px;
  border-radius: 11px;
  box-shadow: 0 2px 16px rgba(39,50,77,0.07);
}
th, td {
  padding: 18px 16px;
  border-bottom: 1.5px solid #9DB9CA;
  text-align: left;
  font-size: 1.01rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
th {
  background: #f7fafb;
  font-weight: 700;
  color: #27324D;
}
/* =============================== */
/* SPACING & FLEXBOX GAP SYSTEMS */
/* =============================== */
.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 MEDIA QUERIES */
/* =============================== */
@media (max-width: 1024px) {
  .container { padding: 0 7px; }
  .hero { padding: 28px 0 36px 0; }
  section, .section { padding: 24px 6px; }
}
@media (max-width: 900px) {
  .features-icons {
    flex-direction: column;
    align-items: flex-start;
    gap: 17px;
  }
  .content-grid   { flex-direction: column; gap: 19px; }
}
@media (max-width: 700px) {
  h1 {font-size: 1.35rem;}
  h2 {font-size: 1.06rem;}
  .footer-nav, .footer-legal {
    flex-direction: column; gap: 7px;
  }
  .call-to-action { padding: 32px 3px 34px 3px; border-radius: 13px; }
  .content-wrapper { gap: 15px; }
  .hero .container { padding: 0 6px; }
  .features-icons > div, .card { min-width: unset; padding: 16px 10px; }
  .card { border-radius: 12px; }
}
@media (max-width: 530px) {
  .footer-nav a, .footer-legal a {
    padding: 6px 2px;
  }
  .cookie-banner { left: 2px; right: 2px; padding: 14px 8px 14px 10px; }
  .call-to-action { border-radius: 8px; }
}

/* =============================== */
/* SHADOWS, HOVER, MICRO-ANIMATION */
/* =============================== */
.card, .features-icons > div, .testimonial-card, .cookie-banner {
  transition: box-shadow .22s cubic-bezier(.45,0,.59,1), border-color .17s;
}
.card:active, .features-icons > div:active, .testimonial-card:active {
  box-shadow: 0 2px 10px 0 rgba(39,50,77,0.09);
}
.cta:active, .cta.primary:active {
  transform: scale(0.98);
}

/* =============================== */
/* Z-INDEX HIERARCHY */
/* =============================== */
header { z-index: 101; }
.mobile-menu { z-index: 1200; }
.cookie-banner { z-index: 3500; }
.cookie-modal-backdrop { z-index: 4100; }

/* =============================== */
/* ACCESSIBILITY IMPROVEMENTS */
/* =============================== */
a:focus-visible, button:focus-visible {
  outline: 2px solid #9DB9CA;
  outline-offset: 2px;
}

/* =============================== */
/* GEOMETRIC DECORATIVE MOTIFS */
/* =============================== */
/* Add simple angular/diagonal lines for headers/CTA for geometric feel */
.hero::after, .call-to-action::after {
  content: "";
  display: block;
  width: 54px;
  height: 8px;
  background: #9DB9CA;
  border-radius: 3px;
  margin-top: 17px;
  margin-left: 0;
  position: relative;
}
@media (max-width: 700px) {
  .hero::after, .call-to-action::after { width: 30px; height: 4px; }
}

/* =============================== */
/* PRINT STYLES (Optional) */
/* =============================== */
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
  section, .container, .content-wrapper { padding: 0 !important; margin: 0 !important; box-shadow: none !important; background: #fff !important; }
}

/* END WohnRaum Genie – Geometric/Structured CSS Styles */