/* -----------------------------
   RESET & BASELINE 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, 
main, 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;
}
body {
  min-height: 100vh;
  background: #232C33;
  color: #F4F7FA;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.01em;
  background-color: #232C33;
  /* subtle dark bg for Tech Futuristic feel */
}

@media (max-width: 420px) {
  body { font-size: 15px; }
}

img { max-width: 100%; height: auto; display: block; }
a { color: #72E6FF; text-decoration: none; transition: color 0.2s; }
a:hover, a:focus { color: #18e4d7; text-decoration: underline; }
ul, ol { list-style: none; }

strong { font-weight: 700; }

/* Montserrat as display font, Open Sans for body */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #E3E6EA;
  margin-bottom: 12px;
  line-height: 1.18;
}
h1 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.3rem;
  font-weight: 500;
}
h4, h5, h6 {
  font-size: 1.05rem;
  font-weight: 600;
}

@media (min-width: 900px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.3rem; }
}

p, ul, ol {
  color: #F4F7FA;
  font-size: 1rem;
  margin-bottom: 12px;
  font-family: 'Open Sans', Arial, sans-serif;
}

/* Link visually distinct */
.main-nav a.nav-cta, .cta-button {
  background-color: #72E6FF;
  color: #262F36;
  border-radius: 30px;
  padding: 12px 26px;
  font-size: 17px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  box-shadow: 0 2px 15px 0 rgba(102, 241, 255, 0.17);
  border: none;
  transition: background 0.20s, color 0.20s, box-shadow 0.22s;
  position: relative;
  z-index: 1;
}
.main-nav a.nav-cta:hover, .cta-button:hover, .cta-button:focus {
  background: #18e4d7;
  color: #14181b;
  text-decoration: none;
  box-shadow: 0 4px 18px 0 rgba(24, 228, 215, 0.22);
}

/*-------------------------------
CONTAINER & SECTION SPACING
-------------------------------*/
.container {
  width: 100%;
  max-width: 1190px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  .section { padding: 28px 8px; margin-bottom: 38px; }
  .container { padding: 0 8px; }
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.text-section { max-width: 900px; margin: 0 auto; }

/*-----------------------------------
    HEADER/NAVIGATION
-----------------------------------*/
header {
  background: #222f39;
  width: 100%;
  box-shadow: 0 2px 8px 0 rgba(46,64,83,.03);
  position: sticky;
  top: 0;
  z-index: 100;
}
.logo {
  height: 64px;
  display: flex;
  align-items: center;
  padding: 0 5px;
}
.logo img { height: 44px; width: auto; }

.main-nav {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  margin-left: auto;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 16px;
}

.main-nav a {
  color: #E3E6EA;
  font-weight: 500;
  letter-spacing: 0.015em;
  padding: 8px 14px;
  border-radius: 19px;
  transition: background .17s, color .2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #2E4053;
  color: #72E6FF;
}

.main-nav a.nav-cta {
  margin-left: 8px;
  color: #222F39;
}

header {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0 14px;
  height: 80px;
  background: #232C33;
  border-bottom: 1.5px solid #263546;
}

@media (max-width: 990px) {
  .main-nav {
    font-size: 15px;
    gap: 10px;
  }
  header {
    padding: 0 5px;
  }
}

/* Hide nav for mobile, show toggle */
.mobile-menu-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: none;
  font-size: 2.3rem;
  color: #72E6FF;
  padding: 5px 14px;
  cursor: pointer;
  z-index: 102;
  transition: color 0.2s;
}
.mobile-menu-toggle:hover {
  color: #18e4d7;
}
@media (max-width: 900px) {
  .main-nav { display: none !important; }
  .mobile-menu-toggle {
    display: block;
  }
}

/*-----------------------------------
MOBILE MENU
-----------------------------------*/
.mobile-menu {
  position: fixed;
  left: 0; top: 0; height: 100%; width: 100vw;
  background: rgba(36, 50, 60, 0.98);
  z-index: 101;
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(.83,.22,.52,1.01);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 40px;
}
.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-close {
  background: none;
  border: none;
  color: #72E6FF;
  font-size: 2.3rem;
  align-self: flex-end;
  margin-right: 32px;
  margin-bottom: 22px;
  cursor: pointer;
  z-index: 102;
  transition: color 0.2s;
}
.mobile-menu-close:hover {
  color: #18e4d7;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 90vw;
  margin: 0 auto;
  align-items: flex-start;
}
.mobile-nav a {
  color: #DBF6FF;
  font-size: 1.28em;
  padding: 13px 0;
  border-radius: 16px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  transition: background .17s, color .19s;
  width: 100%;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #232C33;
  color: #72E6FF;
}

@media (min-width: 901px) {
  .mobile-menu { display: none !important; }
}

/*-----------------------------------
HERO/BANNER & CTA
-----------------------------------*/
.hero {
  background: linear-gradient(120deg,#263546 0%, #2E4053 100%);
  padding: 64px 0 56px 0;
  background-blend-mode: multiply;
  box-shadow: 0 5px 68px 0 rgba(51,255,255,0.02);
}
.hero .container {
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}
.hero h1 {
  color: #72E6FF;
  text-shadow: 0 2px 16px #283c55cc, 0 0 1.5px #72E6FFbb;
  font-size: 2.5rem;
}
.hero p {
  color: #E3E6EA;
  font-size: 1.24rem;
  margin-bottom: 8px;
}

.cta {
  padding: 42px 0;
  background: #232C33;
  display: flex;
}
.cta .content-wrapper {
  align-items: center;
  justify-content: center;
}

.cta-button {
  min-width: 220px;
  background: #72E6FF;
  color: #222F39;
  border-radius: 26px;
  padding: 15px 32px;
  font-size: 1.18em;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin: 0 auto;
  box-shadow: 0 2px 24px 0 rgba(102, 241, 255, 0.28);
  transition: background 0.22s, color 0.18s, box-shadow 0.2s;
}
.cta-button:hover, .cta-button:focus {
  background: #18e4d7;
  color: #14181b;
  box-shadow: 0 8px 28px 0 rgba(24, 228, 215, 0.2);
}

/*-----------------------------------
FLEX LAYOUTS FOR SITE ELEMENTS
-----------------------------------*/
.feature-grid,
.values-grid,
.numbers-grid,
.blog-list,
.category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.feature-grid li,
.values-grid li,
.numbers-grid li,
.category-list li {
  background: #263546;
  color: #E3E6EA;
  border-radius: 14px;
  box-shadow: 0 2px 7px 0 rgba(88,168,210,0.09);
  padding: 18px 18px 16px 18px;
  display: flex;
  align-items: flex-start;
  font-size: 1.03em;
  gap: 12px;
  min-width: 210px;
  flex: 1 1 210px;
}

.feature-grid li img { width:28px; height:28px; margin-right:10px; }
.values-grid li strong, .feature-grid li strong { color: #72E6FF; }

.numbers-grid li {
  font-size: 1.185em;
  text-align: center;
  background: #2E4053;
  color: #DBF6FF;
  border: 1.5px solid #72E6FF33;
  font-family: 'Montserrat', Arial, sans-serif;
}

.category-list li {
  background: #232C33;
  color: #72E6FF;
  border: 1.2px solid #263546;
  font-family: 'Montserrat', Arial;
  font-size: 1em;
  padding: 12px 18px;
}

.blog-list article {
  background: #222F39;
  color: #E3E6EA;
  border-radius: 14px;
  box-shadow: 0 2px 8px 0 rgba(100,221,255,0.06);
  padding: 22px 18px 14px 18px;
  margin-bottom: 14px;
  flex: 1 1 288px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.blog-list article h3 { color: #72E6FF; font-size: 1.2em; margin-bottom: 8px; }
.blog-list article a {
  color: #DBF6FF;
  font-weight: 600;
  align-self: flex-end;
  padding-top: 2px;
}
.blog-list article a:hover {
  color: #18e4d7;
  text-decoration: underline;
}

.featured-post {
  background: #232C33;
  border: 2.5px solid #18e4d7;
  color: #E3E6EA;
  border-radius: 18px;
  box-shadow: 0 2px 8px 0 rgba(24, 228, 215, 0.08);
  padding: 25px 20px 17px 20px;
  margin-top: 18px;
}
.featured-post h3 { color: #18e4d7; margin-bottom: 7px; font-size: 1.2em; }
.featured-post a {
  color: #72E6FF;
  font-weight: 600;
  margin-top: 4px;
  display: inline-block;
}
.featured-post a:hover { color: #18e4d7; }

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; gap: 18px; }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #263546;
  color: #E3E6EA;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(46,64,83,0.08);
  padding: 30px 22px 20px 22px;
  flex: 1 1 288px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1;
  transition: box-shadow .19s, transform .22s;
}
.card:hover {
  box-shadow: 0 8px 28px 0 rgba(24, 228, 215, 0.17);
  transform: translateY(-4px) scale(1.022);
}

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

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

ul, ol {
  margin-left: 2px;
  margin-bottom: 12px;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: #263546;
  color: #E3E6EA;
  border-radius: 14px;
  box-shadow: 0 2px 7px 0 rgba(88,168,210,0.09);
  padding: 18px 18px 9px 18px;
  margin-bottom: 8px;
  flex: 1 1 auto;
}
.faq-item h3 { color: #72E6FF; margin-bottom: 7px; font-size: 1.05em; }

/*-----------------------------------
TESTIMONIALS
-----------------------------------*/
.testimonials, .testimonial-card {
  width: 100%;
}
.testimonial-card {
  background: #E3E6EA;
  color: #222F39;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 2px 18px 0 rgba(24, 228, 215, 0.10);
  margin-bottom: 22px;
  border-left: 8px solid #18e4d7;
  position: relative;
  min-width: 0;
  max-width: 740px;
  transition: box-shadow .16s;
}
.testimonial-card h3 {
  color: #18e4d7;
  margin-bottom: 5px;
}
.testimonial-card p {
  color: #232C33;
  font-size: 1.06em;
  font-weight: 500;
  margin-bottom: 3px;
}
.testimonial-card span {
  color: #6C8EAD;
  font-size: 0.98em;
  font-weight: 400;
  font-family: 'Open Sans', Arial, sans-serif;
}
.testimonial-card:hover {
  box-shadow: 0 8px 28px 0 rgba(24, 228, 215, 0.17);
}

/*-----------------------------------
MISC STYLES
-----------------------------------*/
.map-placeholder {
  background: #232C33;
  color: #72E6FF;
  border: 1.8px dashed #18e4d7;
  border-radius: 16px;
  padding: 28px 22px;
  text-align: center;
  font-family: 'Montserrat', Arial, sans-serif;
  box-shadow: 0 1.5px 6px 0 rgba(24, 228, 215, 0.09);
}
.contact-details p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.contact-details img { width: 22px; height: 22px; }

/*----------------------
  FEATURE ITEMS LAYOUT
-----------------------*/
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

/*----------------------
  FOOTER
-----------------------*/
footer {
  background: #212B32;
  padding: 34px 0 0 0;
  border-top: 2.5px solid #263546;
  color: #E3E6EA;
  font-size: 0.99em;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  gap: 28px;
}
.footer-logo { flex: 0 0 122px; display: flex; align-items: center; }
.footer-logo img { height: 45px; }
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0 30px;
}
.footer-nav a {
  color: #72E6FF;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 0.97em;
  transition: color .17s;
}
.footer-nav a:hover, .footer-nav a:focus { color: #18e4d7; text-decoration: underline; }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #E3E6EA;
  font-size: 0.98em;
  flex: 1 1 auto;
}
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #E3E6EA;
  margin-bottom: 2px;
}
.footer-contact img { width: 18px; height: 18px; }

.footer-copy {
  width: 100%;
  text-align: center;
  background: #161B1D;
  color: #839ABF;
  font-size: 0.94em;
  padding: 17px 0 13px 0;
  margin-top: 18px;
}

@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
    padding: 0 12px;
  }
  .footer-logo { margin-bottom: 10px; }
  .footer-nav { flex-direction: row; gap: 10px; margin: 0 8px 0 0; }
  .footer-contact { font-size: 0.95em; }
}

/*----------------------
  COOKIE CONSENT BANNER
-----------------------*/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #222F39;
  color: #E3E6EA;
  z-index: 2001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 18px 18px 18px;
  box-shadow: 0 -2px 12px 0 rgba(18, 228, 215, 0.15);
  gap: 16px;
  animation: cookieBannerIn .68s cubic-bezier(.66,.18,.32,.98);
}
@keyframes cookieBannerIn {
  0% { transform: translateY(100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner__text {
  flex: 1 1 250px;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1em;
  max-width: 550px;
  margin-right: 20px;
}
.cookie-banner__actions {
  display: flex;
  flex-direction: row;
  gap: 9px;
  align-items: center;
}
.cookie-btn,
.cookie-btn-secondary {
  padding: 10px 20px;
  border-radius: 22px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1em;
  cursor: pointer;
  transition: background 0.18s, color 0.14s, box-shadow 0.16s;
  margin: 0 2px;
}
.cookie-btn {
  background: #18e4d7;
  color: #14181b;
  box-shadow: 0 1px 5px 0 rgba(24, 228, 215, 0.09);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #72E6FF;
  color: #212B32;
  box-shadow: 0 2px 15px 0 rgba(102, 241, 255, 0.19);
}
.cookie-btn-secondary {
  background: #263546;
  color: #E3E6EA;
}
.cookie-btn-secondary:hover, .cookie-btn-secondary:focus {
  background: #2E4053;
  color: #18e4d7;
}

@media (max-width: 700px) {
  .cookie-banner { flex-direction: column; gap: 9px; align-items: flex-start; }
  .cookie-banner__text { margin-right: 0; }
  .cookie-banner__actions { align-self: flex-end; }
}

/* Cookie modal */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(30, 40, 50, 0.82);
  z-index: 2310;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookieOverlayIn .45s cubic-bezier(.78,.2,.3,.99);
}
@keyframes cookieOverlayIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: #232C33;
  border-radius: 18px;
  padding: 32px 25px 24px 25px;
  color: #E3E6EA;
  box-shadow: 0 2px 24px 0 rgba(18, 228, 215, 0.15);
  max-width: 400px;
  width: 95vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: cookieModalIn .41s cubic-bezier(.77,.17,.2,1);
}
@keyframes cookieModalIn {
  0% { transform: translateY(80px) scale(0.93); opacity: 0; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal h2 { color: #72E6FF; font-size: 1.21em; margin-bottom: 10px; }
.cookie-modal__close {
  position: absolute;
  right: 22px; top: 20px;
  background: none;
  border: none;
  color: #18e4d7;
  font-size: 2rem;
  cursor: pointer;
  z-index: 24;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 9px;
  margin-bottom: 8px;
}
.cookie-category label {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1em;
  color: #E3E6EA;
}
.cookie-switch {
  width: 36px;
  height: 20px;
  border-radius: 15px;
  background: #263546;
  position: relative;
  transition: background 0.18s;
  margin-left: 7px;
  display: inline-block;
}
.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-switch-slider {
  position: absolute;
  top: 2px; left: 2px;
  width: 16px; height: 16px;
  background: #E3E6EA;
  border-radius: 50%;
  transition: transform 0.21s, background 0.14s;
}
.cookie-switch input:checked + .cookie-switch-slider {
  background: #18e4d7;
  transform: translateX(16px);
}
.cookie-switch input:disabled + .cookie-switch-slider {
  background: #B3C9D3;
  cursor: not-allowed;
}

.cookie-modal .cookie-btn {
  margin-top: 8px;
}

@media (max-width:590px) {
  .cookie-modal { padding: 18px 9px 18px 12px; min-width: 0; }
}

/*-----------------------------------
MEDIA QUERIES FOR RESPONSIVE FLEXBOX
-----------------------------------*/
@media (max-width: 900px) {
  .content-grid, .feature-grid, .values-grid, .blog-list, .card-container {
    gap:16px;
  }
}
@media (max-width: 840px) {
  .feature-grid, .values-grid, .card-container, .numbers-grid, .blog-list {
    flex-direction: column;
    gap: 12px;
  }
  .category-list {
    flex-wrap: wrap;
    flex-direction: row;
    gap: 9px;
  }
}

/*-----------------------------------
NEON/TECH FUTURISTIC ACCENTS
-----------------------------------*/
.section, .feature-grid li, .values-grid li, .faq-item, .blog-list article, .card, .featured-post {
  border: 1.5px solid #263546;
}
@media (min-width: 1100px) {
  .section {
    border-radius: 19px;
    box-shadow: 0 4px 36px 0 #18e4d71e;
  }
}

.feature-grid li, .values-grid li, .faq-item, .featured-post, .blog-list article, .card {
  position: relative;
  transition: box-shadow 0.15s, border-color 0.15s;
}
.feature-grid li:hover, .blog-list article:hover, .card:hover, .faq-item:hover, .featured-post:hover {
  box-shadow: 0 7px 20px 0 #18e4d750, 0 0 12px #18e4d730;
  border-color: #18e4d7;
  z-index: 1;
}

/* Modern focus styles */
a:focus, button:focus, .cta-button:focus {
  outline: 2px solid #18e4d7;
  outline-offset: 2.5px;
  background: #232C33;
  color: #18e4d7;
}

/*----------------------
SCROLLBAR (Modern Touch)
-----------------------*/
::-webkit-scrollbar { background: #263546; width: 9px; }
::-webkit-scrollbar-thumb { background: #18e4d7cc; border-radius: 9px; }

/*----------------------
  MICRO-INTERACTIONS
-----------------------*/
button, .cta-button, .cookie-btn, .cookie-btn-secondary {
  cursor: pointer;
  box-shadow: none;
  transition: box-shadow .16s, background .15s, color .12s, transform 0.15s;
}
button:active, .cta-button:active {
  transform: scale(0.98);
}

/*----------------------
  Selection color
-----------------------*/
::selection {
  background: #18e4d7;
  color: #212B32;
}

/*----------------------
  MISC FOR SPACING & TYPOGRAPHY
-----------------------*/
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; }

/*---------------
 Z-INDEX LAYERS
----------------*/
.mobile-menu { z-index: 101; }
.mobile-menu-toggle { z-index: 102; }
.cookie-banner { z-index: 2001; }
.cookie-modal-overlay { z-index: 2310; }

/*----------------------
  END OF STYLE.CSS
-----------------------*/
