/* NeuroClean Vibrant Energetic CSS - Mobile First, Flexbox Only, Responsive, Modern */

/* 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,
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; }
*, *:before, *:after { box-sizing: inherit; }
body {
  background: #f3f7fa;
  color: #222;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}
a {
  color: #20445a;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.6,0,.4,1);
}
a:hover, a:focus {
  color: #38b29f;
}
ul, ol { list-style: none; }
section, main, footer, header, nav { display: block; }

/* COLOR PALETTE */
:root {
  --primary: #20445a;
  --secondary: #38b29f;
  --accent: #f3f7fa;
  --electric-pink: #f20076;
  --electric-yellow: #ffe713;
  --electric-cyan: #09f0e8;
  --electric-blue: #0097fc;
  --white: #fff;
  --black: #181a20;
  --header-bg: #ffffff;
  --footer-bg: #1a3342;
  --shadow-lg: 0 6px 32px 0 rgba(32,68,90,0.18);
  --shadow-md: 0 2px 12px rgba(56,178,159,0.17);
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
}
h1 {
  font-size: 2.5rem;
  letter-spacing: -1px;
  text-transform: uppercase;
}
h2 {
  font-size: 2rem;
  text-transform: uppercase;
  margin-bottom: 12px;
}
h3 {
  font-size: 1.4rem;
  color: var(--secondary);
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1.1rem;
  font-weight: 600;
}
p, ul, ol {
  margin-bottom: 16px;
}
strong {
  font-weight: 700;
  color: var(--primary);
}
.text-section ul, .content-wrapper ul, .text-section ol, .content-wrapper ol {
  margin-left: 20px;
  margin-bottom: 18px;
  list-style: disc inside;
}
.text-section ul li, .content-wrapper ul li, .feature-item li, li {
  font-size: 1rem;
  margin-bottom: 12px;
}

/* CONTAINER & WRAPPERS */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* HEADER & NAVIGATION */
header {
  background: var(--header-bg);
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 0;
  z-index: 50;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 16px;
}
.branding {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.6rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--primary);
}
.main-nav {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-left: 48px;
}
.main-nav a {
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.25px;
  color: var(--primary);
  padding: 6px 12px;
  border-radius: 4px;
  transition: background 0.18s, color 0.18s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--secondary);
  color: var(--white);
  outline: none;
}
.btn, button, .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  padding: 12px 28px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  text-transform: uppercase;
  font-size: 1.08rem;
  font-weight: 700;
  border-radius: 38px;
  box-shadow: 0 2px 12px rgba(56,178,159,0.15);
  transition: background 0.16s, color 0.16s, box-shadow 0.24s cubic-bezier(.22,1,.36,1);
  cursor: pointer;
  margin-left: 18px;
  background: var(--primary);
  color: var(--white);
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--secondary);
  color: var(--black);
  box-shadow: 0 4px 20px 0 var(--secondary);
}

/* HAMBURGER ICON */
.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--secondary);
  background: transparent;
  border: none;
  margin-left: 20px;
  outline: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: background 0.15s;
  z-index: 1002;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--accent);
  color: var(--primary);
}

/* Hide hamburger on desktop, show on mobile */
@media (min-width: 1024px) {
  .mobile-menu-toggle { display: none; }
}

/* MAIN NAV RESPONSIVE */
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  header .btn { /* Hide desktop CTA button on mobile */
    display: none;
  }
}

/* MOBILE MENU (OFFCANVAS) */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(25,34,70, 0.98);
  color: var(--white);
  z-index: 1100;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(.82,0,.17,1);
  display: flex;
  flex-direction: column;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  right: 24px;
  top: 24px;
  font-size: 2.1rem;
  background: transparent;
  color: var(--electric-pink);
  border: none;
  padding: 8px 16px;
  z-index: 1200;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--electric-yellow);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 100vh;
  padding: 80px 32px 32px 32px;
  gap: 24px;
}
.mobile-nav a {
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 14px 0 14px 0;
  width: 100%;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  letter-spacing: 0.06em;
  transition: color 0.18s, background 0.18s;
  border-radius: 4px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--electric-cyan);
  background: rgba(256,256,256,0.06);
}

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

/* SECTIONS & SPACING */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  section {
    padding: 28px 8px;
    margin-bottom: 36px;
  }
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  padding: 28px 22px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(250,0,118,0.09);
  transform: translateY(-4px) scale(1.025);
}
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .content-grid {
    flex-direction: column;
    gap: 18px;
  }
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: var(--white);
  color: #181a20;
  box-shadow: 0 2px 18px 0 rgba(56,178,159,0.19);
  border-radius: 18px;
  padding: 20px;
  margin-bottom: 20px;
  position: relative;
  min-width: 220px;
  max-width: 600px;
}
.testimonial-card blockquote {
  font-size: 1.2rem;
  color: var(--primary);
  font-weight: 600;
  margin: 0 0 10px 0;
  line-height: 1.5;
  quotes: '“' '”' '‘' '’';
}
.testimonial-card blockquote:before {
  content: '“';
  color: var(--electric-pink);
  font-size: 2.5rem;
  vertical-align: -16px;
  margin-right: 8px;
}
.testimonial-card blockquote:after {
  content: '”';
  color: var(--electric-pink);
  font-size: 2.5rem;
  vertical-align: -16px;
  margin-left: 8px;
}
.testimonial-card div {
  color: var(--secondary);
  font-weight: 600;
  font-size: 1rem;
}

/* Feature Items */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
/* Mandatory pattern for .features */
.features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 38px;
}
.features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 8px;
}
.features ul li {
  background: var(--secondary);
  color: var(--white);
  padding: 14px 20px 14px 50px;
  border-radius: 32px;
  position: relative;
  box-shadow: 0 1px 16px 0 rgba(32,68,90,0.09);
  font-size: 1.08rem;
  font-weight: 600;
  min-width: 240px;
}
.features ul li img {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 25px;
  height: 25px;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(90deg, var(--electric-blue) 0%, var(--secondary) 38%, var(--electric-yellow) 100%);
  min-height: 340px;
  display: flex;
  align-items: center;
  padding: 60px 0 60px 0;
  box-shadow: 0 3px 16px 0 rgba(32,68,90,0.09);
}
.hero .container {
  align-items: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
  max-width: 600px;
}
.hero h1 {
  color: var(--white);
  font-size: 2.8rem;
  text-shadow: 0 2px 14px rgba(32,68,90,0.13);
  letter-spacing: 0.5px;
}
.hero p {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 14px;
}
.hero .btn-primary {
  background: var(--electric-pink);
  color: var(--white);
  box-shadow: 0 4px 20px 0 rgba(242,0,118,0.18);
  margin-left: 0;
}
.hero .btn-primary:hover, .hero .btn-primary:focus {
  background: var(--electric-yellow);
  color: var(--primary);
}

@media (max-width: 900px) {
  .hero h1 {
    font-size: 2.1rem;
  }
  .hero {
    min-height: 190px;
    padding: 36px 0 36px 0;
  }
}
@media (max-width: 700px) {
  .hero {
    min-height: 120px;
    padding: 32px 0 24px 0;
  }
  .hero h1 {
    font-size: 1.3rem;
    margin-bottom: 10px;
  }
}

/* CARDS & SERVICE LISTS */
.service-list,
.service-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 8px;
}
.service-list li, .service-list > div {
  flex: 1 1 250px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 3px 24px 0 rgba(56,178,159,0.14);
  padding: 30px 16px 24px 16px;
  transition: box-shadow 0.16s, transform 0.16s;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
  min-width: 220px;
  max-width: 350px;
}
.service-list li:hover, .service-list > div:hover {
  box-shadow: 0 6px 38px 0 var(--electric-blue);
  transform: scale(1.025);
}
.service-list h3, .service-list h2 {
  color: var(--electric-pink);
  font-size: 1.22rem;
  margin-bottom: 4px;
}
.service-list a {
  color: var(--electric-blue);
  font-weight: 600;
  text-decoration: underline;
  margin-top: 8px;
  transition: color 0.18s;
}
.service-list a:hover {
  color: var(--electric-yellow);
}

@media (max-width: 900px) {
  .service-list, .service-list ul {
    flex-direction: column;
    gap: 16px;
  }
}

/* TABLE (PRICES) */
table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  box-shadow: 0 1px 16px 0 rgba(56,178,159,0.14);
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 28px;
}
thead {
  background: var(--secondary);
}
thead th {
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  font-weight: 800;
  padding: 16px 8px;
}
tbody td {
  color: var(--primary);
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 500;
  padding: 14px 8px;
  border-bottom: 1px solid var(--accent);
}
tbody tr:last-child td {
  border-bottom: none;
}
tbody tr:nth-child(even) td {
  background: #f5fcfc;
}

/* CTA SECTIONS */
.cta, .cta-section {
  background: linear-gradient(90deg, var(--electric-yellow) 0%, var(--electric-pink) 100%);
  box-shadow: 0 3px 24px 0 rgba(249,224,46,0.07);
  border-radius: 22px;
  padding: 36px 22px;
  text-align: center;
  margin-bottom: 28px;
  color: var(--primary);
}
.cta h2, .cta-section h2 {
  color: var(--primary);
  margin-bottom: 12px;
  font-size: 2rem;
  text-transform: uppercase;
}
.cta p, .cta-section p, .cta ul {
  color: var(--primary);
  font-size: 1.15rem;
}
.cta a.btn, .cta-section a.btn {
  margin-top: 20px;
  background: var(--electric-pink);
  color: var(--white);
  box-shadow: 0 5px 24px 0 rgba(244,16,112,0.13);
}
.cta a.btn:hover, .cta a.btn:focus, .cta-section a.btn:hover, .cta-section a.btn:focus {
  background: var(--electric-yellow);
  color: var(--black);
}

/* FAQ ACCORDION */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 28px;
}
.faq-accordion > div {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 1px 12px rgba(56,178,159,0.08);
  padding: 22px 16px;
}
.faq-accordion h2, .faq-accordion h3 {
  color: var(--primary);
  font-size: 1.16rem;
  cursor: pointer;
  margin-bottom: 6px;
}
.faq-accordion p {
  color: #222;
  font-size: 1rem;
  margin-top: 4px;
}


/* FOOTER */
footer {
  background: var(--footer-bg);
  color: var(--white);
  padding: 0;
  box-shadow: 0 -2px 24px 0 rgba(32,68,90,0.09);
}
footer .container {
  padding-top: 36px;
  padding-bottom: 10px;
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 24px;
  justify-content: space-between;
}
.footer-grid > div {
  flex: 1 1 180px;
  min-width: 150px;
}
.footer-grid nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-grid a {
  color: var(--electric-cyan);
  font-size: 1rem;
  transition: color 0.18s;
}
.footer-grid a:hover, .footer-grid a:focus {
  color: var(--electric-yellow);
}
.footer-bottom {
  color: #add7ee;
  font-size: 0.98rem;
  text-align: center;
  padding-bottom: 12px;
}
footer strong {
  display: block;
  color: var(--electric-yellow);
  font-weight: 800;
  margin-bottom: 6px;
}
footer img {
  filter: brightness(1.3);
  margin-bottom: 4px;
}

@media (max-width: 900px) {
  .footer-grid {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .footer-grid > div { min-width: 100px; }
}

/* TEXT CONTENT FORMATTING */
.text-section {
  margin-bottom: 18px;
  font-size: 1.05rem;
}
hr {
  border: none;
  border-bottom: 1.5px solid var(--secondary);
  margin: 24px 0;
}

/* BUTTONS */
button, .btn {
  outline: none;
  border: none;
  transition: background 0.18s, color 0.18s, box-shadow .18s cubic-bezier(.29,1.13,.54,.9);
}
button:focus-visible {
  outline: 2px solid var(--electric-yellow);
  outline-offset: 2px;
}

/* Animation Micro-interactions */
button, .btn, .main-nav a, .mobile-nav a {
  transition: background 0.17s, color 0.17s, box-shadow 0.17s, transform 0.13s;
}
button:active, .btn:active, .main-nav a:active, .mobile-nav a:active {
  transform: scale(0.98);
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%) translateY(100%);
  z-index: 1800;
  background: var(--white);
  color: #222;
  box-shadow: 0 2px 24px 0 rgba(32,68,90,0.21);
  border-radius: 18px;
  padding: 18px 18px 18px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  min-width: 320px;
  max-width: 98vw;
  font-size: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.28s cubic-bezier(.62,0,.12,1), opacity 0.22s cubic-bezier(.62,0,.12,1);
}
.cookie-banner.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 2px;
}
.cookie-banner .btn {
  padding: 10px 22px;
  font-size: 1rem;
  border-radius: 24px;
}
.cookie-banner .btn-accept {
  background: var(--electric-blue);
  color: var(--white);
}
.cookie-banner .btn-accept:hover, .cookie-banner .btn-accept:focus {
  background: var(--electric-pink);
  color: #fff;
}
.cookie-banner .btn-reject {
  background: var(--electric-pink);
  color: #fff;
}
.cookie-banner .btn-reject:hover, .cookie-banner .btn-reject:focus {
  background: var(--electric-yellow);
  color: var(--primary);
}
.cookie-banner .btn-settings {
  background: var(--secondary);
  color: var(--black);
}
.cookie-banner .btn-settings:hover, .cookie-banner .btn-settings:focus {
  background: #222;
  color: var(--electric-cyan);
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  z-index: 1900;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(39, 45, 78, 0.77);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.17s cubic-bezier(.62,0,.12,1);
}
.cookie-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: var(--white);
  color: #222;
  border-radius: 22px;
  box-shadow: 0 6px 42px 0 rgba(56,178,159,0.21);
  max-width: 420px;
  min-width: 240px;
  width: 94vw;
  padding: 28px 24px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  opacity: 1;
  animation: cookieModalIn 0.37s cubic-bezier(.6,1.1,.22,1);
}
@keyframes cookieModalIn {
  from {
    transform: scale(.8) translateY(34px);
    opacity: 0;
  }
  to {
    transform: scale(1) translateY(0px);
    opacity: 1;
  }
}
.cookie-modal h2 {
  color: var(--primary);
  font-size: 1.32rem;
  margin-bottom: 6px;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cookie-category label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--electric-pink);
  width: 1.13em;
  height: 1.13em;
}
.cookie-category .cookie-essential {
  color: var(--secondary);
  font-size: 0.99rem;
  font-weight: 700;
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 10px;
}

/* FORM ELEMENTS */
input, textarea {
  border: 1.5px solid var(--accent);
  border-radius: 10px;
  padding: 10px 14px;
  background: #f8fcfd;
  color: var(--primary);
  font-size: 1rem;
  margin-bottom: 14px;
  transition: border 0.16s;
}
input:focus, textarea:focus {
  border-color: var(--electric-pink);
}
label {
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 5px;
}

/* Responsive Adjustments */
@media (max-width: 600px) {
  .container, .content-wrapper {
    padding: 0 4px;
  }
  .footer-grid, .content-grid, .card-container {
    flex-direction: column;
    gap: 12px;
  }
  .footer-grid > div { min-width: 30px; }
  .cta, .cta-section {
    padding: 22px 8px;
    border-radius: 12px;
  }
  .card, .service-list li, .service-list > div {
    min-width: 0 !important;
    padding: 20px 10px;
    border-radius: 12px;
  }
  .testimonial-card {
    min-width: 0;
    padding: 18px 9px;
    border-radius: 12px;
  }
  .feature-item {
    gap: 9px;
  }
  section {
    padding: 18px 2px;
    margin-bottom: 18px;
  }
}

/* COLORS FOR VIBRANT/ENERGETIC ELEMENTS */
::-webkit-scrollbar {
  width: 8px;
  background: var(--accent);
}
::-webkit-scrollbar-thumb {
  background: var(--electric-pink);
  border-radius: 8px;
}

/* Microinteractions: subtle scale on hover for cards & buttons */
.card, .service-list li, .service-list > div, .testimonial-card {
  transition: box-shadow 0.15s, transform 0.13s;
}
.card:hover, .service-list li:hover, .service-list > div:hover, .testimonial-card:hover {
  transform: translateY(-2px) scale(1.02);
}

/* Utility: spacing and gaps */
.mb-0 { margin-bottom: 0 !important; }
.mb-10 { margin-bottom: 10px !important; }
.mb-20 { margin-bottom: 20px !important; }
gap-16 { gap: 16px !important; }
gap-24 { gap: 24px !important; }

/* Z-Index Stacking */
header { z-index: 50; }
.mobile-menu { z-index: 1100; }
.cookie-banner { z-index: 1800; }
.cookie-modal-overlay { z-index: 1900; }

/* Prevent overlap issues */
main, footer, header, section, .content-wrapper, .card, .testimonial-card {
  position: relative;
  z-index: 1;
}

/* Accent highlight for energetic feel */
::selection {
  background: var(--electric-yellow);
  color: var(--primary);
}

/* END NeuroClean Vibrant Energetic CSS */
