/* ==========================================================
   Elegant Classic CSS for ImmoDataRidge – Brand Guidelines
   Mobile-first, flexbox-only, timeless/serif feel, muted colors
========================================================== */

/* Reset & Base ------------------------------------------- */
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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html { box-sizing: border-box; }
*,:before,:after { box-sizing: inherit; }
body, html { height: 100%; width: 100%; }
body {
  min-height: 100vh;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-size: 16px;
  color: #2e3336;
  background: #F5F7FA;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  letter-spacing: 0.01em;
  scroll-behavior: smooth;
}

/* Typography hierarchy ----------------------------------- */
h1, .h1 {
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-size: 2.5rem; /* 40px */
  line-height: 1.2;
  margin-bottom: 24px;
  color: #234674;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h2, .h2 {
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-size: 2rem; /* 32px */
  margin-bottom: 16px;
  color: #234674;
  font-weight: 700;
}
h3, .h3 {
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-size: 1.375rem; /* 22px */
  font-weight: 600;
  color: #234674;
  margin-bottom: 8px;
}
h4, .h4 {
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-size: 1.125rem; /* 18px */
  font-weight: 500;
  color: #29425E;
}
p, li, blockquote, label, input, select, textarea, small {
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-size: 1rem;
}
blockquote {
  font-size: 1.125rem;
  font-style: italic;
  line-height: 1.5;
  color: #234674;
}
figcaption {
  font-size: 0.9375rem;
  color: #666;
  margin-top: 8px;
  text-align: right;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
}

small, .legal, .newsletter small {
  font-size: 0.94rem;
  color: #878883;
}

strong, b {
  font-weight: 700;
}

/* Links */
a {
  color: #234674;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #56A47A;
  text-decoration: underline;
  outline: none;
}

/* Header & Nav ------------------------------------------- */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px 18px 24px;
  background: #fff;
  box-shadow: 0 2px 14px rgba(35,70,116,0.07);
  position: relative;
  z-index: 20;
}
.branding a {
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #234674;
  text-decoration: none;
  background: none;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-size: 1rem;
  color: #234674;
  padding: 7px 6px;
  border-radius: 5px;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #F5F7FA;
  color: #56A47A;
}
.cta-btn {
  display: inline-block;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-size: 1.06rem;
  font-weight: 600;
  color: #fff;
  background: #234674;
  border-radius: 32px;
  padding: 9px 27px;
  margin-left: 24px;
  border: none;
  box-shadow: 0 1px 4px rgba(51,97,150,0.06);
  transition: background 0.18s, color 0.2s, box-shadow 0.2s;
  cursor: pointer;
  letter-spacing: 0.03em;
}
.cta-btn:hover, .cta-btn:focus {
  background: #56A47A;
  color: #fff;
  box-shadow: 0 4px 16px rgba(56,96,129,0.13);
  text-decoration: none;
}

/* Mobile Burger Menu ------------------------------------- */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #234674;
  font-size: 2rem;
  cursor: pointer;
  margin-left: 20px;
  z-index: 41;
  transition: color 0.21s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  color: #56A47A;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 92vw;
  max-width: 340px;
  background: #fff;
  box-shadow: 0 8px 44px rgba(35,70,116,0.15);
  z-index: 3000;
  padding: 32px 24px 24px 20px;
  transform: translateX(-100%);
  transition: transform 0.28s cubic-bezier(0.8,0,0.2,1);
  will-change: transform;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: #222;
  font-size: 1.7rem;
  cursor: pointer;
  margin-bottom: 18px;
  margin-right: 0;
  transition: color 0.18s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: #56A47A;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  margin-top: 8px;
}
.mobile-nav a {
  font-size: 1.1rem;
  color: #234674;
  padding: 10px;
  border-radius: 6px;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  transition: background 0.2s, color 0.2s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: #F5F7FA;
  color: #56A47A;
}

/* Overlay (when menu open) */
body.menu-open::after {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(34,70,116,0.17);
  z-index: 2999;
}

/* Hide nav/show burger on mobile */
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .cta-btn {
    margin-left: 10px;
    padding: 10px 18px;
  }
}
@media (max-width: 768px) {
  header {
    flex-direction: row;
    padding: 12px 12px 10px 12px;
  }
  .branding a {
    font-size: 1.15rem;
  }
  .cta-btn {
    font-size: 1rem;
    padding: 7px 15px;
    margin-left: 8px;
  }
}

/* Section & Layout Patterns ----------------------------------- */
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px 40px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(100,108,142,0.07);
}
section:last-of-type { margin-bottom: 0; }
/* Classic content rhythm */
main {
  display: flex;
  flex-direction: column;
  gap: 45px;
  padding: 18px 0 32px 0;
  max-width: 980px;
  margin: 0 auto;
  width: 100%;
}
@media (max-width: 768px) {
  main { padding: 5px 0 14px 0; gap: 23px; }
  .section, section { margin-bottom: 38px; padding: 26px 8px 24px 8px; }
}

/* Card containers ----------------------------------------- */
.card-container, .services-cards, .feature-grid, .metrics, .pricing-table, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  justify-content: flex-start;
  margin-top: 14px;
}
.card, .service, .feature, .package, .metric, .testimonial-card {
  background: #fff;
  padding: 28px 22px 22px 22px;
  border-radius: 16px;
  margin-bottom: 20px;
  position: relative;
  box-shadow: 0 2px 16px rgba(63,91,119,0.09);
  min-width: 220px;
  flex: 1 1 220px;
  transition: box-shadow 0.21s, transform 0.19s;
}
.card:hover, .service:hover, .feature:hover, .package:hover, .testimonial-card:hover {
  box-shadow: 0 4px 32px rgba(35,70,116,0.12);
  transform: translateY(-2px) scale(1.012);
}
/* Prevent layout overlap/equalize */
@media (max-width: 900px) {
  .card-container, .services-cards, .feature-grid, .metrics, .pricing-table, .testimonial-list {
    gap: 18px;
    flex-direction: column;
    align-items: stretch;
  }
}

/* Testimonial card classic style */
figure,
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 28px 16px 22px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 2px 16px rgba(70, 90, 110, 0.06);
  margin-bottom: 24px;
  min-width: 0;
  border-left: 4px solid #56A47A;
  color: #222;
}
figure blockquote, .testimonial-card blockquote {
  color: #234674;
}

/* Content grid (general) ---------------------------------- */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
@media (max-width: 900px) {
  .content-grid { flex-direction: column; gap: 18px; }
}

/* Text-Image Section -------------------------------------- */
.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: 18px; }
}

/* Feature Item -------------------------------------------- */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 0.5em 0;
}

/* Spacing helpers */
.mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; }
.mb-1 { margin-bottom: 8px; } .mb-2 { margin-bottom: 16px; }

/* --- Individual Section Stylings (Homepage etc.) --------- */
.hero, .about-hero, .services-hero, .dashboard-hero, .contact-hero, .thank-you {
  background: #F5F7FA;
  border-radius: 18px;
  padding: 44px 24px 44px 24px;
  text-align: center;
  box-shadow: 0 2px 14px rgba(35,70,116,0.04);
  margin-bottom: 26px;
}
@media (max-width: 768px) {
  .hero, .about-hero, .services-hero, .dashboard-hero, .contact-hero, .thank-you {
    padding: 24px 4px 24px 4px;
    border-radius: 8px;
  }
}

/* Features grid & icons ----------------------------------- */
.features, .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 10px rgba(35,70,116,0.07);
  padding: 18px 16px 18px 16px;
  min-width: 170px;
}
.feature-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center; justify-content: center;
  margin-bottom: 10px;
}
.feature h3 { margin-bottom: 7px; font-size: 1.125rem; }

/* Services cards ------------------------------------------ */
.services-cards {
  gap: 20px;
  margin-top: 18px;
}
.service {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  min-width: 210px;
  border-left: 3px solid #234674;
}
.service .price {
  color: #56A47A;
  font-weight: bold;
  font-size: 1.04rem;
  margin: 8px 0;
}

/* Pricing Table / Packages -------------------------------- */
.pricing-table {
  gap: 24px;
  margin: 21px 0 18px 0;
}
.package {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 200px;
  gap: 8px;
  border-left: 3px solid #56A47A;
}
.package h2 { margin-bottom: 2px; }
.package strong {
  color: #234674;
  font-size: 1.35rem;
  margin: 8px 0 9px 0;
  font-family: 'Georgia', serif;
  font-weight: bolder;
}
.package span {
  color: #5A5A5A;
  font-size: 1rem;
  font-weight: normal;
}
.package ul { margin: 7px 0 0 0; padding-left: 16px; }
.package ul li { margin-bottom: 3px; }

/* FAQ & FAQ lists ------------------------------------------ */
.faq {
  background: #fffef6;
  border-radius: 13px;
  padding: 28px 18px;
  box-shadow: 0 1px 4px rgba(255,227,180,0.09);
}
.faq dl { margin-top: 10px; }
.faq dt {
  font-weight: 600;
  color: #234674;
  margin-top: 15px;
}
.faq dd {
  margin-bottom: 10px;
  margin-left: 0;
  color: #2e3336;
}

/* Values/metrics/statistics -------------------------------- */
.values-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 28px;
  padding-left: 0;
  margin-top: 9px;
  margin-bottom: 0;
  list-style: none;
}
.values-list li {
  display: flex;
  align-items: center;
  font-size: 1.085rem;
  color: #234674;
  background: none;
  padding: 10px 0 9px 0;
  gap: 12px;
}
.icon svg {
  margin-right: 2px;
}
.metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.metric {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 1px 7px rgba(86,164,122,0.08);
  padding: 18px 16px 19px 16px;
  min-width: 120px;
  font-family: 'Georgia', serif;
}
.metric strong {
  font-size: 1.5rem;
  color: #234674;
  margin-bottom: 5px;
  letter-spacing: 0.02em;
}
.metric span {
  color: #5A5A5A;
  font-size: 1rem;
}

.logo-cloud { margin-top: 23px; }

/* Marktanalyse dashboard visuals -------------------------- */
.live-charts {
  display: flex; align-items: center;
  gap: 18px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.market-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Georgia', serif;
  margin-bottom: 22px;
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 14px rgba(63,91,119,0.06);
  overflow: hidden;
}
.market-table caption {
  caption-side: top;
  font-weight: 600;
  color: #234674;
  margin-bottom: 10px;
  text-align: left;
}
.market-table th, .market-table td {
  padding: 11px 12px;
  border-bottom: 1px solid #ECECEC;
  text-align: left;
  font-size: 1rem;
  color: #2e3336;
}
.market-table th {
  background: #F5F7FA;
  font-weight: 700;
  color: #234674;
}
.market-table tr:last-child td {
  border-bottom: none;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 12px;
  font-family: 'Georgia', serif;
}
.filters label {
  margin-right: 4px;
}
.filters select {
  font-size: 1rem;
  padding: 5px 11px;
  border-radius: 6px;
  border: 1px solid #d2dbe4;
  background: #f8fafb;
  color: #234674;
  font-family: inherit;
  margin-right: 11px;
}

/* Embedded map (Kontakt) ------------------------------------ */
.embedded-map {
  width: 100%;
  margin: 20px 0 4px 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 16px rgba(35,70,116,0.09);
}

/* Newsletter block in footer ------------------------------- */
.newsletter {
  margin: 22px 0 13px 0;
  background: #F5F7FA;
  padding: 18px;
  border-radius: 12px;
  box-shadow: 0 1px 10px rgba(35,70,116,.07);
  max-width: 460px;
}
.newsletter form {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.newsletter label {
  color: #234674;
  margin-bottom: 3px;
  font-weight: 500;
  font-size: 1.03rem;
}
.newsletter input[type="email"] {
  border: 1px solid #bcd2df;
  background: #fff;
  border-radius: 8px;
  padding: 7px 11px;
  font-size: 1rem;
  font-family: 'Georgia', serif;
  width: 100%;
}
.newsletter input[type="email"]:focus {
  border-color: #56A47A;
  outline: none;
}
.newsletter button {
  background: #234674;
  color: #fff;
  padding: 7px 20px;
  border: none;
  border-radius: 32px;
  margin-top: 6px;
  font-family: 'Georgia', serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  opacity: 0.65;
  transition: background .17s, opacity .21s;
}
.newsletter button:enabled {
  opacity: 1;
}
.newsletter button:hover, .newsletter button:focus {
  background: #56A47A;
}

/* Footer -------------------------------------------------- */
footer {
  margin-top: 44px;
  background: #fff;
  padding: 38px 0 16px 0;
  border-top: 2px solid #F5F7FA;
  color: #444;
}
@media (max-width: 768px) {
  footer {
    padding: 14px 0 9px 0;
    margin-top: 19px;
  }
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 11px;
  font-size: 0.98rem;
}
.footer-links a {
  color: #234674;
  border-radius: 4px;
  padding: 7px 5px;
}
.footer-links a:hover, .footer-links a:focus {
  color: #56A47A;
  background: #F5F7FA;
}
.footer-contact {
  margin-bottom: 9px;
  font-size: 0.99rem;
  color: #677;
}
.legal {
  font-size: 0.93rem;
  color: #888;
  margin-top: 21px;
}

/* Utility: For list in contact details etc. ---------------- */
.contact-details ul {
  list-style: none;
  margin: 11px 0 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.contact-details li strong {
  color: #234674;
  font-weight: 600;
}
.contact-details a { color: #234674; }

/* Legal text page & static sections ----------------------- */
.legal-text {
  padding: 40px 21px 25px 21px;
  background: #fff;
  border-radius: 13px;
  margin-bottom: 36px;
  box-shadow: 0 1px 8px rgba(171,176,186,0.07);
}
.legal-text h1 {
  font-size: 2rem;
  margin-bottom: 13px;
}

/* Cookie Consent Banner ----------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  width: 100%;
  background: #fff;
  color: #234674;
  box-shadow: 0 -4px 18px rgba(35,70,116,0.15);
  z-index: 5000;
  padding: 20px 16px 19px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  font-size: 1rem;
  font-family: 'Georgia', serif;
  transition: transform 0.28s, opacity 0.11s;
  opacity: 0.97;
}
.cookie-banner.hide {
  pointer-events: none;
  opacity: 0;
  transform: translateY(100%);
}
.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.cookie-btn {
  font-family: 'Georgia', serif;
  font-size: 1rem;
  border-radius: 27px;
  border: none;
  padding: 6px 21px;
  margin-right: 3px;
  cursor: pointer;
  transition: background 0.16s, color 0.13s;
}
.cookie-btn.accept {
  background: #56A47A;
  color: #fff;
  font-weight: 700;
}
.cookie-btn.accept:focus, .cookie-btn.accept:hover {
  background: #234674;
}
.cookie-btn.reject {
  background: #e9eaea;
  color: #234674;
}
.cookie-btn.reject:focus, .cookie-btn.reject:hover {
  background: #ccc;
}
.cookie-btn.settings {
  background: #fff;
  color: #234674;
  border: 1px solid #234674;
  font-weight: 500;
}
.cookie-btn.settings:focus, .cookie-btn.settings:hover {
  background: #F5F7FA;
  color: #56A47A;
}

/* Cookie Preferences Modal ------------------------------- */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 8000;
  background: rgba(35,70,116,0.23);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.17s;
}
.cookie-modal-overlay[hidden] { display: none; }
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 35px rgba(35,70,116,0.19);
  min-width: 310px;
  max-width: 95vw;
  padding: 35px 28px 23px 28px;
  font-family: 'Georgia', serif;
  position: relative;
  z-index: 8100;
  animation: fadeInCookie 0.32s cubic-bezier(0.8,0,0.3,1);
}
@keyframes fadeInCookie {
  from { opacity: 0; transform: scale(0.93); }
  to { opacity: 1; transform: scale(1); }
}
.cookie-modal h2 {
  margin-top: 0; margin-bottom: 15px;
  color: #234674; font-size: 1.32rem;
}
.cookie-modal-close {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 1.5rem;
  background: none;
  border: none;
  color: #234674;
  cursor: pointer;
  transition: color 0.12s;
}
.cookie-modal-close:focus, .cookie-modal-close:hover {
  color: #56A47A;
}
.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 21px;
}
.cookie-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
}
.cookie-option label {
  font-size: 1rem;
  color: #234674;
  margin-left: 5px;
  font-weight: 500;
}
.cookie-option input[type="checkbox"] {
  width: 19px; height: 19px;
  accent-color: #56A47A;
}
.cookie-option.essential label {
  color: #234674;
  font-weight: 700;
  opacity: 0.8;
}
.cookie-option.essential input {
  accent-color: #234674;
}
.cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}
/* always-on style */
.cookie-option.essential input[type="checkbox"] {
  pointer-events: none;
  opacity: 0.5;
}

/* Responsive adjustments ------------------------------------ */
@media (max-width: 596px) {
  .section, section,.newsletter,.feature, .service, .package, .metric, .faq, .legal-text, .cookie-modal {
    padding: 10px 4px 12px 4px !important;
    border-radius: 8px;
  }
  header, footer {
    padding-left: 3vw; padding-right: 3vw;
  }
  .branding a { font-size: 1.08rem; }
}
@media (max-width: 480px) {
  .card, .service, .feature, .package, .metric, .testimonial-card {
    min-width: 90vw;
  }
  .services-cards, .feature-grid, .metrics, .pricing-table, .testimonial-list {
    gap: 12px;
  }
}

/* Micro-interactions & transitions --------------------------- */
button,
.cta-btn,
input,
select,
.card,
.service,
.feature,
.package,
.testimonial-card,
.cookie-btn {
  transition: background .18s, box-shadow .17s, border-color .13s, color .18s, transform 0.16s;
}

/* Hide invalid elements for accessibility -------------------- */
input[disabled], select[disabled], button[disabled], .feature[aria-disabled="true"] {
  filter: grayscale(0.34);
  opacity: 0.55;
  pointer-events: none;
}

/* Scrollbar styling (modern) --------------------------- */
::-webkit-scrollbar { width: 10px; background: #F5F7FA; }
::-webkit-scrollbar-thumb { background: #e7ecef; border-radius: 24px; }
::-webkit-scrollbar-thumb:hover { background: #d0d7db; }

/* Z-index stacks -------------------------------------- */
header { z-index: 22; position: relative; }
.mobile-menu { z-index: 3000; }
.cookie-banner { z-index: 5000; }
.cookie-modal-overlay, .cookie-modal { z-index: 8000; }

/* Prevent selection highlights on buttons -------------- */
button,
.cta-btn,
.cookie-btn,
.mobile-menu-toggle,
.mobile-menu-close,
.cookie-modal-close {
  -webkit-tap-highlight-color: rgba(35,70,116,0.09);
}

/* Text selection --------------------------------------- */
::selection { background: #e3efe7; color: #234674; }

/* Custom visually hidden (for accessibility) ----------- */
.visually-hidden {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px,1px,1px,1px);
  white-space: nowrap;
}
