/* --- CSS RESET & NORMALIZATION --- */
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: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  background-color: #F5F6FA;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #F5F6FA;
  color: #20334A;
  min-height: 100vh;
  line-height: 1.7;
}

img {
  max-width: 100%;
  display: block;
}
a {
  color: #2196f3;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #FBB040;
  text-decoration: underline;
}
ul, ol {
  list-style: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}


/* --- BRAND COLORS & FONTS --- */
:root {
  --primary: #20334A;
  --secondary: #6EA2B5;
  --accent: #F5F6FA;
  --dynamic-yellow: #FFF200;
  --dynamic-salmon: #FF6987;
  --dynamic-green: #4DE98F;
  --dynamic-blue: #2596FF;
  --dynamic-orange: #FBB040;
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}


/* --- STRUCTURING CLASSES --- */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 24px rgba(32,51,74,0.09);
  position: relative;
}

/* --- HEADERS & NAVIGATION --- */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 12px rgba(32,51,74,0.07);
  position: relative;
  z-index: 20;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  gap: 24px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--primary);
  padding: 8px 2px;
  border-radius: 8px;
  position: relative;
  transition: background .15s, color .18s;
}
.main-nav a:hover, .main-nav a:focus {
  background-color: var(--dynamic-yellow);
  color: var(--dynamic-blue);
}
.cta-btn {
  background: var(--dynamic-salmon);
  color: #fff;
  border-radius: 20px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  padding: 10px 28px;
  margin-left: 12px;
  box-shadow: 0 2px 12px rgba(255,105,135,0.12);
  transition: background .2s, transform .15s, box-shadow .2s;
  border: none;
  cursor: pointer;
  outline: none;
  letter-spacing: 0.03em;
  animation: cta-pop-in 1s cubic-bezier(.61,1.47,.63,1.15);
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--dynamic-orange);
  color: #fff;
  transform: translateY(-3px) scale(1.04) rotate(-2deg);
  box-shadow: 0 4px 16px rgba(251,176,64,.21);
}
@keyframes cta-pop-in {
  0% {opacity: 0; transform: scale(0.4) translateY(-20px);}
  80% {opacity: 1; transform: scale(1.07) translateY(2px);}
  100% { opacity: 1; transform: none; }
}

/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  display: none;
  background: var(--dynamic-blue);
  color: #fff;
  font-size: 32px;
  padding: 6px 16px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 40;
  margin-left: 12px;
  transition: background .18s, transform .2s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--dynamic-yellow);
  color: var(--primary);
  transform: scale(1.07);
}
.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  left: 0; bottom: 0;
  background: #fff;
  z-index: 100;
  transform: translateX(100%);
  transition: transform .36s cubic-bezier(.79,1.63,.43,1);
  box-shadow: 0 8px 32px rgba(32,51,74,.21);
  padding-top: 60px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  position: absolute;
  top: 18px; right: 22px;
  background: var(--dynamic-yellow);
  border-radius: 50%;
  width: 38px; height: 38px;
  border: none;
  font-size: 26px;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 150;
  transition: background .15s, color .15s, transform .15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--dynamic-salmon);
  color: #fff;
  transform: scale(1.14);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 36px;
  padding: 10px 32px;
  width: 100vw;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--primary);
  font-weight: 700;
  padding: 12px 0;
  border-radius: 6px;
  text-align: left;
  transition: background .13s, color .14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--dynamic-blue);
  color: #fff;
}
@media (max-width: 1050px) {
  .main-nav, .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 550px) {
  .mobile-nav {
    padding: 10px 4vw;
    font-size: 18px;
  }
}

/* --- HERO & HEADINGS --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.6rem; line-height: 1.12; margin-bottom: 12px;}
h2 { font-size: 2rem; margin-bottom: 12px; color: var(--dynamic-blue);}
h3 { font-size: 1.4rem; color: var(--dynamic-salmon); }
h4, h5, h6 { font-size: 1.14rem; color: var(--primary);}
.subheadline {
  font-size: 1.28rem;
  color: var(--dynamic-blue);
  font-family: var(--font-display);
  font-weight: 500;
}

/* --- FORMS & CONTROLS --- */
input[type="text"], select {
  border: 2px solid var(--secondary);
  border-radius: 14px;
  padding: 12px 16px;
  margin: 0 12px 10px 0;
  font-size: 1rem;
  background: #fff;
  outline: none;
  min-width: 180px;
  max-width: 340px;
  color: var(--primary);
  box-shadow: 0 1px 4px rgba(110,162,181,0.08);
  transition: border .13s, box-shadow .19s;
}
input[type="text"]:focus, select:focus {
  border-color: var(--dynamic-orange);
  box-shadow: 0 2px 10px rgba(249,205,62,0.10);
}
.filter-options {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
.filter-options label {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--dynamic-salmon);
  font-weight: 600;
}
@media (max-width: 700px) {
  .filter-options {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* --- LAYOUT: FLEXBOX PATTERNS --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 4px 16px rgba(110,162,181,0.09);
  margin-bottom: 20px;
  padding: 32px 20px;
  flex: 1 1 300px;
  min-width: 240px;
  max-width: 390px;
  position: relative;
  transition: box-shadow .14s, transform .15s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 32px rgba(255,105,135,0.15);
  transform: translateY(-5px) rotate(0.6deg) scale(1.017);
}
.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: 20px;
  padding: 20px 24px;
  background: #fff;
  box-shadow: 0 4px 14px rgba(33,150,243,0.09);
  border-radius: 18px;
  min-width: 240px;
  margin-bottom: 22px;
  border-left: 6px solid var(--dynamic-salmon);
  position: relative;
  transition: box-shadow 0.17s, background 0.11s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  background: var(--dynamic-yellow);
  box-shadow: 0 8px 32px rgba(251,176,64,0.13);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: #F5F6FA;
  border-radius: 16px;
  min-width: 200px;
  box-shadow: 0 2px 8px rgba(110,162,181,0.12);
  margin-bottom: 14px;
  transition: background 0.11s, box-shadow 0.13s;
}
.feature-item:hover {
  background: var(--dynamic-green);
  color: #fff;
  box-shadow: 0 4px 24px rgba(77,233,143,.17);
}

@media (max-width: 900px) {
  .content-grid {
    flex-direction: column;
  }
  .card-container {
    flex-direction: column;
  }
}

/* --- HOME: FEATURES/USP --- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 12px 0 0 0;
  padding: 0;
  align-items: flex-start;
  justify-content: space-between;
}
.feature-grid li {
  flex: 1 1 220px;
  min-width: 170px;
  background: #E7F4FE;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 14px;
  font-family: var(--font-display);
  font-size: 1.08em;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 12px;
  box-shadow: 0 1px 8px rgba(110,162,181,0.08);
  transition: background .095s;
}
.feature-grid li img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--dynamic-yellow);
  box-shadow: 0 1px 4px rgba(255,242,0,0.08);
  padding: 6px;
  margin-right: 2px;
}
.feature-grid li:hover {
  background: var(--dynamic-blue);
  color: #fff;
}

@media (max-width: 600px) {
  .feature-grid {
    flex-direction: column;
    gap: 10px;
  }
  .feature-grid li {
    min-width: 0;
    width: 100%;
  }
}

/* --- ABOUT PAGE --- */
.text-section {
  margin: 8px 0 16px 0;
  padding-left: 0;
  padding-right: 0;
  font-weight: 400;
  color: var(--primary);
  font-size: 1.06em;
  border-radius: 9px;
  line-height: 1.7;
}
.text-section h2, .text-section h3 {
  margin-top: 16px;
}
.text-section ul, .text-section ol {
  list-style: disc inside;
  margin-left: 16px;
  margin-bottom: 14px;
}
.text-section ul li, .text-section ol li {
  margin-bottom: 7px;
  color: var(--dynamic-blue);
  font-size: 1.04em;
}
@media (max-width: 600px) {
  .text-section {
    font-size: 1em;
  }
}

/* --- SERVICES PAGE --- */
.service-list-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: space-between;
}
.service-list-grid .text-section {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(110,162,181,0.08);
  flex: 1 1 310px;
  min-width: 230px;
  padding: 18px 18px 8px 18px;
  margin: 0 0 10px 0;
  transition: background .11s, box-shadow .15s;
}
.service-list-grid .text-section:hover {
  background: var(--dynamic-yellow);
  box-shadow: 0 4px 24px rgba(255,242,0,.14);
}
@media (max-width: 900px) {
  .service-list-grid {
    flex-direction: column;
    gap: 12px;
  }
}

/* --- CARDS, BADGES, IMAGES --- */
.trust-badges {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 16px;
}
.trust-badges img {
  height: 44px; width: 44px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 9px rgba(110,162,181,0.08);
  padding: 8px;
}

/* --- CONTACT PAGE --- */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0 30px 0;
  font-size: 1.1em;
  font-family: var(--font-display);
  color: var(--dynamic-blue);
  border-left: 4px solid var(--dynamic-blue);
  padding-left: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(110,162,181,0.08);
}
.contact-details img {
  width: 22px;
  height: 22px;
  vertical-align: middle;
  margin-right: 8px;
}
.map-location {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.02em;
}
.map-location img {
  width: 24px;
  height: 24px;
}

/* --- FOOTER --- */
footer {
  background: var(--primary);
  color: #fff;
  padding: 34px 0 22px 0;
  font-size: 1em;
  border-radius: 32px 32px 0 0;
  box-shadow: 0 -2px 18px rgba(70,122,170,0.07);
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-nav a {
  color: var(--dynamic-yellow);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.01em;
  padding: 5px 2px;
  border-radius: 7px;
  transition: background .15s, color .14s;
}
.footer-nav a:hover {
  color: var(--dynamic-blue);
  background: var(--dynamic-yellow);
}
.footer-brand {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
  font-size: 1em;
  font-family: var(--font-body);
  font-weight: 400;
}
.footer-brand img {
  width: 32px;
  height: 32px;
}

/* --- TESTIMONIALS --- */
.testimonial-card p {
  color: var(--primary);
  font-family: var(--font-body);
  font-size: 1.18em;
  font-weight: 500;
}
.testimonial-card span {
  color: var(--dynamic-salmon);
  font-family: var(--font-display);
  font-size: 1.03em;
  font-weight: 600;
}
@media (max-width: 700px) {
  .testimonial-card {
    padding: 18px 10px;
  }
}

/* --- BUTTONS & INTERACTIONS --- */
button,
.cta-btn {
  cursor: pointer;
  transition: background .14s, color .12s, transform .13s, box-shadow .16s;
}
button:active, .cta-btn:active {
  transform: scale(0.97);
}

/* --- SECTION SPACING (Consistent) --- */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

@media (max-width: 700px) {
  section {
    padding: 24px 0px;
    margin-bottom: 38px;
  }
  .container {
    padding: 0 8px;
  }
}

/* --- RESPONSIVE FLEX DIRECTION --- */
@media (max-width: 900px) {
  .text-image-section, .content-grid {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

/* --- TYPOGRAPHY & PLAYFUL FEEL --- */
h1, h2, h3, h4, .cta-btn, .feature-grid li, .main-nav a, .mobile-nav a {
  font-family: var(--font-display);
  letter-spacing: 0.01em;
}
body, .text-section, .contact-details {
  font-family: var(--font-body);
}

/* Fun accent font for emphasis: */
span, .badge, .highlight, .footer-nav a {
  font-family: var(--font-display);
}

/* --- ANIMATED ELEMENTS / MICROINTERACTIONS --- */
.card, .service-list-grid .text-section, .feature-item, .testimonial-card {
  position: relative;
}
.card:after, .service-list-grid .text-section:after, .feature-item:after, .testimonial-card:after {
  content: '';
  display: block;
  position: absolute;
  left: -22px; top: 18px;
  background: var(--dynamic-blue);
  width: 10px; height: 10px;
  border-radius: 50%;
  opacity: 0.19;
  box-shadow: 0 0 30px var(--dynamic-salmon), 0 0 80px var(--dynamic-yellow);
  z-index: 1;
  pointer-events: none;
  animation: floaty-dot 4s infinite alternate ease-in-out;
}
@keyframes floaty-dot {
  0% { transform: scale(.95) translateY(-4px); }
  100% { transform: scale(1.19) translateY(5px) rotate(21deg); }
}


/* --- COOKIE CONSENT --- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #fffbe6;
  color: var(--primary);
  box-shadow: 0 -4px 18px rgba(251,176,64,0.11), 0 2px 12px rgba(32,51,74,0.12);
  z-index: 900;
  width: 100vw;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
  padding: 22px 40px;
  font-size: 1.08em;
  border-radius: 19px 19px 0 0;
  animation: slide-in-bottom .8s cubic-bezier(.71,1.72,.18,1.06);
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    padding: 17px 12px 24px 12px;
    gap: 12px;
    font-size: .97em;
  }
}
@keyframes slide-in-bottom {
  from {transform: translateY(110%); opacity:0;}
  to {transform: translateY(0); opacity:1;}
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
}
.cookie-btn {
  background: var(--dynamic-salmon);
  color: #fff;
  padding: 7px 20px;
  border-radius: 13px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1em;
  border: none;
  cursor: pointer;
  margin-left: 2px;
  transition: background .15s, color .15s, transform .12s;
  box-shadow: 0 1px 8px rgba(255,105,135,0.13);
}
.cookie-btn.settings {
  background: var(--dynamic-yellow);
  color: var(--primary);
}
.cookie-btn.reject {
  background: var(--dynamic-blue);
  color: #fff;
}
.cookie-btn:active {
  transform: scale(0.97);
}
.cookie-btn:hover, .cookie-btn:focus {
  opacity: .9;
  background: var(--dynamic-orange);
  color: var(--primary);
}

/* --- COOKIE MODAL --- */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(32,51,74,0.38);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadein-bg 0.24s;
}
@keyframes fadein-bg {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 38px rgba(110,162,181,0.13);
  padding: 34px 28px 27px 28px;
  max-width: 380px;
  width: 80vw;
  color: var(--primary);
  font-family: var(--font-body);
  animation: modal-pop 0.36s cubic-bezier(.61,1.18,.73,.94);
  position: relative;
}
@keyframes modal-pop {
  0% { opacity: 0; transform: scale(.58) translateY(120px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal h2 {
  color: var(--dynamic-blue);
  font-size: 1.38em;
  margin-bottom: 10px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 13px 0;
}
.cookie-category input[type="checkbox"], .cookie-category input[type="radio"] {
  accent-color: var(--dynamic-blue);
}
.cookie-category label {
  font-family: var(--font-body);
  font-size: 1em;
}
.cookie-modal .cookie-actions {
  margin-top: 22px;
  display: flex;
  gap: 11px;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  top: 10px; right: 11px;
  background: var(--dynamic-yellow);
  border: none;
  color: var(--primary);
  font-size: 20px;
  border-radius: 10px;
  width: 31px; height: 31px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 1px 7px rgba(251,176,64,.11);
  transition: background .13s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: var(--dynamic-blue);
  color: #fff;
}

/* --- PLAYFUL TOUCHES & ENERGETIC FEEL --- */
body, section, .container, .card, .feature-grid li, .service-list-grid .text-section, .testimonial-card {
  transition: background .21s, color .19s, box-shadow .17s;
}

section {
  /* Subtle color block on home alternating sections for playful dynamic */
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 24px rgba(32,51,74,0.08);
}
section:nth-child(2n+2) {
  background: #F7FAFD;
}

@media (max-width: 600px) {
  .footer-brand {
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
  }
}

/* --- UTILITIES --- */
.d-none { display: none !important; }
.text-center {
  text-align: center;
}
.mt-2 { margin-top: 8px; }
.mt-4 { margin-top: 16px; }
.mb-2 { margin-bottom: 8px; }
.mb-4 { margin-bottom: 16px; }
.p-2 { padding: 8px; }
.p-4 { padding: 16px; }

/* --- Custom Scrollbar for Playful Look --- */
::-webkit-scrollbar {
  width: 10px;
  background: var(--accent);
}
::-webkit-scrollbar-thumb {
  background: var(--dynamic-yellow);
  border-radius: 20px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--dynamic-salmon);
}

/* --- ANIMATION HIGHLIGHT for Important UI --- */
@keyframes bounce-in {
  0% { transform: scale(0.65) translateY(-22px); opacity: 0; }
  60% { transform: scale(1.08) translateY(9px); opacity: 1; }
  80% { transform: scale(0.98) translateY(-2px); }
  100% { transform: none; opacity: 1; }
}

.highlight {
  background: var(--dynamic-yellow);
  padding: 2px 6px;
  border-radius: 6px;
  color: var(--dynamic-salmon);
  font-weight: 700;
  animation: bounce-in 1.2s;
}

/* --- Prevent Card/Text Overlapping with Margin/Gaps --- */
.card, .card-container > *, .feature-item, .testimonial-card, .service-list-grid > * {
  margin-bottom: 20px;
}

/* --- Accessibility/Contrast improvements for testimonials --- */
.testimonial-card, .testimonial-card p, .testimonial-card span {
  color: #20334A;
  background: #fff;
}
.testimonial-card strong {
  color: var(--dynamic-salmon);
}

/* --- Z-Index Order --- */
header {
  z-index: 20;
}
.mobile-menu {
  z-index: 100;
}
.cookie-banner {
  z-index: 900;
}
.cookie-modal-overlay {
  z-index: 1100;
}

/* --- END --- */
