/* RheinDom Immobilien – Industrial Modern Style CSS */
/* --- 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, font, 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, section, 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 {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  background: #181e24;
  color: #F4F4F4;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: #A5C3D3;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F4F4F4;
  text-decoration: underline;
}
ul, ol {
  margin-left: 24px;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border: none;
}
button, input[type="button"], input[type="submit"] {
  font-family: inherit;
  cursor: pointer;
  outline: none;
  border: none;
}
:focus {
  outline: 2px solid #A5C3D3;
  outline-offset: 2px;
}

/* --- BRAND FONT IMPORT --- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500&display=swap');

/* --- COLOR VARIABLES --- */
:root {
  --color-primary: #25405A;
  --color-secondary: #A5C3D3;
  --color-accent: #F4F4F4;
  --color-bg: #181e24;
  --color-surface: #222c35;
  --color-surface-alt: #23272b;
  --color-metal: #8b9ba8;
  --color-success: #70bf7e;
  --color-danger: #bf7070;
  --color-warning: #e2bb5d;
  --color-shadow: rgba(8,22,35,0.18);
  --border-radius: 12px;
  --shadow-md: 0 3px 12px rgba(30,43,55,0.14);
  --shadow-hover: 0 4px 16px rgba(30,43,55,0.20);
}

/* --- TYPOGRAPHY --- */
h1, .hero h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  color: #F4F4F4;
  font-size: 2.5rem;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
  text-shadow: 1px 2px 8px rgba(30,43,55,0.18);
}
h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #A5C3D3;
  font-size: 2rem;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #F4F4F4;
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.hero h1, .thank-you-hero h1 {
  color: #F4F4F4;
  letter-spacing: 0.03em;
  font-size: 2.3rem;
}
@media (min-width: 800px) {
  h1, .hero h1, .thank-you-hero h1 { font-size: 3.2rem; }
  h2 { font-size: 2.3rem; }
}
p {
  margin-bottom: 1.2em;
}
strong, b {
  font-weight: 700;
  color: #A5C3D3;
}
.text-section li {
  margin-bottom: 8px;
}
.text-section ul, .text-section ol {
  margin-bottom: 20px;
}
.text-section ul {
  list-style-type: disc;
}
.text-section ol {
  list-style-type: decimal;
}
.price-info, .service-price {
  color: #A5C3D3;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-top: 8px;
}

/* --- CONTAINERS & SECTIONS --- */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 16px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 12px;
}
@media (min-width: 900px) {
  .content-wrapper {
    gap: 32px;
  }
}

/* --- NAVIGATION BAR --- */
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0 0 0;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.desktop-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: #A5C3D3;
  font-size: 1rem;
  letter-spacing: 0.02em;
  padding: 8px 0;
  transition: color 0.20s;
  position: relative;
}
.desktop-nav a:after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: #A5C3D3;
  transition: width 0.22s cubic-bezier(.86,0,.07,1);
  position: absolute;
  left: 0;
  bottom: -4px;
}
.desktop-nav a:hover, .desktop-nav a:focus {
  color: #F4F4F4;
}
.desktop-nav a:hover:after, .desktop-nav a:focus:after {
  width: 80%;
}
.cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  background: linear-gradient(90deg, #25405A 90%, #48586b 100%);
  color: #F4F4F4;
  border-radius: var(--border-radius);
  padding: 14px 32px;
  box-shadow: 0 2px 10px var(--color-shadow);
  border: 2px solid #A5C3D3;
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 0.06em;
  transition: background 0.2s, color 0.2s, box-shadow 0.3s, border 0.2s;
  margin-left: 14px;
  margin-top: 0px;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(93deg, #A5C3D3 80%, #25405A 100%);
  color: #222c35;
  border-color: #F4F4F4;
  box-shadow: 0 4px 16px rgba(165,195,211,0.20);
}
/* --- MOBILE NAVIGATION --- */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  color: #A5C3D3;
  font-size: 2rem;
  border: none;
  margin-left: 12px;
  padding: 6px 12px;
  border-radius: 7px;
  transition: background 0.18s;
  z-index: 111;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #23272b;
  color: #F4F4F4;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #23272b;
  z-index: 1999;
  transform: translateX(100%);
  transition: transform 0.39s cubic-bezier(.77,0,.18,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 40px;
  gap: 28px;
  box-shadow: -2px 0 16px rgba(17,27,38,0.31);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 16px;
  right: 24px;
  background: transparent;
  color: #A5C3D3;
  font-size: 2rem;
  border: none;
  padding: 4px 10px;
  border-radius: 7px;
  transition: background 0.18s;
  z-index: 2222;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #181e24;
  color: #F4F4F4;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 30px;
  width: 100%;
}
.mobile-nav a {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.15rem;
  color: #A5C3D3;
  padding: 18px 32px 18px 24px;
  border-radius: 6px;
  transition: background 0.18s, color 0.14s;
  letter-spacing: 0.01em;
  width: 100%;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #25405A;
  color: #F4F4F4;
}
@media (max-width: 1024px) {
  .desktop-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .cta-btn {
    margin-left: 0;
  }
}
@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
}

/* --- HERO SECTION --- */
.hero, .thank-you-hero {
  padding: 48px 0 36px 0;
  background: linear-gradient(90deg, #181e24 75%, #25405A 100%);
  box-shadow: 0 2px 16px var(--color-shadow);
}
.hero .container, .thank-you-hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.hero .content-wrapper, .thank-you-hero .content-wrapper {
  max-width: 660px;
  margin: 0 auto;
  text-align: center;
  gap: 20px;
}
@media (min-width: 800px) {
  .hero, .thank-you-hero {
    padding: 80px 0 56px 0;
  }
  .hero .content-wrapper, .thank-you-hero .content-wrapper {
    gap: 28px;
  }
}

/* --- FEATURES --- */
.features {
  background: var(--color-surface)
}
.features .container {
  padding: 24px 0;
}
.features h2 {
  color: #A5C3D3;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-grid > div {
  background: var(--color-surface-alt);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  padding: 32px 22px 26px 22px;
  flex: 1 1 270px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 20px;
  min-width: 240px;
  max-width: 310px;
  border-left: 5px solid #8b9ba8;
  position: relative;
  transition: box-shadow 0.22s, border-color 0.18s;
}
.feature-grid > div:hover {
  box-shadow: var(--shadow-hover);
  border-color: #A5C3D3;
}
.feature-grid img {
  width: 40px;
  height: 40px;
  margin-bottom: 8px;
  filter: brightness(1.2) contrast(1.1) grayscale(0.11);
}

/* --- CARDS/GROUPS --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--color-surface-alt);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  padding: 32px 20px;
  transition: box-shadow 0.19s;
}
.card:hover {
  box-shadow: var(--shadow-hover);
  z-index: 28;
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* --- CONTENT GRIDS & FLEX SECTIONS --- */
.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;
    gap: 16px;
  }
  .content-grid {
    flex-direction: column;
    gap: 16px;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- TESTIMONIALS --- */
.testimonials {
  background: var(--color-surface);
  padding-bottom: 0;
}
.testimonials h2 {
  text-align: center;
  margin-bottom: 40px;
}
.testimonials .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  justify-content: center;
  flex-direction: row;
}
.contact-info img {
  width: 40px;
}
.testimonial-card {
  background: #F4F4F4;
  color: #222c35;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 12px rgba(37,64,90,0.15);
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  max-width: 410px;
  min-width: 240px;
  flex: 1 1 290px;
  position: relative;
  transition: transform 0.22s cubic-bezier(.6,-0.28,.74,.05), box-shadow 0.18s;
}
.testimonial-card:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 6px 26px rgba(37,64,90,0.17);
}
.testimonial-card span {
  display: block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #25405A;
  font-weight: 700;
  margin-top: 10px;
  letter-spacing: 0.01em;
}
.testimonial-card p {
  color: #222c35;
  font-size: 1.08rem;
  margin-bottom: 4px;
}
@media (max-width: 650px) {
  .testimonial-card {
    min-width: 0; max-width: 100%;
  }
  .testimonials .content-wrapper { gap: 18px; }
}

/* --- PROPERTY LISTINGS & FILTER --- */
.property-listings {
  background: var(--color-surface-alt);
  border-radius: var(--border-radius);
  margin-top: 32px;
  margin-bottom: 48px;
  box-shadow: var(--shadow-md);
}
.property-listings h2 {
  color: #A5C3D3;
  margin-bottom: 16px;
}
.property-filter {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1.5px solid #23272b;
}
.property-filter ul {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  list-style: none;
  margin-left: 0;
  margin-bottom: 0;
}
.property-filter li {
  background: #23272b;
  color: #A5C3D3;
  border-radius: 5px;
  padding: 7px 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.01em;
  border: 1px solid #8b9ba8;
  cursor: pointer;
  margin-bottom: 0;
  transition: background 0.18s, color 0.15s;
}
.property-filter li:hover, .property-filter li.active {
  background: #A5C3D3;
  color: #222c35;
}
.property-summary ul {
  margin-bottom: 24px;
  list-style-type: disc;
  
}
.property-summary ul ul {
  list-style-type: circle; /* sub-list */
  margin-left: 18px;
  margin-bottom: 0;
}
.property-summary li {
  margin-bottom: 12px;
  color: #A5C3D3;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.01em;
}
.property-summary li strong {
  color: #F4F4F4;
}
.property-cta {
  margin-top: 8px;
}

.topic-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}
.topic-grid span {
  background: #23272b;
  color: #A5C3D3;
  border-radius: 4px;
  padding: 6px 14px;
  font-size: 0.96rem;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.01em;
}

/* --- CONTACT SECTIONS --- */
.contact-short, .contact {
  background: var(--color-surface-alt);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  margin-bottom: 40px;
  padding: 32px 22px 22px 22px;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-info div, .footer-contact-snippet span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #A5C3D3;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 0;
}
.contact-cta {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex: 0 0 auto;
  margin-top: 8px;
}
@media (max-width: 700px) {
  .contact-short .content-wrapper, .contact .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .contact-info {
    margin-bottom: 10px;
  }
}

.how-to-find, .about, .about-team, .legal {
  background: var(--color-surface);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  margin-bottom: 40px;
  padding: 40px 22px 28px 22px;
}
.brand-tagline {
  color: #A5C3D3;
  text-align: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  margin: 14px 0 0 0;
}

/* --- CTA SECTIONS --- */
.cta {
  padding: 40px 0 50px 0;
  background: linear-gradient(92deg, #23272b 70%, #A5C3D3 100%);
  border-radius: var(--border-radius);
}
.cta .content-wrapper {
  align-items: center;
  text-align: center;
}

/* --- FOOTER --- */
.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  padding: 40px 0 12px 0;
  border-top: 2px solid #23272b;
  background: #181e24;
  margin-top: 36px;
}
.footer-nav {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 0;
}
.footer-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #A5C3D3;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  transition: color 0.19s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #F4F4F4;
}
.footer-contact-snippet {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #8b9ba8;
  font-size: 0.98rem;
  font-family: 'Roboto', Arial, sans-serif;
}
.footer-contact-snippet img {
  filter: grayscale(0.30) brightness(1.0) contrast(1.25);
  width: 17px;
  height: 17px;
}
@media (min-width: 900px) {
  .footer {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0;
    padding-right: 34px;
    padding-left: 34px;
    text-align: left;
  }
  .footer-nav {
    gap: 34px;
  }
}

/* --- LEGAL (& Simple Text) SECTIONS --- */
.legal, .text-section {
  background: var(--color-surface);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  margin-bottom: 36px;
  padding: 40px 22px 22px 22px;
}
.legal h1, .legal h2, .legal h3 {
  color: #A5C3D3;
}
.legal p, .legal li, .text-section p, .text-section li {
  color: #F4F4F4;
  font-size: 1.04rem;
}

/* --- COOKIE BANNER / CONSENT MODAL --- */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #23272b;
  color: #F4F4F4;
  box-shadow: 0 -2px 18px rgba(37,64,90,0.11);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 24px 18px;
  gap: 20px;
  z-index: 5500;
  animation: bannerslideup 0.5s cubic-bezier(.3,.86,.49,1);
}
@keyframes bannerslideup {
  from { transform: translateY(120%); opacity: 0.22; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  margin-bottom: 0;
  font-size: 1rem;
  color: #F4F4F4;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border-radius: 7px;
  font-size: 1rem;
  padding: 10px 22px;
  border: 2px solid #8b9ba8;
  background: #181e24;
  color: #A5C3D3;
  margin-left: 0;
  letter-spacing: 0.01em;
  box-shadow: 0 2px 8px rgba(18,24,29,0.07);
  transition: background 0.18s, color 0.18s, border 0.18s;
}
.cookie-btn.accept {
  background: #70bf7e;
  border-color: #70bf7e;
  color: #23272b;
}
.cookie-btn.reject {
  background: #bf7070;
  border-color: #bf7070;
  color: #F4F4F4;
}
.cookie-btn.settings {
  background: #23272b;
  border-color: #A5C3D3;
  color: #A5C3D3;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #A5C3D3;
  color: #181e24;
  border-color: #25405A;
}
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(22,32,41,0.8);
  z-index: 6000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modalfadein 0.18s;
}
@keyframes modalfadein {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #23272b;
  color: #F4F4F4;
  padding: 32px 26px 24px 26px;
  border-radius: var(--border-radius);
  box-shadow: 0 6px 44px rgba(22,32,41,0.38);
  max-width: 450px;
  width: calc(100vw - 32px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 6600;
  animation: bannerslideup 0.25s;
}
.cookie-modal h3 {
  color: #A5C3D3;
  font-size: 1.2rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
.cookie-toggle {
  width: 42px;
  height: 24px;
  background: #222c35;
  border-radius: 12px;
  border: 1.5px solid #8b9ba8;
  position: relative;
  appearance: none;
  outline: none;
  cursor: pointer;
  transition: background 0.18s;
}
.cookie-toggle:checked {
  background: #70bf7e;
  border-color: #70bf7e;
}
.cookie-toggle:before {
  content: '';
  position: absolute;
  left: 2px;
  top: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #F4F4F4;
  transition: transform 0.2s;
}
.cookie-toggle:checked:before {
  transform: translateX(18px);
}
.cookie-modal .cookie-btn-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-top: 10px;
}

/* --- ANIMATION & MICROINTERACTION --- */
a, .cta-btn, .card, .feature-grid > div, .cookie-btn {
  transition:  
    background 0.18s, 
    color 0.17s, 
    transform 0.28s cubic-bezier(.55,.04,.67,.52), 
    box-shadow 0.15s, 
    border 0.18s;
}
a:active, .cta-btn:active {
  transform: scale(0.98);
}

/* --- SPACING AND FLEX LAYOUTS --- */
/* All listed patterns, strictly with flex/gap */
.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 DESIGN --- */
@media (max-width: 1250px) {
  .container { padding: 0 10px; }
}
@media (max-width: 900px) {
  .footer, .footer-contact-snippet {
    flex-direction: column !important;
    align-items: center !important;
    gap: 10px;
    text-align: center;
  }
}
@media (max-width: 600px) {
  h1, .hero h1, .thank-you-hero h1 { font-size: 1.5rem; }
  h2 { font-size: 1.15rem; }
  body { font-size: 15px; }
  .feature-grid { gap: 12px; }
  .card-container, .content-grid { gap: 8px; }
  .feature-grid > div, .card, .how-to-find, .about, .about-team, .legal, .contact-short, .contact  { padding: 18px 7px 12px 7px; }
  .footer-nav { gap: 7px; }
  .section { padding: 28px 6px; }
  .cookie-banner { flex-direction: column; padding: 20px 7px; gap: 12px; }
  .cookie-modal { padding: 18px 8px; }
}

/* --- SCROLLBARS --- */
::-webkit-scrollbar {
  width: 8px;
  background: #23272b;
}
::-webkit-scrollbar-thumb {
  background: #8b9ba8;
  border-radius: 7px;
}

/* --- OBSOLETE/ACCESSIBILITY FEEDBACK --- */
[aria-current] {
  color: #F4F4F4 !important;
  font-weight: 700;
  border-bottom: 2px solid #A5C3D3;
}

/* --- UTILS --- */
.text-center { text-align: center !important; }
.mt-2 { margin-top: 16px !important; }
.mb-0 { margin-bottom: 0 !important; }

/* --- END RheinDom Immobilien CSS --- */
