/* ============================
   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,
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;
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  background: #F5F6FA;
  color: #253B5B;
  font-size: 1rem;
  line-height: 1.65;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: #253B5B;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #6AA2B8;
  outline: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
  margin-left: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  color: #253B5B;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.1;
  letter-spacing: -0.5px;
}
h1 {font-size: 2.5rem; margin-bottom: 24px;}
h2 {font-size: 2rem; margin-bottom: 20px;}
h3 {font-size: 1.3rem; margin-bottom: 12px;}
h4 {font-size: 1.1rem; margin-bottom: 10px;}
h5, h6 {font-size: 1rem;}

p, li, dd, dt {
  font-family: 'Open Sans', 'Arial', serif;
  color: #253B5B;
  font-weight: 400;
  margin-bottom: 10px;
}

/* =========================
   BRAND COLOR VARIABLES
   ========================= */
:root {
  --primary: #253B5B;
  --secondary: #6AA2B8;
  --accent: #F5F6FA;
  --white: #fff;
  --gray: #e7e8ee;
  --text: #253B5B;
  --text-light: #4e5c78;
  --muted: #7A8CA4;
  --shadow: rgba(37,59,91,0.08);
}

/* =============================
   LAYOUT & CONTAINERS (Flexbox)
   ============================= */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--accent);
  border-radius: 20px;
  box-shadow: 0 2px 24px var(--shadow);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  background: var(--white);
  border-radius: 16px;
  margin-bottom: 20px;
  position: relative;
  box-shadow: 0 2px 12px var(--shadow);
  padding: 32px 24px;
  min-width: 250px;
  flex: 1 1 260px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 6px 24px rgba(37,59,91,0.16);
  transform: translateY(-3px) scale(1.01);
}

.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: flex-start;
  gap: 16px;
  padding: 24px;
  background: #fff;
  box-shadow: 0 2px 12px var(--shadow);
  border-radius: 15px;
  margin-bottom: 20px;
  min-width: 260px;
  max-width: 360px;
  flex: 1 1 320px;
  border: 1px solid #e7e8ee;
  transition: box-shadow 0.2s;
}

.testimonial-card:hover {
  box-shadow: 0 8px 24px rgba(37,59,91,0.17);
}

dt {
  font-weight: 600;
  color: var(--primary);
}
dd {
  margin-bottom: 18px;
  color: var(--text-light);
}

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

/* =============================
   HEADER & NAVIGATION
   ============================= */
header {
  background: var(--white);
  box-shadow: 0 1px 8px var(--shadow);
  position: sticky;
  top: 0;
  z-index: 200;
}
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 12px 20px 12px 20px;
}
.logo img {
  display: block;
  height: 44px;
}
.main-nav {
  display: flex;
  gap: 26px;
  align-items: center;
  flex-wrap: wrap;
}
.main-nav a {
  font-family: 'Montserrat', 'Georgia', serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.25px;
  color: var(--primary);
  padding: 4px 8px;
  border-radius: 5px;
  transition: background 0.15s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--secondary);
  color: var(--white);
}

.cta-btn {
  background: var(--primary);
  color: var(--white);
  font-family: 'Montserrat', 'Georgia', serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.25px;
  padding: 12px 28px;
  border-radius: 28px;
  border: none;
  outline: none;
  box-shadow: 0 2px 8px var(--shadow);
  cursor: pointer;
  transition: background 0.16s, color 0.16s, transform 0.18s;
  margin-left: 18px;
  white-space: nowrap;
  display: inline-block;
  position: relative;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--secondary);
  color: var(--white);
  transform: translateY(-2px) scale(1.02);
}

/* Hamburger menu (mobile-menu-toggle) */
.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--primary);
  cursor: pointer;
  display: none;
  margin-left: 8px;
  z-index: 204;
  transition: color 0.25s;
}
.mobile-menu-toggle:focus {
  color: var(--secondary);
  outline: 2px solid var(--secondary);
  border-radius: 4px;
}

/* =====================
   MOBILE MENU OVERLAY
   ===================== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  background: rgba(37,59,91,0.97);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(.68,-0.55,.27,1.55);
  z-index: 300;
  padding: 32px 26px 20px 26px;
  width: 100vw;
  height: 100vh;
  opacity: 1;
  box-sizing: border-box;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
}

.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: var(--white);
  cursor: pointer;
  margin-bottom: 26px;
}
.mobile-menu-close:focus {
  outline: 2px solid var(--secondary);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.mobile-nav a {
  color: var(--white);
  padding: 14px 0;
  font-family: 'Montserrat', serif;
  font-size: 1.3rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(245,246,250,0.17);
  transition: background 0.2s, color 0.14s;
  border-radius: 0;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary);
  color: var(--primary);
  padding-left: 10px;
}

/* ===============
   HERO SECTION
   =============== */
.hero {
  background: var(--primary);
  color: var(--white);
  padding: 60px 0 50px 0;
  border-radius: 0 0 28px 28px;
  box-shadow: 0 2px 32px rgba(37,59,91,0.07);
  margin-bottom: 48px;
  position: relative;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
  max-width: 680px;
}
.hero h1,
.hero h2,
.hero p {
  color: var(--white);
}
.hero .cta-btn {
  background: var(--secondary);
  color: var(--primary);
}
.hero .cta-btn:hover {
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 4px 16px var(--shadow);
}

/* ===============
   FEATURES
   =============== */
.features {
  margin-bottom: 60px;
  background: var(--accent);
  border-radius: 18px;
  box-shadow: 0 1px 16px var(--shadow);
  padding: 40px 20px;
}
.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
}
.feature-list li {
  background: var(--white);
  border-radius: 13px;
  color: var(--primary);
  padding: 20px 28px 20px 16px;
  display: flex;
  align-items: center;
  font-family: 'Open Sans', serif;
  font-size: 1.08rem;
  box-shadow: 0 1px 8px var(--shadow);
  gap: 16px;
  font-weight: 500;
  min-width: 200px;
  transition: box-shadow 0.2s, background 0.16s;
}
.feature-list li img {
  width: 30px;
  height: 30px;
  filter: saturate(0.7);
}
.feature-list li:hover { background: var(--accent); box-shadow: 0 3px 18px rgba(37,59,91,.12); }

/* =======================
   SERVICES OVERVIEW/LIST
   ======================= */
.services-overview, .services-grid {
  margin-bottom: 60px;
}
.services-list,
.articles-list,
.property-items {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}
.services-list li, .services-grid .service-detail {
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 1px 8px var(--shadow);
  flex: 1 1 260px;
  padding: 28px 20px;
  min-width: 240px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.15s, transform 0.22s;
}
.services-list li:hover, .services-grid .service-detail:hover {
  box-shadow: 0 8px 26px rgba(37,59,91,.13);
  transform: translateY(-4px) scale(1.015);
}
.service-price {
  background: var(--accent);
  padding: 6px 12px;
  color: var(--secondary);
  border-radius: 8px;
  font-size: 1.02rem;
  margin-top: 6px;
  font-weight: 600;
  letter-spacing: 0.03em;
  display: inline-block;
  font-family: 'Montserrat', serif;
}

/* ================
   TESTIMONIALS
   ================ */
.testimonials {
  background: var(--accent);
  padding: 40px 0;
}
.testimonials .content-wrapper {
  align-items: flex-start;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}
.testimonial-card blockquote {
  font-size: 1.1rem;
  color: var(--text);
  quotes: "\201C" "\201D" "\2018" "\2019";
  position: relative;
  margin-bottom: 12px;
  font-style: italic;
}
.testimonial-card blockquote::before {
  content: open-quote;
  color: var(--secondary);
  font-size: 2.3rem;
  vertical-align: top;
  line-height: .7;
  margin-right: 7px;
}
.testimonial-card .testimonial-author {
  color: var(--muted);
  font-size: 1rem;
  font-style: normal;
  font-family: 'Open Sans', serif;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-left: 6px;
}

/* ================
   ARTICLE LIST
   ================ */
.articles-list li {
  background: var(--white);
  padding: 24px 20px 20px 20px;
  border-radius: 13px;
  min-width: 230px;
  max-width: 320px;
  flex: 1 1 260px;
  margin-bottom: 20px;
  box-shadow: 0 1px 8px var(--shadow);
  transition: box-shadow 0.18s;
}
.articles-list li:hover {
  box-shadow: 0 4px 20px rgba(37,59,91,.12);
}

/* ================
   FAQ SECTION
   ================ */
.faq dl {
  margin-bottom: 14px;
}
.faq dt {
  margin-top: 14px;
}

/* ================
   PROPERTY LIST
   ================ */
.property-items li {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 1px 6px var(--shadow);
  padding: 16px 18px;
  margin-bottom: 20px;
  min-width: 200px;
  max-width: 340px;
  flex: 1 1 220px;
  font-family: 'Open Sans', serif;
  transition: box-shadow 0.12s;
}
.property-items li:hover {
  box-shadow: 0 6px 22px rgba(37,59,91,.10);
}
.property-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  background: var(--white);
  padding: 18px 16px;
  border-radius: 10px;
  margin-top: 18px;
  box-shadow: 0 1px 8px var(--shadow);
  align-items: center;
}
.property-filter-bar input,
.property-filter-bar select {
  padding: 10px 14px;
  border-radius: 5px;
  border: 1px solid #bfcbe1;
  font-family: 'Open Sans', serif;
  font-size: 1rem;
  min-width: 110px;
  background: var(--accent);
  color: var(--primary);
  outline: none;
  transition: border 0.18s;
}
.property-filter-bar input:focus,
.property-filter-bar select:focus {
  border: 1.5px solid var(--secondary);
}

/* ============
   CONTACT PAGE
   ============ */
.contact-details > div,
.footer-contact > div {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 1rem;
}
.contact-details img, .footer-contact img {
  width: 22px;
  height: 22px;
}
.form-info ul {
  margin-bottom: 10px;
  margin-left: 16px;
  list-style: disc inside;
  color: var(--text-light);
}
.form-info p {
  color: var(--muted);
  font-size: 0.98rem;
  margin-bottom: 8px;
}

/* ===============
   ADDRESS & MAP
   ================ */
.address-info {
  color: var(--muted);
  padding: 18px 0 0 0;
  font-size: 1rem;
  line-height: 1.5;
}

/* ===============
   CTA BANNER/SECTION
   ================ */
.contact-cta,
.services-cta,
.consulting-cta,.thank-you {
  background: var(--primary);
  color: var(--white);
  border-radius: 16px;
  text-align: left;
  margin-bottom: 60px;
  padding: 38px 22px;
  box-shadow: 0 1px 16px var(--shadow);
}
.contact-cta h2, .services-cta h2, .consulting-cta h2, .thank-you h1,
.contact-cta p, .services-cta p, .consulting-cta p, .thank-you p {
  color: var(--white);
}

.contact-cta .cta-btn, .services-cta .cta-btn, .consulting-cta .cta-btn, .thank-you .cta-btn {
  background: var(--white);
  color: var(--primary);
  font-weight: 700;
  margin-top: 18px;
  box-shadow: 0 2px 16px var(--shadow);
}
.contact-cta .cta-btn:hover, .services-cta .cta-btn:hover, .consulting-cta .cta-btn:hover, .thank-you .cta-btn:hover {
  background: var(--secondary);
  color: var(--white);
}

/* ============
   ICON LISTS
   ============ */
.icon-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 14px;
  margin-bottom: 18px;
}
.icon-list li {
  display: flex;
  align-items: center;
  font-size: 1.08rem;
  font-family: 'Montserrat', 'Georgia', serif;
  background: var(--white);
  color: var(--primary);
  padding: 10px 18px;
  border-radius: 10px;
  gap: 12px;
  box-shadow: 0 1px 6px var(--shadow);
}
.icon-list img {
  width: 28px;
  height: 28px;
}

/* ================
   FOOTER
   ================ */
footer {
  background: var(--white);
  color: var(--primary);
  font-family: 'Open Sans', serif;
  box-shadow: 0 -1.5px 10px var(--shadow);
  padding-top: 34px;
  margin-top: 80px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-bottom: 12px;
}
.footer-branding {
  display: flex;
  align-items: center;
  gap: 13px;
  font-family: 'Montserrat', serif;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.footer-branding img {
  width: 42px;
  height: 42px;
}
.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: flex-start;
}
.footer-nav, .footer-legal {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav a, .footer-legal a {
  color: var(--primary);
  font-size: 1rem;
  transition: color 0.16s;
  font-family: 'Montserrat', serif;
}
.footer-nav a:hover, .footer-legal a:hover {
  color: var(--secondary);
  text-decoration: underline;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  font-size: 1rem;
  color: var(--muted);
}
.footer-bottom {
  text-align: center;
  color: var(--muted);
  font-size: 0.98rem;
  margin-top: 18px;
  padding-bottom: 10px;
}

/* =====================================
   COOKIE CONSENT BANNER & MODAL
   ===================================== */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1003;
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 -2px 12px rgba(37,59,91,0.08);
  padding: 26px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  animation: fadeInUp 0.55s;
  border-radius: 12px 12px 0 0;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-consent-text {
  font-size: 1.05rem;
  color: var(--primary);
  text-align: center;
}
.cookie-consent-actions {
  display: flex;
  gap: 18px;
}
.cookie-btn {
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 24px;
  padding: 10px 28px;
  font-size: 1rem;
  font-family: 'Montserrat', serif;
  font-weight: 600;
  transition: background 0.15s, color 0.13s, box-shadow 0.15s;
  cursor: pointer;
  box-shadow: 0 1px 7px var(--shadow);
}
.cookie-btn.accept {
  background: var(--secondary);
  color: var(--primary);
}
.cookie-btn.reject {
  background: #f2f2f2;
  color: var(--primary);
  border: 1px solid #e7e8ee;
}
.cookie-btn.settings {
  background: transparent;
  color: var(--secondary);
  border: 1.4px solid var(--secondary);
}
.cookie-btn:focus {
  outline: 2px solid var(--secondary);
}
.cookie-btn:hover {
  background: var(--secondary);
  color: var(--white);
}

/* Cookie settings modal */
.cookie-settings-modal {
  position: fixed;
  z-index: 1070;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(37,59,91,0.32);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.26s;
}
.cookie-settings-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-settings-content {
  background: var(--white);
  color: var(--primary);
  border-radius: 14px;
  max-width: 380px;
  width: 96%;
  box-shadow: 0 4px 32px rgba(37,59,91,0.16);
  padding: 28px 20px 20px 20px;
  animation: fadeInPop 0.32s;
}
@keyframes fadeInPop {
  from { opacity: 0; transform: scale(0.94); }
  to { opacity: 1; transform: scale(1); }
}
.cookie-settings-content h2 {
  font-size: 1.24rem;
  margin-bottom: 16px;
  color: var(--primary);
  font-family: 'Montserrat', serif;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e7e8ee;
}
.cookie-category:last-child { border-bottom: none; }
.cookie-category label {
  font-family: 'Open Sans', serif;
  font-size: 1rem;
  color: var(--primary);
  font-weight: 500;
}
.cookie-toggle {
  width: 36px;
  height: 20px;
  background: var(--gray);
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  margin-left: 7px;
  flex-shrink: 0;
}
.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-toggle-slider {
  position: absolute;
  left: 2px;
  top: 2px;
  width: 16px;
  height: 16px;
  background: var(--secondary);
  border-radius: 50%;
  transition: left 0.18s, background 0.18s;
}
.cookie-toggle input:checked + .cookie-toggle-slider {
  left: 18px;
  background: var(--primary);
}
/* Essential cookies always enabled */
.cookie-category.essential .cookie-toggle .cookie-toggle-slider {
  background: var(--gray);
  opacity: 0.6;
}
.cookie-category.essential label {
  color: var(--muted);
}

.cookie-settings-actions {
  display: flex;
  gap: 14px;
  margin-top: 24px;
  justify-content: flex-end;
}
.close-cookie-settings {
  background: none;
  border: none;
  color: var(--secondary);
  font-size: 1.35rem;
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}
.close-cookie-settings:focus {
  outline: 2px solid var(--secondary);
}

/* =============================
   RESPONSIVE DESIGN (Mobile First)
   ============================= */
@media (max-width: 1120px) {
  .container { max-width: 96vw; }
}
@media (max-width: 950px) {
  .main-nav { gap: 14px; }
}
@media (max-width: 768px) {
  .content-wrapper,
  .card-container,
  .feature-list,
  .services-list,
  .services-grid,
  .articles-list,
  .property-items,
  .icon-list {
    flex-direction: column !important;
    gap: 20px;
    align-items: stretch !important;
  }
  .footer-links {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .cta-btn { margin-left: 0; }
  .hero {
    padding: 40px 0 32px 0;
    border-radius: 0 0 14px 14px;
  }
  .section, .features {
    margin-bottom: 38px;
    padding: 24px 8px;
    border-radius: 8px;
  }
  .testimonial-slider, .card-container, .feature-list, .services-list, .articles-list, .property-items {
    gap: 16px;
  }
  .footer-branding span {
    font-size: 1rem;
  }
}
@media (max-width: 630px) {
  .header-container {
    flex-direction: row;
    gap: 7px;
  }
  .container {
    padding: 0 7px;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.2rem; }
}
@media (max-width: 530px) {
  .footer-contact > div {
    font-size: 0.92rem;
    gap: 6px;
  }
  .footer-branding {
    font-size: 0.93rem;
    gap: 10px;
  }
}
@media (max-width: 480px) {
  .hero, .section, .contact-cta, .services-cta, .consulting-cta, .thank-you {
    padding: 16px 2px;
  }
  .cookie-settings-content {
    max-width: 97vw;
    padding: 18px 3px 12px 7px;
  }
}
@media (max-width: 460px) {
  .banner {
    font-size: 0.97rem;
  }
}

/* ===============================
   MISC UTILITIES & MICROANIMATIONS
   =============================== */
::-webkit-input-placeholder { color: #a7afbb; opacity: 1; }
::-moz-placeholder { color: #a7afbb; opacity:1; }
:-ms-input-placeholder { color: #a7afbb; opacity:1; }
::placeholder { color: #a7afbb; opacity:1; }

[tabindex]:focus, button:focus, input:focus, select:focus, textarea:focus {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
  background: #e8f3f8;
}

::-webkit-scrollbar {
  width: 8px;
  background: var(--accent);
}
::-webkit-scrollbar-thumb {
  background: #cfe0e9;
  border-radius: 6px;
}

/* ===========
   MISC
   =========== */
.text-section {
  color: var(--text-light);
  font-size: 1.01rem;
}

hr {
  border: none;
  border-top: 1.5px solid #e7e8ee;
  margin: 34px 0 30px 0;
}

/* ===========
   THANK YOU PAGE
   =========== */
.thank-you {
  background: var(--primary);
  color: var(--white);
  text-align: center;
  margin-bottom: 48px;
  border-radius: 14px;
  box-shadow: 0 1px 14px var(--shadow);
  padding: 42px 16px;
}

/* ============
   Z-INDEX LAYERS
   ============ */
.header-container   { z-index: 205; }
.mobile-menu        { z-index: 300; }
.cookie-consent-banner { z-index: 1003; }
.cookie-settings-modal { z-index: 1070; }

/* ============
   PRINT FIX
   ============ */
@media print {
  header, footer, .cookie-consent-banner, .mobile-menu { display: none !important; }
}
