/*==============================*/
/* CSS RESET & BASE 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 {
  scroll-behavior: smooth;
  background: #181A1B;
}
body {
  min-height: 100vh;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #E5D7C3;
  line-height: 1.6;
  background: linear-gradient(135deg, #222624 0%, #181A1B 70%);
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  color: #fff;
  margin-bottom: 16px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.75rem;
  line-height: 1.13;
  background: linear-gradient(90deg, #E5D7C3, #b7ec6c 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
h2 {
  font-size: 2rem;
  line-height: 1.2;
}
h3 {
  font-size: 1.25rem;
  line-height: 1.3;
}
p, li, blockquote {
  font-size: 1rem;
  color: #E5D7C3;
}
.subtitle {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #839074;
  font-size: 1.2rem;
  margin-bottom: 24px;
  margin-top: -8px;
}

strong {
  color: #fff;
  font-weight: 700;
}
a {
  color: #b7ec6c;
  text-decoration: none;
  transition: color 0.18s cubic-bezier(.4,0,.2,1);
}
a:hover, a:focus {
  color: #9eef9c;
  text-decoration: underline;
}
img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}
ul, ol {
  padding-left: 24px;
  margin-bottom: 18px;
}
ul li, ol li {
  margin-bottom: 10px;
  line-height: 1.7;
}
blockquote {
  color: #fff;
  border-left: 4px solid #b7ec6c;
  background: rgba(60,46,26,0.7);
  padding: 18px 20px;
  margin: 24px 0;
  font-style: italic;
  border-radius: 10px;
}

/*===============================*/
/* BRAND COLORS & CUSTOM PROPS   */
/*===============================*/
:root {
  --primary: #3C2E1A;
  --primary-dark: #221B11;
  --secondary: #E5D7C3;
  --secondary-light: #F7F4EE;
  --accent: #839074;
  --accent-bright: #b7ec6c;
  --text-main: #E5D7C3;
  --text-dark: #222624;
  --bg-dark: #181A1B;
  --bg-light: #F7F4EE;
  --neon-green: #9eef9c;
  --neon-yellow: #fff500;
  --shadow1: 0 2px 24px 0 rgba(183,236,108,0.07);
  --shadow2: 0 4px 24px 0 rgba(60,46,26,0.17);
}

/*===============================*/
/* LAYOUT & SPACING PATTERNS     */
/*===============================*/
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  border-radius: 25px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #24271c;
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: var(--shadow1);
  position: relative;
  padding: 26px 28px;
  flex: 1 1 260px;
  transition: box-shadow .25s cubic-bezier(.4,0,.2,1),
    transform .21s cubic-bezier(.4,0,.2,1);
}
.card:hover {
  box-shadow: 0 2px 32px 0 rgba(183,236,108,0.15),0 4px 32px 0 #221b112a;
  transform: translateY(-5px) scale(1.03);
}
.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;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--secondary);
  color: var(--text-dark);
  border-radius: 16px;
  box-shadow: 0 2px 16px 0 rgba(131,144,116,.08);
  margin-bottom: 20px;
  min-width: 260px;
  max-width: 420px;
  transition: box-shadow .23s;
}
.testimonial-card p,
.testimonial-name, .testimonial-card .stars {
  color: var(--text-dark);
}
.testimonial-card .testimonial-name {
  font-weight: 700;
  font-size: 1.13em;
  letter-spacing: 0.01em;
}
.testimonial-card .stars {
  color: var(--neon-green);
  font-size: 1.2em;
  letter-spacing: 0.15em;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #24271c;
  border-radius: 12px;
  padding: 22px 26px;
  margin-bottom: 20px;
  box-shadow: var(--shadow2);
}

/*===================================*/
/* HEADER/NAVBAR & MOBILE NAVIGATION */
/*===================================*/
header {
  width: 100%;
  background: #23251a;
  box-shadow: 0 1px 16px 0 rgba(60,46,26,0.13);
  position: sticky;
  top: 0;
  z-index: 1000;
}
header .container {
  padding-top: 0;
  padding-bottom: 0;
}
nav {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 0;
  min-height: 68px;
}
nav .logo {
  margin-right: 28px;
  display: flex;
  align-items: center;
}
nav a {
  color: var(--secondary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.02em;
  padding: 8px 14px;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
}
nav a.cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  margin-left: 12px;
  background: linear-gradient(90deg,#556244 20%,var(--accent-bright) 140%);
  color: #23251a;
  font-weight: 700;
  border-radius: 12px;
  box-shadow: 0 2px 16px 0 #b7ec6c13;
  padding: 9px 25px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.12);
  border: none;
  outline: none;
  letter-spacing: 0.04em;
  position: relative;
  transition: background .22s cubic-bezier(.4,0,.2,1), box-shadow .18s;
  z-index: 1;
}
nav a.cta-btn:hover,
nav a.cta-btn:focus {
  color: #2f2f00;
  background: linear-gradient(90deg,#b7ec6c 5%,#fff500 120%);
  box-shadow: 0 2px 32px 0 #b7ec6c2a;
  text-decoration: none;
}
nav a.active {
  background: #3C2E1A;
  color: var(--accent-bright);
}
nav a:hover,
nav a:focus {
  background: #363b24;
  color: var(--accent-bright);
  text-decoration: none;
}

/*---- Mobile Nav & Burger ----*/
.mobile-menu-toggle {
  display: none;
  background: none;
  color: var(--neon-green);
  font-size: 2.1rem;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 6px 12px;
  border-radius: 8px;
  transition: background 0.18s;
  z-index: 1502;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #3e4736;
}
.mobile-menu {
  /* overlay */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0;
  right: 0;
  width: 90vw;
  max-width: 340px;
  height: 100vh;
  background: #23251a;
  box-shadow: -2px 0 44px #b7ec6c22;
  z-index: 1500;
  padding: 36px 30px 28px 26px;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(.47,.33,.42,1);
  opacity: 1;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: var(--accent-bright);
  border: none;
  font-size: 2rem;
  cursor: pointer;
  align-self: flex-end;
  margin-bottom: 16px;
  padding: 4px 10px;
  border-radius: 7px;
  transition: background 0.17s;
  z-index: 1002;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #3e4736;
  color: #fff500;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  margin-top: 12px;
}
.mobile-nav a {
  padding: 12px 0;
  color: var(--secondary);
  font-size: 1.19rem;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.01em;
  border-radius: 6px;
  transition: background 0.16s, color 0.16s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #3C2E1A;
  color: var(--neon-green);
  text-decoration: none;
}
@media (max-width: 1080px) {
  .container {
    max-width: 94vw;
  }
}
@media (max-width: 820px) {
  nav {
    gap: 10px;
    flex-wrap: wrap;
    font-size: 0.97rem;
  }
  .container {
    max-width: 99vw;
  }
}
@media (max-width: 900px) {
  nav {
    flex-wrap: wrap;
    gap: 8px;
  }
}
@media (max-width: 820px) {
  nav {
    gap: 8px;
    min-height: 58px;
    font-size: 0.97rem;
  }
}
@media (max-width: 768px) {
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/*==============================*/
/* MAIN/HERO & GENERAL LAYOUTS  */
/*==============================*/
main {
  padding-top: 0px;
  padding-bottom: 36px;
  min-height: 86vh;
  background: none;
}
section {
  margin-bottom: 60px;
  padding: 40px 0px;
  border-radius: 25px;
}
.section-intro {
  background: linear-gradient(110deg,rgba(89,236,108,0.13) 0%,rgba(255,245,0,0.08) 120%);
  box-shadow: 0 4px 32px 0 #262e1a15;
  border-radius: 23px;
}
.content-wrapper, .text-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.text-section {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 12px;
}
.text-section ul {
  margin-bottom: 10px;
}
.text-section h2 {
  margin-bottom: 20px;
}

/* HERO BUTTON/CTA */
.cta-btn {
  display: inline-block;
  padding: 12px 32px;
  margin-top: 20px;
  font-size: 1.06rem;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  border-radius: 13px;
  background: linear-gradient(90deg, var(--accent-bright) 0%, #556244 120%);
  color: #181a1b;
  box-shadow: 0 2px 32px 0 #b7ec6c2a;
  letter-spacing: 0.04em;
  transition: filter 0.2s, background 0.19s, color 0.13s, transform 0.18s;
  cursor: pointer;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, #fff500 0%, #b7ec6c 120%);
  color: #23251a;
  filter: brightness(1.13) drop-shadow(0 2px 10px #caffad6a);
  transform: translateY(-3px) scale(1.04);
  text-decoration: none;
  outline: none;
}

/*==============================*/
/* LISTS WITH ICONS              */
/*==============================*/
ul li img {
  margin-right: 12px;
  vertical-align: middle;
  height: 28px;
  width: 28px;
  filter: drop-shadow(0px 0px 5px #b7ec6c66);
}
.text-section ul li img {
  margin-right: 8px;
}

/*==============================*/
/* FORMS (future)                */
/*==============================*/
input, textarea, select {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  border-radius: 7px;
  padding: 12px;
  border: 1px solid #3C2E1A;
  background: #23251a;
  color: #e5d7c3;
  font-size: 1rem;
  box-shadow: 0 1px 8px rgba(183,236,108,0.06);
  margin-bottom: 18px;
  width: 100%;
  outline: none;
  transition: border .19s, box-shadow .19s;
}
input:focus, textarea:focus, select:focus {
  border-color: #b7ec6c;
  box-shadow: 0 1px 14px #b7ec6c3a;
}

/*====================*/
/* FOOTER             */
/*====================*/
footer {
  background: #23251a;
  color: #bbb7ae;
  border-top: 1.5px solid #3C2E1A;
  padding: 42px 0 20px 0;
  margin-top: 40px;
  width: 100vw;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
footer nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  padding: 0 0 16px 0;
}
footer nav a {
  color: #b7ec6c;
  font-size: 0.97rem;
  font-weight: 500;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 5px;
  padding: 5px 10px;
  transition: background .16s, color .19s;
}
footer nav a:hover, footer nav a:focus {
  background: #839074;
  color: #23251a;
  text-decoration: none;
}
footer p {
  color: #bbb7ae;
  font-size: 0.92rem;
  text-align: left;
}

/*==============================*/
/* QUICK LINKS, BLOCKS           */
/*==============================*/
.quick-links ul {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding-left: 0;
  list-style: none;
}
.quick-links li a {
  background: linear-gradient(90deg,#556244,#b7ec6c);
  color: #222624;
  border-radius: 8px;
  padding: 8px 20px;
  font-size: 1rem;
  font-weight: 600;
  transition: background .19s, filter .16s;
}
.quick-links li a:hover, .quick-links li a:focus {
  background: linear-gradient(90deg,#b7ec6c,#fff500);
  color: #23251a;
  text-decoration: none;
}

/*==============================*/
/* LOCATION MAP                  */
/*==============================*/
.location-map {
  width: 100%;
  margin: 18px 0 10px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 120px;
  background: none;
  border-radius: 16px;
}
.location-map img {
  max-width: 320px;
  border-radius: 10px;
  box-shadow: 0 2px 24px #83907411;
}

/*==============================*/
/* RESPONSIVE & MOBILE FIXES     */
/*==============================*/
@media (max-width: 1024px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 900px) {
  .text-image-section, .content-grid {
    flex-direction: column;
    gap: 24px;
  }
  .content-wrapper {
    gap: 14px;
  }
}
@media (max-width: 768px) {
  .section, section {
    margin-bottom: 44px;
    padding: 24px 4px;
  }
  main {
    padding-bottom: 20px;
  }
  h1 { font-size: 2.05rem; }
  h2 { font-size: 1.34rem; }
  .container {
    padding-left: 6px;
    padding-right: 6px;
  }
  .testimonial-card {
    padding: 13px;
    gap: 13px;
    min-width: 140px;
  }
  .feature-item {
    padding: 13px 9px;
    gap: 9px;
  }
  .location-map img {
    max-width: 97vw;
  }
}
@media (max-width: 480px) {
  body {
    font-size: 15px;
  }
  .container {
    padding-left: 2px;
    padding-right: 2px;
  }
  .content-wrapper, .text-section {
    gap: 10px;
    padding: 0 0px;
  }
  h1 { font-size: 1.29rem; }
  h2 { font-size: 1.12rem; margin-bottom: 8px; }
}

/*==============================*/
/* COOKIE CONSENT BANNER         */
/*==============================*/
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  padding: 22px 14px 24px 20px;
  background: #23251a;
  color: #b7ec6c;
  box-shadow: 0 -3px 30px #3C2E1A44;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  flex-wrap: wrap;
  font-size: 1rem;
  transition: transform .45s cubic-bezier(.63,.02,.27,1.09), opacity .29s;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}
.cookie-banner.hide {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-text {
  flex: 3 1 260px;
  color: #b7ec6c;
  font-size: 1rem;
  margin-right: 4px;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
.cookie-banner button, .cookie-banner .cookie-settings-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  background: linear-gradient(90deg,#b7ec6c 0%,#556244 120%);
  color: #23251a;
  padding: 7px 22px;
  border-radius: 8px;
  border: none;
  transition: background .18s, color .19s, box-shadow .17s;
  box-shadow: 0 2px 12px #b7ec6c22;
  cursor: pointer;
}
.cookie-banner button.reject-btn {
  background: #53623d;
  color: #b7ec6c;
}
.cookie-banner button.reject-btn:hover {
  background: #28311d;
  color: #fff500;
}
.cookie-banner button.cookie-settings-btn {
  background: #23251a;
  color: #b7ec6c;
  border: 1.5px solid #b7ec6c;
}
.cookie-banner button.cookie-settings-btn:hover {
  background: #24271c;
  color: #fff500;
}
.cookie-banner button:hover {
  filter: brightness(1.12) drop-shadow(0 2px 4px #b7ec6c24);
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 6px 19px 6px;
    gap: 11px;
  }
  .cookie-banner .cookie-actions {
    gap: 7px;
    width: 100%;
  }
}

/* Cookie Preferences Modal */
.cookie-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 4000;
  background: rgba(24,26,27, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transition: opacity .22s;
}
.cookie-modal.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.cookie-modal-content {
  background: #23251a;
  color: #b7ec6c;
  max-width: 90vw;
  min-width: 285px;
  width: 370px;
  padding: 40px 28px 22px 28px;
  border-radius: 18px;
  box-shadow: 0 8px 48px #b7ec6c22;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-modal-content h2 {
  font-size: 1.23rem;
  margin-bottom: 14px;
  color: #fff;
}
.cookie-modal-content .category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 17px;
}
.cookie-modal-content label {
  font-size: 1.01rem;
  font-weight: 500;
  color: #b7ec6c;
}
.cookie-modal-content .toggle {
  margin-left: auto;
}
.cookie-modal-content .toggle input[type="checkbox"] {
  appearance: none;
  width: 38px;
  height: 20px;
  background: #363b24;
  border: 1.5px solid #b7ec6c;
  border-radius: 11px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.15s, border 0.17s;
}
.cookie-modal-content .toggle input[type="checkbox"]:checked {
  background: linear-gradient(90deg, #b7ec6c 26%, #839074 100%);
}
.cookie-modal-content .toggle input[type="checkbox"]:before {
  content: '';
  display: block;
  height: 16px;
  width: 16px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 1.7px; left: 2.5px;
  transition: left .15s cubic-bezier(.76,.1,.5,1), background .12s;
}
.cookie-modal-content .toggle input[type="checkbox"]:checked:before {
  background: #3C2E1A;
  left: 18.5px;
}
.cookie-modal-content .category.category-essential label {
  color: #fff;
  font-weight: 700;
}
.cookie-modal-content .category.category-essential .toggle input[type="checkbox"] {
  opacity: 0.45;
  pointer-events: none;
}
.cookie-modal-content .modal-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}
.cookie-modal-content button {
  padding: 8px 18px;
  border-radius: 7px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  background: linear-gradient(90deg,#b7ec6c 0%,#556244 120%);
  color: #23251a;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 3px;
  transition: background .18s, color .19s;
}
.cookie-modal-content button:hover {
  background: linear-gradient(90deg,#fff500 0%,#b7ec6c 120%);
  color: #23251a;
}
.cookie-modal-content .close-modal {
  position: absolute;
  right: 16px;
  top: 16px;
  background: none;
  color: #b7ec6c;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 3px 5px;
  border-radius: 6px;
  transition: background .17s;
}
.cookie-modal-content .close-modal:hover {
  background: #556244;
  color: #fff500;
}

@media (max-width: 430px) {
  .cookie-modal-content {
    min-width: 96vw;
    width: 97vw;
    padding: 23px 5vw 19px 5vw;
  }
}

/*==============================*/
/* MICROINTERACTIONS             */
/*==============================*/
button:active, .cta-btn:active, a.cta-btn:active {
  transform: scale(0.96);
  filter: brightness(0.97);
}

/* Neon accent highlights */
.cta-btn::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 18px;
  right: 18px;
  height: 4px;
  background: radial-gradient(circle,#b7ec6c 70%,transparent 95%);
  border-radius: 8px;
  transition: opacity .18s, filter .19s;
  opacity: 0.7;
  z-index: 0;
  pointer-events: none;
}
.cta-btn:hover::after, .cta-btn:focus::after {
  opacity: 1;
  filter: brightness(1.12) blur(1px);
}

/* Decorative line for cards/sections on large screens for "tech_futuristic" flair */
@media (min-width: 900px) {
  .section:not(.section-intro) {
    background: linear-gradient(108deg,rgba(131,144,116,.12) 7%,rgba(183,236,108,.08) 105%);
    box-shadow: 0 6px 32px 0 #b7ec6c13;
    position: relative;
    overflow: visible;
  }
  .section:not(.section-intro)::before {
    content: '';
    display: block;
    position: absolute;
    left: 20px; top: 20px;
    width: 44px;
    height: 3px;
    background:linear-gradient(90deg,#b7ec6c 10%,#839074 80%);
    border-radius: 2px;
    box-shadow:0 1px 7px #b7ec6c22; 
    z-index: 1;
  }
}

/*==============================*/
/* ACCESSIBILITY IMPROVEMENTS    */
/*==============================*/
:focus {
  outline: 2px solid #b7ec6c;
  outline-offset: 2px;
}
::-webkit-selection {
  background: #b7ec6c33;
}
::selection {
  background: #b7ec6c33;
}

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