/* --- 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;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  background: #F4F8FB;
  color: #012840;
  line-height: 1.6;
  min-height: 100vh;
  background-color: #F4F8FB;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a {
  color: #D09E48;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #012840;
}
ul, ol {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button {
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
  outline: none;
}

/* --- BRAND TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.2rem; /* 36px */
  color: #012840;
  margin-bottom: 18px;
  letter-spacing: -1.5px;
  line-height: 1.18;
}
h2 {
  font-size: 1.6rem; /* 28px */
  color: #012840;
  position: relative;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.22rem; /* 20px */
  color: #D09E48;
}
h4, h5, h6 {
  font-size: 1.1rem;
  color: #012840;
}
p {
  margin-bottom: 14px;
  font-size: 1rem;
  color: #273E51;
}
strong {
  color: #012840;
}

/* --- SPACING & LAYOUT PATTERNS --- */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  padding: 0;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFF;
  border-radius: 22px;
  box-shadow: 0 2px 24px 0 rgba(1,40,64,0.06);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 4px 18px 0 rgba(1,40,64,0.09);
  overflow: hidden;
  transition: transform 0.18s, box-shadow 0.18s;
}
.card:hover {
  transform: scale(1.025) translateY(-3px);
  box-shadow: 0 8px 30px 0 rgba(208,158,72,0.18);
}
.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;
  background: #FFF;
  border-radius: 16px;
  box-shadow: 0 2px 14px rgba(1,40,64,0.07);
  padding: 20px;
  margin-bottom: 20px;
  color: #222;
  max-width: 720px;
  font-size: 1.01rem;
}
.testimonial-card p {
  margin: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  color: #012840;
  font-weight: 500;
}
.testimonial-card span {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #D09E48;
  font-size: 0.97rem;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- HEADER & NAV --- */
header {
  background: #FFF;
  box-shadow: 0 1px 10px 0 rgba(1,40,64,0.06);
  position: sticky;
  top: 0;
  z-index: 998;
  width: 100%;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 66px;
}
header img {
  height: 48px;
  width: auto;
  flex-shrink: 0;
}
nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #012840;
  padding: 6px 0;
  position: relative;
  border-radius: 9px;
  transition: background 0.16s, color 0.16s, box-shadow 0.16s;
}
header nav a:hover, header nav a:focus {
  background: #F4F8FB;
  color: #D09E48;
  box-shadow: 0 1px 8px 0 rgba(208,158,72,0.13);
}
.button.primary {
  background: #D09E48;
  color: #FFF;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 11px 26px;
  border-radius: 28px;
  box-shadow: 0 3px 10px 0 rgba(1,40,64,0.07);
  margin-left: 20px;
  transition: background 0.18s, color 0.18s, transform 0.18s, box-shadow 0.2s;
  border: none;
  outline: none;
  letter-spacing: 0.04em;
  cursor: pointer;
  display: inline-block;
}
.button.primary:hover, .button.primary:focus {
  background: #012840;
  color: #FFD978;
  transform: scale(1.035);
}

/* --- HERO SECTION --- */
.hero {
  background: #EAF3F9;
  border-radius: 0 0 60px 60px;
  padding-top: 40px;
  padding-bottom: 44px;
  min-height: 270px;
  margin-bottom: 40px;
  box-shadow: 0 6px 22px 0 rgba(1,40,64,0.06);
  display: flex;
  align-items: center;
}
.hero .container {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.hero h1 {
  color: #D09E48;
  font-family: 'Montserrat', serif;
  font-size: 2.1rem;
  text-shadow: 2px 2px 0 #FFF8E7, 1px 1px 0 #F4F8FB;
}
.hero p {
  font-size: 1.13rem;
  color: #012840;
  margin-bottom: 22px;
}

/* --- FEATURES SECTION --- */
.features {
  background: #fff;
  border-radius: 38px;
  margin-bottom: 48px;
  padding: 40px 20px;
  box-shadow: 0 4px 24px 0 rgba(1,40,64,0.09);
}
.features .content-wrapper > h2 {
  color: #D09E48;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 18px;
}
.feature-grid > div {
  background: #F4F8FB;
  border-radius: 24px;
  padding: 26px 18px;
  width: calc(50% - 16px);
  min-width: 260px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 3px 14px 0 rgba(1,40,64,0.06);
  margin-bottom: 12px;
  transition: transform 0.13s, box-shadow 0.13s;
}
.feature-grid > div img {
  width: 42px;
  margin-bottom: 6px;
  border-radius: 12px;
}
.feature-grid > div h3 {
  color: #012840;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.11rem;
  margin-bottom: 5px;
}
.feature-grid > div p {
  font-size: 0.98rem;
  color: #444;
  margin-bottom: 0;
}
.feature-grid > div:hover {
  transform: translateY(-3px) scale(1.04) rotate(-1deg);
  box-shadow: 0 8px 26px 0 rgba(208,158,72,0.10);
}

/* --- ABOUT & SERVICES --- */
.about, .services, .team, .legal, .contact, .confirmation {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFF;
  border-radius: 22px;
  box-shadow: 0 2px 24px 0 rgba(1,40,64,0.06);
}
.about h3, .services h3 {
  color: #D09E48;
}
.services ul, .about ul, .team ul, .features ul {
  padding-left: 0;
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.services ul li, .about ul li, .team ul li, .features ul li {
  background: #F4F8FB;
  border-radius: 15px;
  padding: 12px 16px;
  font-size: 1rem;
  color: #01345C;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  transition: background 0.14s;
}
.services ul li img, .features ul li img, .about ul li img, .contact ul li img {
  width: 27px;
  margin-right: 9px;
  border-radius: 6px;
  flex-shrink: 0;
}
.services ul li a, .about ul li a {
  color: #D09E48;
  font-weight: bold;
}

/* --- TESTIMONIALS --- */
.testimonials {
  background: #FAF5EC;
  border-radius: 32px;
  box-shadow: 0 4px 16px 0 rgba(1,40,64,0.09);
  margin-bottom: 58px;
  padding: 38px 20px;
}
.testimonials h2 {
  color: #D09E48;
  margin-bottom: 22px;
}
.testimonials .testimonial-card {
  background: #FFF;
  color: #012840;
  box-shadow: 0 2px 28px 0 rgba(208,158,72,0.09);
  border-radius: 15px;
  margin-bottom: 20px;
  min-width: 224px;
  max-width: 700px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.testimonials .testimonial-card:hover {
  box-shadow: 0 6px 28px 0 rgba(208,158,72,0.23);
  transform: translateY(-6px) scale(1.025);
}

/* --- CONTACT --- */
.contact h2, .contact h3 {
  color: #D09E48;
}
.contact ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 18px;
}
.contact ul li {
  display: flex;
  align-items: center;
  background: #F4F8FB;
  border-radius: 13px;
  padding: 12px 15px;
  font-size: 1rem;
  color: #012840;
}
.map-location {
  margin-top: 20px;
  background: #EBF6FF;
  border-radius: 12px;
  padding: 11px 16px;
  color: #012840;
  box-shadow: 0 1px 8px 0 rgba(1,40,64,0.04);
}

/* --- FAQ SUPPORT CONTACT --- */
.support-contact {
  margin-top: 28px;
  flex-direction: column;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

/* --- FOOTER --- */
footer {
  background: #012840;
  padding: 38px 0 18px 0;
  width: 100%;
  color: #F4F8FB;
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin-bottom: 11px;
}
footer nav a {
  color: #FFD978;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  transition: color 0.17s;
  border-radius: 8px;
  padding: 5px 7px;
}
footer nav a:hover,
footer nav a:focus {
  color: #FFF;
  background: #D09E48;
}
.footer-contact {
  font-size: 0.98rem;
  color: #E1ECF4;
  text-align: center;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}

/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  display: none;
  background: #D09E48;
  color: #FFF;
  border: none;
  border-radius: 30px;
  font-size: 2.1rem;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 24px;
  top: 11px;
  z-index: 999;
  box-shadow: 0 2px 10px 0 rgba(208,158,72,0.14);
  transition: background 0.2s, color 0.2s, transform 0.12s;
}
.mobile-menu-toggle:active {
  transform: scale(0.95);
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #012840;
  color: #FFD978;
  z-index: 1999;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.7,0,0.3,1);
  opacity: 0.99;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.5rem;
  background: none;
  color: #FFD978;
  border: none;
  margin: 24px 24px 8px 0;
  cursor: pointer;
  padding: 2px 12px;
  border-radius: 50%;
  transition: background 0.17s;
}
.mobile-menu-close:hover { background: #D09E48; color: #FFF; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin: 0 auto;
  margin-top: 38px;
  width: 90%;
  align-items: stretch;
}
.mobile-nav a {
  color: #FFD978;
  background: #012840;
  border: 2px solid #FFD978;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.13rem;
  border-radius: 18px;
  padding: 15px 12px;
  margin-bottom: 4px;
  text-align: center;
  letter-spacing: 0.03em;
  transition: background 0.2s, color 0.2s, border 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #D09E48;
  color: #FFF;
  border: 2px solid #FFF;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  z-index: 99999;
  background: #FFFBE4;
  color: #012840;
  box-shadow: 0 -3px 18px 0 rgba(208,158,72,0.18);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 18px 18px 20px;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  border-top-right-radius: 28px;
  border-top-left-radius: 28px;
  opacity: 1;
  animation: slideUpBanner 0.5s cubic-bezier(0.7,0,0.3,1);
}
@keyframes slideUpBanner {
  0% { transform: translateY(100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner-buttons {
  display: flex;
  gap: 15px;
}
.cookie-banner .button, .cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 24px;
  padding: 7px 21px;
  font-weight: 700;
  border: none;
  transition: background 0.16s, color 0.14s;
  margin-bottom: 0;
  cursor: pointer;
}
.cookie-banner .button.accept {
  background: #D09E48;
  color: #FFF;
}
.cookie-banner .button.accept:hover { background: #012840; color: #FFD978; }
.cookie-banner .button.reject {
  background: #FFF;
  color: #012840;
  border: 2px solid #D09E48;
}
.cookie-banner .button.reject:hover { background: #D09E48; color: #FFF; }
.cookie-banner .button.settings {
  background: #012840;
  color: #FFD978;
}
.cookie-banner .button.settings:hover { background: #EAF3F9; color: #012840; }

/* --- COOKIE PREFERENCES MODAL --- */
.cookie-modal-overlay {
  position: fixed;
  z-index: 100000;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(1,40,64,0.37);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.2s;
}
.cookie-modal {
  width: 95%;
  max-width: 420px;
  background: #FFF;
  border-radius: 22px 22px 0 0;
  box-shadow: 0 12px 36px 0 rgba(208,158,72,0.13);
  padding: 28px 16px 16px 16px;
  margin-bottom: 0;
  animation: slideUpModal 0.33s cubic-bezier(0.7,0,0.3,1);
}
@keyframes slideUpModal {
  from { transform: translateY(60px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.16rem;
  color: #012840;
  margin-bottom: 10px;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background: #F4F8FB;
  padding: 12px 10px;
  margin-bottom: 10px;
  border-radius: 12px;
}
.cookie-modal .cookie-category label {
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-modal .cookie-category input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: #D09E48;
  margin-left: 12px;
}
.cookie-modal .cookie-category input[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 14px;
  justify-content: flex-end;
}
.cookie-modal .cookie-actions button {
  background: #D09E48;
  color: #fff;
  padding: 8px 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 18px;
  border: none;
  transition: background 0.15s, color 0.13s;
  cursor: pointer;
}
.cookie-modal .cookie-actions button:hover { background: #012840; color: #FFD978; }
.cookie-modal .close-modal {
  background: none;
  color: #D09E48;
  font-size: 2rem;
  position: absolute;
  right: 19px;
  top: 9px;
  border: none;
  cursor: pointer;
}

/* --- PLAYFUL, DYNAMIC MICROINTERACTIONS --- */
.button.primary, .cookie-banner .button, .cookie-modal .cookie-actions button {
  box-shadow: 0 2px 11px 0 rgba(208,158,72,0.10);
  will-change: transform;
}
.button.primary:active, .cookie-banner .button:active, .cookie-modal .cookie-actions button:active {
  transform: scale(0.96);
}
.card, .feature-grid > div, .testimonial-card {
  transition: box-shadow 0.17s, transform 0.13s;
}
.card:hover, .feature-grid > div:hover, .testimonial-card:hover {
  box-shadow: 0 10px 38px 0 rgba(208,158,72,0.14);
  transform: scale(1.025) rotate(-1deg);
}

/* --- RESPONSIVE DESIGN (MOBILE FIRST) --- */
@media (max-width: 1024px) {
  .container { max-width: 94vw; }
  header .container { gap: 11px; }
  .feature-grid > div { min-width: 210px; }
}
@media (max-width: 950px) {
  .feature-grid { flex-direction: column; gap: 18px; }
  .feature-grid > div { width: 100%; }
}
@media (max-width: 860px) {
  .hero { border-radius: 0 0 36px 36px; }
  header nav { gap: 13px; }
}
@media (max-width: 800px) {
  .hero { padding-top: 26px; }
  .hero h1 { font-size: 1.47rem; }
  .container { max-width: 100vw; padding: 0 8px; }
  .feature-grid > div { min-width: 140px; }
  .section,
  .about, .services, .team, .legal, .contact, .confirmation, .testimonials, .features {
    padding: 32px 7px;
  }
  .card-container, .content-grid, .feature-grid {
    gap: 12px;
  }
}
@media (max-width: 768px) {
  header nav,
  .button.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .container, footer .container {
    padding: 0 4vw;
  }
  .hero { border-radius: 0 0 18px 18px; padding: 25px 0 29px 0; }
  .hero h1 { font-size: 1.19rem; }
  .section, .features, .about, .services, .team, .legal, .contact, .testimonials, .confirmation {
    margin-bottom: 34px;
    padding: 20px 2.5vw;
    border-radius: 17px;
    box-shadow: 0 1px 6px 0 rgba(1,40,64,0.12);
  }
  .footer-contact,
  footer nav a { font-size: 0.95rem; }
  .testimonial-card { flex-direction: column; gap: 5px; padding: 14px; font-size: 0.95rem; }
  .features .content-wrapper > h2, .testimonials h2, .about h2, .services h2 { font-size: 1.12rem; }
}
@media (max-width: 520px) {
  .feature-grid > div { min-width: 90vw; width: 100%; }
  .section, .about, .services, .team, .legal, .contact, .confirmation {
    padding: 15px 1vw;
    margin-bottom: 18px;
    border-radius: 12px;
  }
  .hero { padding: 15px 0 14px 0; border-radius: 0; }
  .footer-contact { font-size: 0.8rem; }
  .feature-item { gap: 6px; }
  h1 { font-size: 1.14rem; }
}

/* --- FLEX/LAYOUT OVERRIDES: CRITICAL! --- */
/* All layout containers use flexbox, not grid/columns */
/* No forbidden properties included! */

/* --- PLAYFUL ADDITIONS: Fun Fonts, Dynamic Colors --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&family=Open+Sans:wght@400;600&display=swap');

body, html {
  font-family: 'Open Sans', Arial, sans-serif;
}

h1, h2, h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}

/* Playful colored underline for section headings */
h2::after {
  display: block;
  content: '';
  height: 4px;
  width: 46px;
  background: #FFD978;
  border-radius: 2px;
  margin-top: 5px;
  margin-bottom: 8px;
  animation: underlineWiggle 0.7s 1;
}
@keyframes underlineWiggle {
  0%,100%{ transform:scaleX(0.9) rotate(-2deg); }
  30% { transform:scaleX(1.13) rotate(5deg);}
  60% { transform:scaleX(1.05) rotate(-4deg);}
  90% { transform:scaleX(1) rotate(2deg);}
}

/* Fun hover animation for all nav links and section cards */
nav a, .feature-grid > div, .testimonial-card, .card {
  transition: transform 0.17s cubic-bezier(.22,.68,.42,1.03);
}
nav a:hover, nav a:focus, .card:hover, .feature-grid > div:hover, .testimonial-card:hover {
  transform: scale(1.033) rotate(-1.5deg);
}

/* Decorative dots (can be inserted via JS or ::after as needed) */

/* --- FORM ELEMENTS for playful style --- */
input, textarea, select {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  padding: 10px 14px;
  border-radius: 13px;
  border: 2px solid #F4F8FB;
  background: #FFF;
  color: #012840;
  transition: border 0.15s;
  margin-bottom: 14px;
}
input:focus, textarea:focus, select:focus {
  border: 2px solid #D09E48;
  outline: none;
}
label {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #012840;
  display: block;
  font-size: 1rem;
  margin-bottom: 7px;
}

/* --- DL FAQ Style --- */
dt {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.07rem;
  color: #D09E48;
  margin: 10px 0 4px;
}
dd {
  font-size: 1rem;
  color: #273E51;
  margin: 0 0 13px 0;
}


/* --- ANIMATIONS --- */
@keyframes buttonPop {
  0% { transform: scale(1); }
  40% { transform: scale(1.09) rotate(-2deg); }
  60% { transform: scale(0.97) rotate(1.5deg); }
  100% { transform: scale(1); }
}
.button.primary:active,
.cookie-banner .button:active,
.cookie-modal .cookie-actions button:active {
  animation: buttonPop 0.18s;
}

/* --- SCROLLBARS --- */
::-webkit-scrollbar {
  width: 10px;
  background: #EAF3F9;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb {
  background: #D09E48;
  border-radius: 7px;
}

/* --- MISCELLANEOUS --- */
hr {
  border: none;
  border-top: 2px solid #F4F8FB;
  margin: 24px 0;
}

/* --- Z-INDEX LAYERING --- */
header, .mobile-menu { z-index: 1999; }
.cookie-banner { z-index: 29999; }
.cookie-modal-overlay { z-index: 35000; }

/* --- A11Y: COLOR CONTRAST --- */
.testimonial-card, .testimonials .testimonial-card, .cookie-banner, .cookie-modal {
  color: #012840;
  background: #FFF;
}

/* --- END OF STYLES --- */
