/* CSS RESET & BASE STYLES ------------------------------------- */
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: inherit;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F4F2EB;
  color: #22323C;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
input, textarea, button, select {
  font-family: inherit;
  font-size: inherit;
}
button {
  background: none;
  border: none;
  cursor: pointer;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #325D6A;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #194049;
  text-decoration: underline;
}

/* TYPOGRAPHY ------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #22323C;
}
h1 {
  font-size: 2.25rem; /* 36px */
  margin-bottom: 20px;
}
h2 {
  font-size: 1.75rem; /* 28px */
  margin-bottom: 16px;
}
h3 {
  font-size: 1.25rem; /* 20px */
  font-weight: 600;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1.125rem;
  font-weight: 500;
}
p, ul, ol, table, .text-section {
  font-size: 1rem;
  color: #22323C;
  margin-bottom: 16px;
}
ul, ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
ul li, ol li {
  margin-bottom: 8px;
}
small, .footer-nav {
  font-size: 0.93rem;
}
strong {
  font-weight: 700;
}

/* BUTTONS ------------------------------------- */
.cta-primary,
button.cta-primary {
  display: inline-block;
  background: #325D6A;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 28px;
  box-shadow: 0 2px 6px 0 rgba(50,93,106,0.10);
  letter-spacing: 0.02em;
  border: none;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  cursor: pointer;
}
.cta-primary:hover, .cta-primary:focus {
  background: #263F4A;
  box-shadow: 0 4px 14px 0 rgba(50,93,106,0.18);
  transform: translateY(-2px) scale(1.03);
  text-decoration: none;
  color: #fff;
}
/* Utility Button for Banner & Modal */
.button-secondary {
  display: inline-block;
  background: #fff;
  color: #325D6A;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 22px;
  border: 2px solid #325D6A;
  margin-right: 12px;
  transition: background 0.18s, color 0.18s, border 0.18s;
}
.button-secondary:hover, .button-secondary:focus {
  background: #325D6A;
  color: #fff;
  border-color: #22323C;
}
.button-tertiary {
  display: inline-block;
  background: #88B099;
  color: #22323C;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 10px 24px;
  border-radius: 20px;
  border: none;
  margin-right: 12px;
  transition: background 0.18s, color 0.18s;
}
.button-tertiary:hover, .button-tertiary:focus {
  background: #325D6A;
  color: #fff;
}

/* HEADER & NAV ----------------------------------- */
header {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #E3E9ED;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: sticky;
  top: 0;
  z-index: 101;
  padding: 0 0;
  min-height: 72px;
  box-shadow: 0 2px 6px rgba(50,93,106,0.05);
}
header > a > img {
  height: 48px;
  margin: 12px 32px 12px 20px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-right: auto;
}
.main-nav a {
  color: #325D6A;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 8px 8px;
  border-radius: 5px;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a.active {
  background: #F4F2EB;
  color: #22323C;
}
header .cta-primary {
  margin: 0 16px 0 0;
}
.mobile-menu-toggle {
  display: none;
  background: #325D6A;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  margin-right: 16px;
  transition: background 0.2s;
  z-index: 202;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #263F4A;
}
/* MOBILE NAVIGATION ----------------------------------- */
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0;
  right: 0;
  width: 85vw;
  max-width: 340px;
  height: 100vh;
  background: #fff;
  box-shadow: -2px 0 16px rgba(50,93,106,.10);
  z-index: 300;
  transform: translateX(105%);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(.86,0,.07,1), opacity 0.2s;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2rem;
  padding: 18px 18px 8px 18px;
  line-height: 1;
  background: transparent;
  color: #325D6A;
  border: none;
  cursor: pointer;
  transition: color 0.18s;
}
.mobile-menu-close:hover {
  color: #22323C;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 10px;
  padding: 0 18px 18px 32px;
}
.mobile-nav a {
  padding: 14px 8px;
  color: #325D6A;
  font-size: 1.12rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover,
.mobile-nav a.active {
  background: #f4f2eb;
  color: #22323C;
}
/* OVERLAY for mobile menu - handled in .active JS if used */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34,50,60,0.25);
  z-index: 299;
  opacity: 1;
  transition: opacity 0.22s;
  pointer-events: auto;
}

@media (max-width: 1024px) {
  header {
    flex-wrap: wrap;
    min-height: 60px;
    padding: 0 0 0 0;
  }
  .main-nav {
    gap: 14px;
    font-size: 0.97rem;
  }
  header > a > img {
    height: 42px;
    margin: 8px 18px 8px 12px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  header .cta-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* CONTAINER & LAYOUT ----------------------------------- */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* SPACING & FLEXBOX LAYOUT PATTERNS ------------------ */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  border-radius: 18px;
  box-shadow: none;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 8px rgba(50,93,106,0.085);
  padding: 28px 24px;
  min-width: 230px;
  flex: 1 1 220px;
  transition: box-shadow 0.2s, transform 0.18s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 20px rgba(50,93,106,.13), 0 1.5px 6px rgba(136,176,153,0.11);
  transform: translateY(-3px) scale(1.025);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fafbfc;
  border-radius: 14px;
  margin-bottom: 20px;
  box-shadow: 0 1.5px 7px rgba(50,93,106,0.04);
  min-width: 220px;
  border-left: 6px solid #88B099;
  transition: box-shadow 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 4px 22px rgba(50,93,106,0.13);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 12px;
  padding: 24px 20px;
  box-shadow: 0 1.5px 7px rgba(50,93,106,0.07);
  margin-bottom: 18px;
  min-width: 160px;
}

/* HERO & BANNER SECTIONS ------------------------- */
.hero {
  background: #f6fafd;
  border-radius: 0 0 24px 24px;
  box-shadow: 0 2px 12px 0 rgba(136,176,153,0.07);
  padding: 48px 0 60px 0;
  margin-bottom: 60px;
}
.hero .container .content-wrapper {
  align-items: flex-start;
  text-align: left;
  gap: 16px;
}
.hero h1 {
  color: #325D6A;
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.hero p {
  font-size: 1.17rem;
  margin-bottom: 24px;
  color: #325D6A;
}

/* FEATURES ----------------------------- */
.features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  margin-top: 18px;
}
.features .feature-grid li {
  background: #fff;
  border-radius: 10px;
  padding: 22px 18px 18px 18px;
  min-width: 170px;
  flex: 1 1 170px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  box-shadow: 0 1.5px 7px rgba(50,93,106,0.07);
  font-size: 1rem;
  transition: box-shadow 0.15s;
}
.features .feature-grid li img {
  width: 36px;
  height: 36px;
  margin-bottom: 5px;
  opacity: 0.82;
}
.features .feature-grid li small {
  color: #59717e;
}
.features .feature-grid li:hover {
  box-shadow: 0 5px 24px rgba(50,93,106,0.12);
}

/* ABOUT & TEXT-SECTIONS ----------------------------- */
.about .text-section,
.legal .text-section,
.contact .text-section,
.next-steps.text-section {
  background: #fff;
  border-radius: 10px;
  padding: 24px 22px;
  box-shadow: 0 1.5px 7px rgba(50,93,106,0.06);
  margin-bottom: 16px;
}

/* SERVICE LIST/GRID --------------------------- */
.services .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
  margin-bottom: 24px;
}
.services .service-list li {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1.5px 7px rgba(50,93,106,0.07);
  flex: 1 1 220px;
  min-width: 210px;
  padding: 22px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
}
.services .service-list li img {
  width: 36px;
  height: 36px;
  margin-bottom: 4px;
  opacity: 0.84;
}
.service-price {
  display: inline-block;
  margin-top: 6px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  color: #325D6A;
}

/* PRICING TABLE ----------------------------------- */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 1.5px 7px rgba(50,93,106,0.06);
  margin-bottom: 24px;
  overflow: hidden;
}
.pricing-table th, .pricing-table td {
  padding: 16px 11px;
  border-bottom: 1px solid #eef2f4;
  text-align: left;
}
.pricing-table th {
  background: #f6fafd;
  color: #325D6A;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}

/* BLOG & ARTICLE LISTS ----------------------------- */
.article-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 18px;
  list-style: none;
}
.article-list li {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1.5px 7px rgba(50,93,106,0.06);
  flex: 1 1 250px;
  min-width: 200px;
  padding: 20px 16px 17px 20px;
}
.topic-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin-bottom: 18px;
}
.topic-categories li {
  background: #88B099;
  color: #22323C;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 0.97rem;
  font-weight: 500;
  border-radius: 6px;
  padding: 7px 16px;
}

/* TESTIMONIALS ------------------------------------ */
.testimonials .testimonial-card {
  background: #fff;
  border-left: 6px solid #325D6A;
  color: #22323C;
}
.testimonial-card .text-section p {
  color: #22323C;
  font-size: 1.1rem;
  margin-bottom: 7px;
}
.testimonial-card span {
  color: #59717e;
  font-size: 0.95rem;
  display: block;
  margin-top: 4px;
}

/* CTA SECTIONS ------------------------------------- */
.cta {
  background: #325D6A;
  color: #fff;
  border-radius: 14px;
  padding: 40px 0;
  margin-bottom: 60px;
  box-shadow: 0 2px 16px 0 rgba(50,93,106,0.05);
}
.cta .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 16px;
}
.cta h2, .cta p {
  color: #fff;
}
.cta .cta-primary {
  background: #88B099;
  color: #325D6A;
  box-shadow: 0 2px 13px 0 rgba(136,176,153,0.16);
}
.cta .cta-primary:hover {
  background: #fff;
  color: #22323C;
}

/* CONTACT & MAP ------------------------------------ */
.contact .text-section {
  flex: 2 1 240px;
}
.map-location {
  flex: 1 1 180px;
  background: #f6fafd;
  border-radius: 8px;
  padding: 18px 14px 14px 14px;
  box-shadow: 0 1.5px 7px rgba(50,93,106,0.06);
  color: #22323C;
  font-size: 1rem;
  margin-left: 18px;
}

/* FOOTER ------------------------------------------- */
footer {
  background: #325D6A;
  color: #fff;
  padding: 38px 0 12px 0;
  box-shadow: 0 -1.5px 12px 0 rgba(50,93,106,0.03);
  margin-top: 40px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin-bottom: 7px;
}
.footer-nav a {
  color: #fff;
  font-weight: 500;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.02rem;
  opacity: 0.91;
  transition: opacity 0.14s, color 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #88B099;
  opacity: 1;
}
footer small {
  display: block;
  text-align: center;
  margin-top: 5px;
  opacity: 0.83;
  font-size: 0.93rem;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}

/* CONFIRMATION / THANK-YOU ------------------------- */
.confirmation {
  background: #f6fafd;
  border-radius: 10px;
  box-shadow: 0 1.5px 7px rgba(50,93,106,0.06);
  padding: 38px 0;
}
.next-steps {
  margin-bottom: 18px;
}

/* LEGAL / POLICY PAGES ----------------------------- */
.legal .text-section {
  max-width: 760px;
  margin: 0 auto;
  padding-bottom: 32px;
}

/* COOKIE CONSENT BANNER ---------------------------- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 400;
  background: #fff;
  border-top: 4px solid #325D6A;
  box-shadow: 0 -2px 18px rgba(50,93,106,0.13);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  padding: 22px 24px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #22323C;
  flex-wrap: wrap;
  opacity: 1;
  transition: bottom 0.26s, opacity 0.26s;
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 12px;
}
.cookie-banner.hide {
  opacity: 0;
  bottom: -200px;
  pointer-events: none;
}

/* COOKIE MODAL ------------------------------------- */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 410;
  background: rgba(34,50,60,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.25s;
  animation: fadeIn .32s;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 14px;
  padding: 36px 24px 24px 24px;
  min-width: 312px;
  max-width: 94vw;
  max-height: 94vh;
  box-shadow: 0 4px 31px #325d6a15, 0 1.5px 8px #88b09915;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  position: relative;
  opacity: 1;
  animation: fadeIn .3s;
}
.cookie-modal-content h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  margin-bottom: 6px;
  color: #325D6A;
  font-size: 1.22rem;
}
.cookie-modal-content ul {
  padding-left: 18px;
  margin-bottom: 8px;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 1.65rem;
  background: none;
  border: none;
  color: #325D6A;
  cursor: pointer;
  opacity: 0.65;
  transition: opacity 0.17s, color 0.17s;
}
.cookie-modal .modal-close:hover {
  opacity: 1;
  color: #22323C;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.cookie-category label {
  font-weight: 600;
  font-size: 1rem;
  color: #325D6A;
  margin-left: 2px;
}
.cookie-switch {
  position: relative;
  width: 40px;
  height: 20px;
}
.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-slider {
  position: absolute;
  cursor: pointer;
  background: #e3e9ed;
  border-radius: 12px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: background 0.19s;
}
.cookie-switch input:checked + .cookie-slider {
  background: #88B099;
}
.cookie-slider:before {
  content: '';
  position: absolute;
  height: 16px;
  width: 16px;
  left: 2px;
  bottom: 2px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 .5px 1.5px #325d6a10;
  transition: transform 0.19s;
}
.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(20px);
}
.cookie-category input[disabled] + .cookie-slider {
  background: #e3e9ed;
  opacity: 0.6;
  pointer-events: none;
}
/* Hide scrollbar for modals - fallback for custom scroll */
.cookie-modal-content::-webkit-scrollbar {
  width: 8px;
  background: #f4f2eb;
  border-radius: 8px;
}

/* RESPONSIVE DESIGN (MOBILE-FIRST) ------------------ */
@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }
  .feature-grid, .service-list, .article-list {
    gap: 14px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 96vw;
    padding-left: 8px;
    padding-right: 8px;
  }
  .feature-grid, .service-list, .article-list {
    gap: 8px;
  }
}
@media (max-width: 768px) {
  .section {
    margin-bottom: 36px;
    padding: 20px 5px;
    border-radius: 12px;
  }
  .hero {
    padding: 28px 0 34px 0;
    border-radius: 0 0 12px 12px;
  }
  h1 { font-size: 1.65rem; }
  h2 { font-size: 1.2rem; }
  .feature-grid, .service-list, .article-list {
    flex-direction: column;
    gap: 12px;
  }
  .card, .feature-item, .testimonial-card, .article-list li, .service-list li {
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 14px;
    padding: 18px 10px;
  }
  .content-wrapper {
    gap: 7px;
  }
  .content-grid {
    flex-direction: column;
    gap: 10px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 11px;
    padding: 12px 8px;
  }
  .cta {
    border-radius: 7px;
    padding: 24px 0;
  }
  .map-location {
    margin-left: 0;
    margin-top: 12px;
    border-radius: 7px;
    padding: 9px 5px;
    font-size: 0.97rem;
  }
}
@media (max-width: 520px) {
  .container {
    max-width: 100vw;
    padding-left: 2px;
    padding-right: 2px;
  }
  .cookie-banner,
  .cookie-modal-content {
    font-size: 0.98rem;
    padding-left: 8px;
    padding-right: 8px;
  }
  .footer-nav {
    gap: 8px;
    font-size: 0.93rem;
    flex-wrap: wrap;
  }
}

/* MICRO-INTERACTIONS & TRANSITIONS ------------------ */
a, .cta-primary, button, .mobile-menu-toggle, .button-secondary, .button-tertiary {
  outline: none;
  transition: background 0.18s, color 0.18s, box-shadow 0.16s, border 0.18s, transform 0.09s;
}
a:focus-visible, .cta-primary:focus-visible, button:focus-visible, .button-secondary:focus-visible {
  outline: 2px solid #88B099 !important;
  outline-offset: 2px;
}

/* VISUAL HIERARCHY ---------------------------------- */
h1, h2, h3 { letter-spacing: 0.015em; }
.section:not(.hero):not(.cta) h2 {
  color: #325D6A;
}

/* CUSTOM SCROLLBAR COLORS -------------------------- */
body::-webkit-scrollbar {
  width: 14px;
}
body::-webkit-scrollbar-thumb {
  background: #88B099;
  border-radius: 11px;
}
body::-webkit-scrollbar-track {
  background: #f6fafd;
}

/* SELECTION COLORS ---------------------------------- */
::selection {
  background: #88B09977;
  color: #22323C;
}

/* Z-INDEXS (header:101, menu:300, cookie:400, modal:410)*/
