/* ========================================================
   ImbanTibia Reinigung – Modern Bold UI Style CSS
   By Senior CSS Developer
   ======================================================== */

/* ==== 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 {box-sizing: border-box;scroll-behavior: smooth;}
*, *:before, *:after {box-sizing: inherit;}

body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  background: #fff;
  color: #121212;
  font-size: 16px;
  line-height: 1.7;
}

img {max-width: 100%; height: auto; display: block;}
ul, ol {list-style: none;}
a {color: inherit; text-decoration: none; transition: color 0.2s;}
strong, b {font-weight: bold;}

/* ==== Typography ==== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  letter-spacing: -0.5px;
  line-height: 1.21;
  color: #21618C;
}
h1 {font-size: 2.75rem; margin-bottom: 24px;}
h2 {font-size: 2rem; margin-bottom: 20px;}
h3 {font-size: 1.325rem; margin-bottom: 14px;}
h4 {font-size: 1.05rem;}
p {margin-bottom: 18px;}
ul li, ol li {
  font-size: 1rem;
  margin-bottom: 10px;
}

@media (max-width: 992px) {
  h1 {font-size: 2.1rem;}
  h2 {font-size: 1.4rem;}
  h3 {font-size: 1.1rem;}
}
@media (max-width: 768px) {
  h1 {font-size: 1.4rem;}
  h2 {font-size: 1.1rem;}
  h3 {font-size: 1rem;}
  p, ul li, ol li {font-size: 0.99rem;}
}

/* ==== Brand Colors ==== */
:root {
  --color-primary: #21618C;
  --color-secondary: #ffffff;
  --color-accent: #45B39D;
  --color-accent-dark: #178060;
  --color-background: #ffffff;
  --color-background-light: #f6fafd;
  --color-neutral: #f2f2f2;
  --color-body: #202124;
  --color-muted: #65687a;
  --color-error: #E74C3C;
  --shadow-main: 0 4px 16px 0 rgba(33,97,140,0.08), 0 1.5px 8px 0 rgba(31,37,42,0.045);
}

/* ==== Layout Container ==== */
.container {
  width: 100%;
  max-width: 1216px;
  margin-right: auto;
  margin-left: auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* ========================================================
   HEADER & NAVIGATION
======================================================== */
header {
  background: var(--color-background);
  box-shadow: 0 2px 12px 0 rgba(33,97,140,0.056), 0 1px 2px 0 rgba(33,97,140,0.016);
  position: sticky;
  top: 0;
  z-index: 1001;
}
header .container {
  min-height: 78px;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  min-width: 120px;
  padding: 10px 0;
}

/* Main Nav */
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-primary);
  padding: 6px 0;
  position: relative;
}
.main-nav a:after {
  content: '';
  display: block;
  height: 2.5px;
  width: 0;
  background: var(--color-accent);
  border-radius: 2px;
  transition: width 0.28s;
  position: absolute;
  left: 0;
  bottom: -3px;
}
.main-nav a:hover:after, .main-nav a:focus:after {
  width: 100%;
}

.button.primary {
  background: var(--color-primary);
  color: var(--color-secondary);
  border-radius: 11px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  padding: 14px 32px;
  margin-left: 8px;
  border: none;
  transition: background 0.21s, box-shadow 0.21s, color 0.12s;
  box-shadow: 0 4px 16px 0 rgba(33,97,140,0.09);
  cursor: pointer;
  display: inline-block;
  position: relative;
}
.button {
  background: var(--color-accent);
  color: var(--color-secondary);
  border-radius: 11px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.03rem;
  font-weight: 600;
  padding: 12px 26px;
  border: none;
  transition: background 0.19s, box-shadow 0.18s, color 0.11s;
  box-shadow: 0 2px 8px 0 rgba(33,97,140,0.05);
  cursor: pointer;
  display: inline-block;
  position: relative;
}
.button.primary:hover, .button.primary:focus {
  background: var(--color-accent-dark);
  color: #fff;
  box-shadow: 0 7px 24px 0 rgba(33,97,140,0.20);
}
.button:hover, .button:focus {
  background: #16a085;
  color: #fff;
  box-shadow: 0 6px 20px 0 rgba(39,174,96,0.09);
}

/* Hamburger burger button */
.mobile-menu-toggle {
  display: none;
  background: var(--color-accent);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.7rem;
  align-items: center;
  justify-content: center;
  margin-left: 12px;
  transition: background 0.2s box-shadow 0.18s;
  z-index: 1101;
  cursor: pointer;
}
.mobile-menu-toggle:hover{
  background: var(--color-accent-dark);
  box-shadow: 0 3px 16px 0 rgba(39,174,96,0.13);
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(33,97,140, 0.97);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.64,.22,.19,.86);
  box-shadow: 0 10px 40px 0 rgba(33,97,140,0.21);
  padding: 0 0;
  width: 100vw;
  height: 100vh;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  margin-top: 28px;
  margin-left: 24px;
  background: none;
  color: #fff;
  font-size: 2.2rem;
  border: none;
  cursor: pointer;
  padding: 8px 15px;
  border-radius: 50%;
  align-self: flex-start;
  transition: background 0.18s;
}
.mobile-menu-close:hover {
  background: rgba(39,174,96,0.11);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 40px;
  margin-left: 40px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  padding: 10px 0 10px 8px;
  border-radius: 6px;
  transition: background .18s, color .16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-accent);
  color: #fff;
}

@media (max-width: 1000px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: flex; }
  .button.primary {margin-left: 0;}
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    gap: 8px;
  }
}

/* ========================================================
   HERO SECTION
========================================================= */
.hero {
  padding: 54px 0 56px 0;
  background: linear-gradient(96deg, #fafdff 0%, #eafeff 77%, #eafaf6 100%);
  min-height: 340px;
  display: flex;
  align-items: center;
  position: relative;
}
.hero .container {
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.hero h1 {
  color: var(--color-primary);
  font-size: 2.5rem;
  margin-bottom: 13px;
  font-weight: 800;
  letter-spacing: -1px;
}
.hero p {
  font-size: 1.25rem;
  margin-bottom: 18px;
  color: #2e3947;
  max-width: 600px;
}
.hero .button.primary {
  margin-top: 16px;
  font-size: 1.08rem;
}
@media (max-width: 900px){
  .hero {
    padding: 38px 0 42px 0;
    min-height: 230px;
  }
  .hero h1 {font-size: 1.45rem;}
  .hero p {font-size: 1.05rem;}
}
@media (max-width: 600px){
  .hero {
    padding: 24px 0 24px 0;
    min-height: 80px;
  }
  .hero .container {
    padding: 0 10px;
  }
}

/* =======================================================
   MAIN SECTIONS, FEATURES AND FLEX LAYOUTS
======================================================== */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
section:not(.hero) .container {
  justify-content: center;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}

/* Utility flex containers */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  box-shadow: var(--shadow-main);
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  min-width: 270px;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.24s, transform 0.16s;
}
.card:hover {
  box-shadow: 0 12px 32px 0 rgba(33,97,140,0.17);
  transform: translateY(-3px) scale(1.027);
}

.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;
  background: #fafdff;
  border-radius: 13px;
  margin-bottom: 20px;
  box-shadow: 0 4px 14px 0 rgba(33,97,140,0.07);
  font-size: 1.09rem;
  position: relative;
  flex-direction: column;
  color: #1d1d1d;
}
.testimonial-card blockquote {
  color: #21618C;
  font-weight: 600;
  font-size: 1.04rem;
  margin-bottom: 13px;
  line-height: 1.5;
  font-family: 'Montserrat',Arial,sans-serif;
  position: relative;
}
.testimonial-card blockquote:before {
  content: '“';
  color: var(--color-accent);
  font-size: 2rem;
  font-family: 'Montserrat',Arial,sans-serif;
  margin-right: 3px;
}
.testimonial-card span {
  color: #435b69;
  font-weight: 500;
}

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

/* Feature grid on home/services (4 columns row) */
.feature-grid,
.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  justify-content: space-between;
}
.feature-grid > div,
.service-grid > div {
  background: #fff;
  border-radius: 18px;
  padding: 28px 22px 22px 22px;
  box-shadow: var(--shadow-main);
  flex: 1 0 200px;
  min-width: 240px;
  max-width: 250px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: box-shadow 0.2s, transform 0.15s;
}
.feature-grid > div:hover, .service-grid > div:hover {
  box-shadow: 0 7px 23px 0 rgba(39,174,96,0.08);
  transform: translateY(-4px) scale(1.025);
  cursor: pointer;
}
.feature-grid img, .service-grid img, ul img {width: 36px; height: 36px; margin-bottom: 10px;}

@media (max-width: 1000px) {
  .feature-grid, .service-grid {gap: 20px;}
  .feature-grid > div, .service-grid > div {
    max-width: calc(50% - 13px);
    min-width: 180px;
  }
}
@media (max-width: 768px) {
  .feature-grid, .service-grid {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .feature-grid > div, .service-grid > div {
    max-width: 100%;
    min-width: 120px;
    padding: 20px 12px;
  }
}

/* ===== Pricing table for Preise ===== */
.pricing-table {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 30px;
}
.pricing-table > div {
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow-main);
  padding: 30px 22px 22px 22px;
  flex: 1 0 230px;
  min-width: 220px;
  max-width: 310px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 20px;
  border: 3px solid var(--color-accent);
  transition: box-shadow 0.18s, border-color 0.17s, transform 0.13s;
}
.pricing-table > div:hover {
  border-color: var(--color-primary);
  box-shadow: 0 8px 28px 0 rgba(33,97,140,0.16);
  transform: translateY(-2px) scale(1.017);
}
.pricing-table h3 {
  color: var(--color-accent-dark);
  font-family: 'Montserrat',Arial,sans-serif;
  font-size: 1.31rem;
  margin-bottom:7px;
}
.pricing-table ul {
  margin-left: 6px;
}
.pricing-table li {
  font-size: 1rem;
  color: #315067;
}

@media (max-width:900px){
  .pricing-table {gap: 15px;}
  .pricing-table > div {max-width: 100%; padding: 17px 10px;}
}
@media (max-width: 700px){
  .pricing-table {flex-direction: column;}
  .pricing-table > div {max-width: 100%;}
}

.feature-comparison ul {
  margin-top: 3px;
  font-size: 1.04rem;
  margin-bottom: 8px;
}
.feature-comparison li {
  margin-bottom: 7px;
  color: #285067;
}

/* =========== FAQ Accordion ========== */
.faq-accordion{
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-accordion h3 {
  background: #fafdff;
  padding: 13px 18px;
  border-radius: 8px 8px 0 0;
  cursor: pointer;
  margin-bottom: 0;
  color: var(--color-primary);
}
.faq-accordion p {
  background: #fcffff;
  padding: 13px 18px;
  border-radius: 0 0 8px 8px;
  color: #2e393f;
}

/* ==== Contact Info, Cards, etc. ==== */
.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 20px;
}
.contact-info p {
  font-size: 1rem;
  color: var(--color-body);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 5px;
}
ul img {vertical-align: middle; margin-right:6px;}

.contact-details {
  background: #fafdff;
  border-radius: 12px;
  box-shadow: 0 2px 8px 0 rgba(33,97,140,0.035);
  padding: 16px 14px;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.contact-details a {
  color: var(--color-accent-dark);
  font-weight: 600;
}

/* ========================================================
   FOOTER
======================================================== */
footer {
  background: #fafdff;
  border-top: 3px solid var(--color-accent);
  margin-top: 48px;
  font-size: 1rem;
}
footer .container {
  padding: 32px 20px 12px 20px;
  flex-direction: column;
  gap: 18px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 7px;
}
.footer-nav a {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  opacity: 0.85;
  transition: color 0.18s, opacity 0.15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--color-accent-dark);
  opacity: 1;
}
.footer-contact {
  color: #512;
  font-size: 0.97rem;
}

@media (max-width: 600px){
  .footer-nav {gap: 11px;}
  .footer-contact,
  .footer-nav {
    font-size: 0.93rem;
  }
}

/* ========================================================
   RESPONSIVE FLEXBOX LAYOUTS
======================================================== */
@media (max-width: 1023px) {
  .container {
    padding: 0 9px;
  }
  .content-grid {
    gap: 12px;
  }
}
@media (max-width: 768px) {
  section, .section {
    padding: 24px 4px;
    margin-bottom: 42px;
  }
  .content-wrapper {padding: 0;}
  .content-grid,.card-container,.feature-grid,.service-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: center;
    gap: 17px;
  }
}

/* ========================================================
   MISC. LISTS AND ELEMENTS
======================================================== */
ul, ol {
  padding-left: 22px;
  margin-bottom: 14px;
}
ul li::marker, ol li::marker {
  color: var(--color-accent-dark);
  font-weight: bold;
}
ul li, ol li {
  margin-bottom: 7px;
}
ul li:last-child, ol li:last-child {
  margin-bottom: 0;
}

ul img, ol img {
  margin-right: 4px;
}

hr {
  border: 0;
  border-top: 1px solid #e9edf0;
  margin: 1.4em 0;
}

/* ========================================================
   COOKIE CONSENT BANNER + MODAL
======================================================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  z-index: 5002;
  background: #fafdff;
  box-shadow: 0 -9px 38px 0 rgba(33,97,140,0.19);
  border-top: 4px solid var(--color-accent-dark);
  padding: 22px 18px 18px 18px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  animation: cookieBannerSlideIn 0.54s cubic-bezier(0.23,1,0.32,1) both;
}
.cookie-banner p {
  color: #2f2c28;
  font-size: 1.08rem;
  margin: 0;
  max-width: 600px;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-banner button, .cookie-banner .cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.04rem;
  font-weight: 700;
  border-radius: 7px;
  border: none;
  padding: 11px 22px;
  cursor: pointer;
  transition: background 0.16s,color 0.14s, box-shadow 0.13s;
  margin: 0 0 0 0;
  outline: none;
}
.cookie-banner .cookie-accept {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 2px 7px 0 rgba(33,97,140,0.066);
}
.cookie-banner .cookie-accept:hover{
  background: var(--color-accent-dark);
}
.cookie-banner .cookie-reject {
  background: #fff;
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
}
.cookie-banner .cookie-reject:hover{
  background: #fff;
  color: var(--color-accent-dark);
  border-color:var(--color-accent-dark);
}
.cookie-banner .cookie-settings {
  background: var(--color-accent);
  color: #fff;
}
.cookie-banner .cookie-settings:hover{
  background: var(--color-accent-dark);
}
@media (max-width: 700px){
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 13px;
    padding: 18px 8px 12px 8px;
  }
  .cookie-banner .cookie-buttons {
    flex-direction: column;
    gap: 10px;
  }
}

@keyframes cookieBannerSlideIn {
  from {transform: translateY(100%); opacity: 0;}
  to {transform: translateY(0); opacity: 1;}
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(33,97,140, 0.85);
  z-index: 5010;
  display: none;
  justify-content: center;
  align-items: center;
}
.cookie-modal.active { display: flex;}
.cookie-modal-inner {
  background: #fff;
  box-shadow: 0 14px 68px 0 rgba(39,174,96,0.17);
  border-radius: 18px;
  max-width: 420px; width: 100%;
  padding: 38px 32px 31px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal-inner h3 {
  color: var(--color-primary);
  font-size: 1.46rem;
  margin-bottom: 3px;
}
.cookie-modal-close {
  position: absolute;
  top: 13px; right: 14px;
  background: none;
  border: none;
  color: var(--color-error);
  font-size: 2.2rem;
  cursor: pointer;
  z-index: 10;
  transition: opacity 0.17s;
}
.cookie-modal-close:hover {opacity: 0.7;}

.cookie-modal .cookie-categories {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 11px;
}
.cookie-category label {
  font-weight: 600;
  font-size: 1.01rem;
  color: #15609f;
}
.cookie-category .cookie-toggle {
  width: 32px;
  height: 19px;
  border-radius: 16px;
  background: #e0e5e7;
  position: relative;
  margin-left: 7px;
  transition: background 0.14s;
}
.cookie-category .cookie-toggle[data-enabled="true"] {
  background: var(--color-accent);
}
.cookie-category .cookie-toggle:before {
  content: '';
  position: absolute;
  left: 2px; top: 2.5px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.18s;
}
.cookie-category .cookie-toggle[data-enabled="true"]:before {
  transform: translateX(13px);
}
.cookie-category .cookie-lock {
  font-size: 1.1em;
  color: var(--color-muted);
  margin-left: 7px;
  opacity: 0.76;
}
.cookie-modal-actions {
  margin-top: 14px;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}
.cookie-modal-actions button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 8px;
  border: none;
  padding: 10px 18px;
  cursor: pointer;
  background: var(--color-primary);
  color: #fff;
  transition: background 0.16s;
}
.cookie-modal-actions .cookie-cancel {
  background: #fff;
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
}
.cookie-modal-actions .cookie-cancel:hover {
  background: #fff;
  color: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
}
.cookie-modal-actions .cookie-save:hover {
  background: var(--color-accent-dark);
}

/* ========================================================
   MISCELLANEOUS UI (Microinteractions, Transitions...)
======================================================== */
.button, .button.primary, .mobile-menu-toggle,
input, select, textarea {
  transition: box-shadow 0.17s, background 0.16s, color 0.14s, border 0.16s, transform 0.15s;
}
a, .main-nav a, .button, .button.primary, .footer-nav a {
  transition: color 0.18s, background 0.17s;
}

.button:active, .button.primary:active {
  transform: scale(0.97);
}

::-webkit-input-placeholder {color: #b0bec5;}
::-moz-placeholder {color: #b0bec5;}
:-ms-input-placeholder {color: #b0bec5;}
::placeholder {color: #b0bec5;}

/* ========================================================
   GEOMETRIC/DECORATIVE ELEMENTS
======================================================== */
/* If you use geometric shapes or decorations, add their classes here. */

/* Example geometric background element: */
.hero::after {
  content: '';
  position: absolute;
  right: -32px;
  top: 15%;
  width: 94px;
  height: 94px;
  background: var(--color-accent);
  opacity: 0.13;
  border-radius: 34% 66% 70% 30% / 30% 35% 65% 70%;
  z-index: 0;
  filter: blur(3px);
  pointer-events: none;
}
@media (max-width:700px){.hero::after {display:none;}}

/* ========================================================
   ACCESSIBILITY
======================================================== */
:focus {
  outline: 2.5px solid var(--color-accent-dark);
  outline-offset: 2px;
}

/* ========================================================
   PRINT OPTIMIZATION
======================================================== */
@media print {
  header, .footer, .mobile-menu, .cookie-banner, .cookie-modal {display:none !important;}
  section, .section {padding: 0 !important; margin: 0 !important; background: #fff !important;}
}

/* ========================================================
   END CSS
======================================================== */
