/* --------------------------------------------------
   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,
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; }
*, *:before, *:after { box-sizing: inherit; }
body {
  background: #F6F6F6;
  color: #262626;
  min-height: 100vh;
  font-family: 'Roboto', Times New Roman, Times, serif;
  font-size: 16px;
  line-height: 1.7;
  font-smooth: always;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
a { text-decoration: none; color: inherit; outline: none; transition: color 0.20s; }
button, input, select, textarea {
  font-family: inherit;
  background: none;
  border: none;
  outline: none;
  color: inherit;
}
:focus-visible {
  outline: 2px dashed #184F28;
  outline-offset: 2px;
}

/* --------------------------------------------------
   ELEGANT CLASSIC TYPOGRAPHY
-------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Georgia, 'Times New Roman', Times, serif;
  font-weight: 700;
  color: #184F28;
  letter-spacing: 0.01em;
}
h1 {font-size: 2.7rem; margin-bottom: 18px; line-height: 1.13;}
h2 {font-size: 2rem; margin-bottom: 14px; line-height: 1.18;}
h3 {font-size: 1.35rem; margin-bottom: 10px; line-height: 1.22;}
h4, h5, h6 {font-size: 1.1rem;}
p, li, ul, ol {
  font-family: 'Roboto', Times New Roman, Times, serif;
  color: #2e2e2e;
  margin-bottom: 14px;
  font-size: 1rem;
}
strong, b {
  font-weight: 700;
  color: #184F28;
}

/* --------------------------------------------------
   LAYOUT UTILITIES
-------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 22px;
  padding-right: 22px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(24, 79, 40, 0.05), 0 1px 1.5px rgba(0,0,0,0.03);
  transition: box-shadow .24s;
}

/* --------------------------------------------------
   HEADER, LOGO & MAIN NAVIGATION
-------------------------------------------------- */
header {
  background: #fff;
  box-shadow: 0 3px 18px rgba(24,79,40,0.06);
  padding: 0;
  position: relative;
  z-index: 100;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  min-height: 78px;
  gap: 0;
}
.logo img {
  height: 38px;
  width: auto;
  margin-right: 8px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  font-family: 'Montserrat', Times New Roman, Times, serif;
  font-weight: 500;
  font-size: 1rem;
}
.main-nav a {
  color: #184F28;
  padding: 2px 5px;
  border-radius: 3px;
  transition: color 0.15s, background 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #FFA600;
  background: #184F28;
  color: #fff;
}
.cta-btn {
  font-family: 'Montserrat', Times New Roman, Times, serif;
  font-size: 1.07rem;
  font-weight: 600;
  background: #FFA600;
  color: #184F28;
  padding: 10px 22px;
  border-radius: 23px;
  margin-left: 26px;
  letter-spacing: .02em;
  box-shadow: 0 2px 10px rgba(24,79,40,0.05);
  transition: background 0.2s, color 0.17s, box-shadow 0.18s, transform .14s;
  border: 2px solid #FFA600;
}
.cta-btn:hover, .cta-btn:focus {
  background: #184F28;
  color: #fff;
  border-color: #184F28;
  transform: translateY(-1.5px) scale(1.045);
  box-shadow: 0 0 0 3px #FFA60022;
}

/* --------------------------------------------------
   MOBILE NAVIGATION
-------------------------------------------------- */
.mobile-menu-toggle {
  display: none;
  background: #ffa600;
  border-radius: 8px;
  border: none;
  font-size: 2.1rem;
  color: #184F28;
  padding: 6px 16px;
  margin-left: 28px;
  cursor: pointer;
  transition: background .15s, color .16s, box-shadow .14s;
  z-index: 200;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #184F28;
  color: #fff;
  box-shadow: 0 0 0 3px #FFA60033;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  background: #fff;
  z-index: 2500;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 0;
  width: 100vw;
  height: 100vh;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.84,0,.23,1);
  box-shadow: -4px 0 32px rgba(24,79,40,0.13);
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  margin: 20px 20px 0 0;
  align-self: flex-end;
  background: transparent;
  color: #184F28;
  font-size: 2.5rem;
  padding: 2px 11px;
  border: none;
  cursor: pointer;
  border-radius: 7px;
  transition: background .13s, color .15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #FFA60011;
  color: #FFA600;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  width: 100%;
  margin: 15px 0 0 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', serif;
  font-size: 1.28rem;
  color: #184F28;
  padding: 11px 0 8px 0;
  border-bottom: 1.5px solid #F6F6F6;
  width: 80vw;
  max-width: 420px;
  transition: color .16s;
  border-radius: 2px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #FFA600;
  background: #184F28;
  color: #fff;
}

@media (max-width: 1024px) {
  .main-nav, .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1025px) {
  .mobile-menu { display: none !important; }
}

/* --------------------------------------------------
   HERO SECTIONS
-------------------------------------------------- */
.hero {
  background: #F6F6F6;
  padding: 0px 0 22px 0;
  margin-bottom: 24px;
  border-radius: 0 0 20px 20px;
}
.hero .container {
  min-height: 270px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0;
}
.hero .content-wrapper {
  max-width: 660px;
  text-align: center;
  margin: 0 auto;
  align-items: center;
}
.hero h1 {
  color: #184F28;
  font-size: 2.6rem;
  margin-bottom: 13px;
  font-family: 'Montserrat', Times New Roman, Times, serif;
}
.hero p {
  font-size: 1.12rem;
  color: #333;
  margin-bottom: 23px;
}
.hero .cta-btn {
  margin: 0 auto;
  font-size: 1.13rem;
}

@media (max-width: 768px) {
  .hero .content-wrapper{ padding: 0 10px; }
  .hero h1 {font-size: 2.03rem;}
  .hero p {font-size: 1.04rem;}
}

/* --------------------------------------------------
   FLEXBOX PATTERNS (MANDATORY & UTILITY)
-------------------------------------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(24,79,40, 0.06);
  padding: 32px 30px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow .21s, transform .18s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 38px rgba(24,79,40,0.12);
  transform: translateY(-2.5px) scale(1.024);
  z-index: 11;
}
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

.testimonial-card {
  background: #fff;
  border-left: 6px solid #FFA600;
  border-radius: 16px;
  box-shadow: 0 1px 9px rgba(24,79,40,0.08);
  margin-bottom: 24px;
  padding: 20px 30px 15px 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  transition: box-shadow .19s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 6px 34px rgba(24,79,40,0.13);
}
.testimonial-card p {
  color: #1d2321;
  font-size: 1.08rem;
  font-style: italic;
  line-height: 1.55;
  margin-bottom: 3px;
}
.testimonial-meta {
  font-size: .95rem;
  color: #184F28;
  font-family: 'Montserrat', Times New Roman, serif;
  display: flex;
  flex-direction: row;
  gap: 17px;
  align-items: center;
}

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

/* --------------------------------------------------
   FEATURES GRID, SERVICES LISTS, VALUES, PRODUCTS
-------------------------------------------------- */
.feature-grid, .values-grid, .product-list, .services-list, .service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
  margin: 18px 0 0 0;
}
.feature-grid li, .product-list li, .services-list li, .values-grid li, .service-grid li {
  flex: 1 1 250px;
  min-width: 200px;
  max-width: 340px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1px 8px rgba(24,79,40,0.06);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px 20px 18px;
  gap: 10px;
  margin-bottom: 20px;
  transition: box-shadow .18s, transform .16s;
}
.feature-grid li:hover, .product-list li:hover, .services-list li:hover, .service-grid li:hover{
  box-shadow: 0 5px 18px rgba(24,79,40,0.09);
  transform: translateY(-2.5px) scale(1.023);
  z-index: 7;
}
.feature-grid img, .product-list img, .services-list img, .service-grid img, .values-grid img {
  width: 46px;
  height: 46px;
  margin-bottom: 7px;
}
.feature-grid h3, .product-list h3, .services-list h3, .service-grid h3 {
  font-size: 1.18rem;
  color: #184F28;
  margin-bottom: 4px;
}

.key-features, .eco-facts, .unique-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 29px;
  justify-content: flex-start;
  margin: 14px 0 7px 0;
}
.key-features li, .eco-facts li, .unique-benefits li {
  background: #F6F6F6;
  color: #184F28;
  padding: 9px 15px;
  border-radius: 10px;
  font-family: 'Roboto', Times New Roman, serif;
  font-size: .97rem;
  font-weight: 500;
}

/* --------------------------------------------------
   PROCESS & TIMELINE
-------------------------------------------------- */
.step-timeline{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 19px;
  margin-bottom: 21px;
  list-style-type: none;
  counter-reset: timeline-counter;
}
.step-timeline li {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 1px 7px rgba(24,79,40,0.06);
  padding: 10px 23px;
  font-size: 1rem;
  position: relative;
  counter-increment: timeline-counter;
}
.step-timeline li img {
  width: 23px;
  height: 23px;
  margin: 0;
}

@media (max-width: 900px){
  .feature-grid, .product-list, .services-list, .service-grid, .values-grid, .content-grid, .key-features, .eco-facts, .unique-benefits, .step-timeline {
    gap: 17px;
  }
}
@media (max-width: 700px){
  .feature-grid, .product-list, .services-list, .service-grid, .values-grid, .content-grid, .key-features, .eco-facts, .unique-benefits, .step-timeline {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
}

/* --------------------------------------------------
   TABLE (Vergleich)
-------------------------------------------------- */
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  font-family: 'Roboto', serif;
  font-size: .98rem;
  border-radius: 13px;
  box-shadow: 0 1px 7px rgba(24,79,40,0.04);
  overflow: hidden;
  margin-bottom: 24px;
}
thead th {
  background: #184F28;
  color: #fff;
  padding: 13px 10px;
  text-align: left;
  font-size: 1.01rem;
  font-weight: bold;
}
tbody td {
  padding: 13px 10px;
  border-top: 1px solid #E9E9E9;
  color: #26362F;
  background: #F8F8F8;
}
tbody tr:nth-child(odd) td {
  background: #fff;
}

/* --------------------------------------------------
   SECTIONS, ABOUT, VALUES, CASE STUDIES
-------------------------------------------------- */
.about, .values, .case-studies, .comparison, .privacy-policy, .gdpr-info, .cookie-policy, .terms-of-use, .info, .faq, .contact, .thank-you {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(24, 79, 40, 0.05);
}

@media (max-width: 600px) {
  .section,.about,.values,.case-studies,.comparison,.privacy-policy,.gdpr-info,.cookie-policy,.terms-of-use,.info,.faq,.contact,.thank-you {
    padding: 25px 10px;
  }
}

/* --------------------------------------------------
   CTA SECTIONS
-------------------------------------------------- */
.cta {
  background: #FFA600;
  padding: 44px 0;
  border-radius: 18px;
  margin-bottom: 60px;
}
.cta .content-wrapper{
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #184F28;
}
.cta h2 {
  color: #184F28;
  margin-bottom: 13px;
}
.cta p {
  color: #2b3c33;
  font-size: 1.07rem;
  margin-bottom: 20px;
}
.cta .cta-btn {
  background: #184F28;
  color: #FFA600;
  border: 2px solid #184F28;
  margin: 0 auto;
}
.cta .cta-btn:hover, .cta .cta-btn:focus {
  background: #fff;
  color: #184F28;
  border-color: #FFA600;
}

/* --------------------------------------------------
   FOOTER
-------------------------------------------------- */
footer {
  background: #184F28;
  color: #fff;
  margin-top: 64px;
  padding-top: 34px;
  position: relative;
  box-shadow: 0 -6px 32px rgba(24,79,40,.08);
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 42px;
  padding-bottom: 11px;
}
.footer-logo img {
  height: 40px;
  width: auto;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: #fff;
  opacity: 0.9;
  font-family: 'Montserrat', serif;
  font-size: 1.06rem;
  transition: color .14s, opacity .11s;
  margin-bottom: 2px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #FFA600;
  opacity: 1;
}
.footer-contact p {
  font-size: .99rem;
  color: #fff;
  opacity: 0.88;
  margin: 0;
  font-family: 'Roboto', Times New Roman, serif;
  line-height: 1.62;
}
.footer-contact img {
  display: inline-block;
  height: 17px; width: 17px;
  margin-right: 7px;
  margin-bottom: -3px;
}
.footer-bottom {
  background: transparent;
  color: #F7E9C5;
  text-align: center;
  font-size: .93rem;
  padding: 11px 0 23px 0;
}
@media (max-width:780px){
  footer .container { flex-direction: column; gap:25px; align-items: flex-start;}
}

/* --------------------------------------------------
   FAQ/INFO-LIST STYLES
-------------------------------------------------- */
.faq ul, .contact ul, .info ul, .case-studies ul {
  margin-top: 10px;
  margin-left: 0;
  margin-bottom: 9px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq li, .contact li, .info li, .case-studies li {
  background: #F6F6F6;
  color: #2e2e2e;
  border-radius: 9px;
  padding: 10px 19px;
  font-size: 1.01rem;
  box-shadow: 0 1px 7px rgba(24,79,40,0.04);
}

/* --------------------------------------------------
   RESPONSIVE DESIGN
-------------------------------------------------- */
@media (max-width: 768px){
  .container {padding-left: 10px; padding-right: 10px; }
  .footer-bottom {font-size: .92rem;}
  .footer-contact p {font-size: .95rem;}
  .main-nav {gap: 12px; font-size: .98rem;}
  .cta-btn {font-size: 1rem;padding:8px 14px;margin-left:14px;}
}

/* --------------------------------------------------
   COOKIE CONSENT BANNER + MODAL
-------------------------------------------------- */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fff;
  border-top: 2.5px solid #FFA600;
  box-shadow: 0 -2px 16px rgba(24,79,40,0.11);
  z-index: 9000;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  min-height: 70px;
  font-family: 'Roboto', Times New Roman, serif;
  gap: 17px;
  animation: slideUpCC 0.52s cubic-bezier(.85,0,.23,1);
}
@keyframes slideUpCC {
  0% {transform: translateY(100%) scaleY(0.97); opacity: 0;}
  100% {transform: none; opacity: 1;}
}
.cookie-consent-banner p {
  color: #184F28;
  font-size: 1.02rem;
  margin-bottom: 0;
}
.cookie-consent-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 13px;
}
.cookie-btn {
  background: #184F28;
  color: #FFA600;
  font-family: 'Montserrat', Times New Roman, Times, serif;
  font-size: .97rem;
  border-radius: 17px;
  border: none;
  padding: 8px 20px;
  margin: 0 2px;
  cursor: pointer;
  font-weight: 600;
  transition: background .15s, color .13s, box-shadow .12s;
}
.cookie-btn.accept {
  background: #FFA600;
  color: #184F28;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #184F28;
  color: #FFA600;
}
.cookie-btn.settings {
  background: #fff;
  color: #184F28;
  border: 1.5px solid #FFA600;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #FFA600;
  color: #fff;
}
.cookie-btn.reject {
  background: #F6F6F6;
  color: #184F28;
  border: 1.5px solid #184F28;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {background: #184F28; color: #fff;}
@media (max-width: 700px){.cookie-consent-banner{flex-direction:column;gap:15px;align-items:flex-start;}}

.cookie-modal-bg {
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: #183F2820;
  display: none;
  pointer-events: none;
}
.cookie-modal-bg.active {
  display: block;
  pointer-events: auto;
}
.cookie-modal {
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%, -60%);
  min-width: 320px;
  max-width: 96vw;
  width: 420px;
  background: #fff;
  box-shadow: 0 11px 46px rgba(24,79,40,0.13), 0 1px 5.5px #184f2860;
  border-radius: 16px;
  z-index: 10000;
  padding: 32px 24px 24px 27px;
  display: none;
  animation: modalIn .45s cubic-bezier(.82,0,.19,1);
}
@keyframes modalIn {
  0%{opacity:0;transform:translate(-50%,-96%) scale(.95);}
  100%{opacity:1;transform:translate(-50%,-60%) scale(1);}
}
.cookie-modal.active {
  display: block;
}
.cookie-modal .modal-close {
  position: absolute; right: 12px; top: 12px;
  background: transparent;
  color: #184F28;
  font-size: 2.1rem;
  border: none;
  cursor: pointer;
  border-radius: 7px;
  transition: background .13s, color .15s;
  padding: 2px 11px;
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus { background: #FFA60011; color: #FFA600; }
.cookie-modal h3 {
  font-size: 1.21rem;
  color: #184F28;
  margin-bottom: 13px;
  margin-top: 0;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 19px;
}
.cookie-category {
  background: #F6F6F6;
  border-radius: 8px;
  padding: 12px 14px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  font-size: .97rem;
}
.cookie-category label {
  font-weight: 500;
  color: #184F28;
}
.cookie-toggle {
  width: 42px; height: 22px;
  border-radius: 15px;
  background: #E3E3E3;
  border: 1.5px solid #184F28;
  position: relative;
  cursor: pointer;
  transition: background .14s;
  margin-left: 11px;
  display: inline-block;
  vertical-align: middle;
}
.cookie-toggle input {display:none;}
.cookie-toggle::after {
  content: '';
  width: 18px; height: 18px;
  position: absolute;
  left: 2px; top: 1.6px;
  border-radius: 50%;
  background: #FFA600;
  transition: left .12s;
}
.cookie-toggle input:checked + .slider {
  background: #184F28;
}
.cookie-toggle input:checked + .slider::after {
  left: 22px;
  background: #184F28;
}
.modal-footer {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 15px;
}

/* --------------------------------------------------
   MICRO-INTERACTIONS & HOVER EFFECTS
-------------------------------------------------- */
a, button, .card, .feature-grid li, .product-list li, .cta-btn, .footer-nav a, .cookie-btn, .mobile-nav a, .main-nav a {
  transition: background 0.16s, color 0.16s, box-shadow 0.14s, transform 0.12s;
}

/* --------------------------------------------------
   ELEGANT SPACING & CLASSIC PROPORTIONS
-------------------------------------------------- */
.section:not(:last-child), .about:not(:last-child), .faq:not(:last-child), .cta:not(:last-child) {
  margin-bottom: 60px;
}
.content-wrapper > *:not(:last-child) {
  margin-bottom: 10px;
}

/* --------------------------------------------------
   GENERAL RESPONSIVE ADJUSTMENTS
-------------------------------------------------- */
@media (max-width: 1120px){
  .container {max-width: 97vw;}
}
@media (max-width: 900px){
  .container {max-width: 100vw;}
  .footer-logo img{height: 30px;}
  .footer-contact p {font-size: .91rem;}
}
@media (max-width: 500px){
  .footer-logo img{height: 25px;}
}

/* Hide cookie banner if accepted (class should be toggled in JS) */
.cookie-consent-banner.hide { display: none !important; }
.cookie-modal-bg.hide { display: none !important; }

/* --------------------------------------------------
   PRINT & ACCESSIBILITY
-------------------------------------------------- */
@media print { body, html {background: #fff !important; color: #111 !important;}}
