/* ==== 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,main,menu,nav,output,ruby,section,summary,time,mark,audio,video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html { scroll-behavior: smooth; background: #131c28; }
article,aside,details,figcaption,figure,footer,header,main,menu,nav,section {
  display: block;
}
body {
  line-height: 1.6;
  background: #131c28;
  color: #f1efef;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after { box-sizing: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul,ol { padding-left: 1.25em; }
a { color: #4da273; text-decoration: none; transition: color 0.2s; }
a:hover, a:focus { color: #2cffdc; text-shadow: 0 0 8px #2cffdc44; }

/* ==== Variables ==== */
:root {
  --color-primary: #21568A;        /* Main blue */
  --color-secondary: #4da273;      /* Futuristic green */
  --color-accent: #f1efef;         /* Near white */
  --color-bg: #131c28;             /* Deep navy bg */
  --color-panel: #1e2638;          /* Card/section bg */
  --color-dark: #0b1120;           /* Darks for contrast */
  --color-focus: #2cffdc;          /* Neon cyan accent */
  --color-cta: #5fbcfc;            /* Neon blue for CTA */

  --shadow-lg: 0 8px 32px 0 rgba(30,160,220,0.08), 0 1.5px 6px 0 rgba(18,255,220,0.06);
  --shadow-md: 0 2px 12px 0 rgba(33,86,138,0.12);
  --radius: 16px;
  --radius-sm: 8px;

  --font-display: 'Montserrat', 'Roboto', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

/* ==== Container and Layout Basics ==== */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}
.content-wrapper {
  width: 100%;
  max-width: 940px;
  margin: 0 auto;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-panel);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

/* ==== Header/NAV ==== */
header {
  width: 100%;
  background: rgba(19,28,40,0.94);
  box-shadow: 0 2px 14px 0 #1e263830;
  position: sticky;
  top: 0; left: 0;
  z-index: 50;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
header nav a {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--color-accent);
  font-weight: 500;
  letter-spacing: 0.01em;
  position: relative;
  padding: 2px 0;
  transition: color 0.18s;
}
header nav a::after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg,var(--color-focus) 65%,var(--color-secondary) 100%);
  transition: width 0.2s;
  border-radius: 2px;
}
header nav a:hover::after,header nav a:focus::after { width: 70%; }
header nav a:hover,header nav a:focus { color: var(--color-focus); }

header img { max-height: 40px; }

.cta-btn {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  padding: 10px 26px;
  border-radius: 32px;
  background: linear-gradient(90deg,var(--color-focus) 80%,var(--color-cta));
  color: #06243c;
  box-shadow: 0 2px 16px #2cffdc2e;
  border: none;
  outline: none;
  cursor: pointer;
  transition: transform 0.19s, box-shadow 0.22s,filter .21s;
  letter-spacing: 0.03em;
  margin-left: 24px;
  text-shadow: 0 0 8px #25ffc760;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, #47fff4 70%, #21a0e0 100%);
  color: #0e1f30;
  transform: translateY(-2px) scale(1.03);
  filter: brightness(1.08);
  box-shadow: 0 4px 32px #2cffdc52;
}

.mobile-menu-toggle {
  display: none;
  font-size: 30px;
  color: var(--color-focus);
  background: transparent;
  border: none;
  outline: none;
  margin-left: 16px;
  cursor: pointer;
  z-index: 100;
  transition: color .2s, transform .17s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:active {
  color: #57faf2;
  transform: scale(1.1);
}

/* ==== MOBILE NAV ==== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(19,28,40,0.98);
  box-shadow: 0 8px 48px #225992f2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(100vw);
  transition: transform .33s cubic-bezier(.71,0,.39,1), opacity .27s;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  font-size: 30px;
  color: var(--color-focus);
  background: transparent;
  border: none;
  outline: none;
  align-self: flex-end;
  margin: 24px 32px 0 0;
  cursor: pointer;
  z-index: 210;
  transition: color .18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #57faf2;
}
.mobile-nav {
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
  align-items: center;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--color-accent);
  font-weight: 600;
  letter-spacing: 0.01em;
  text-align: center;
  padding: 8px 0;
  border-radius: 8px;
  width: 80vw;
  transition: background .17s, color .21s;
  display: block;
}
.mobile-nav a:active, .mobile-nav a:focus, .mobile-nav a:hover {
  color: var(--color-focus);
  background: #18375a44;
}

/* ==== HERO ==== */
.hero {
  padding: 70px 0 50px;
  background: linear-gradient(110deg,#1e2638 66%,#21568A 106%);
  box-shadow: 0 6px 60px #00fff824,0 1px 4px #15285c80;
  margin-bottom: 60px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  max-width: 650px;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(90deg,#2cffdc,#5fbcfc 85%,#f1efef);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: 1.2px;
  text-align: center;
  text-shadow: 0 6px 40px #2cffdc29;
}
.hero p {
  margin-top: 0;
  font-family: var(--font-body);
  font-size: 18px;
  color: #e1f7fb;
  text-align: center;
  margin-bottom: 12px;
}

/* ==== Typography ==== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--color-accent);
  line-height: 1.18;
}
h1 { font-size: 2.2rem; margin-bottom: 26px; }
h2 { font-size: 1.7rem; margin-bottom: 18px; }
h3 { font-size: 1.2rem; margin-bottom: 12px; }
h4 { font-size: 1.065rem; }

p,li,td,th {
  font-size: 16px;
  font-family: var(--font-body);
  line-height: 1.65;
  color: #e3f4fa;
}
p { margin-bottom: 17px; }
ul,ol { margin-bottom: 18px; }
li+li {
  margin-top: 8px;
}
strong { color: #68fce6; font-weight: bold; }

/* ==== Feature GRID & Cards ==== */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.feature-grid > div {
  flex: 1 1 240px;
  min-width: 210px;
  background: linear-gradient(98deg,#21568A 65%,#182943 100%);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md), 0 2px 18px #2cffdc14;
  padding: 30px 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  position: relative;
  transition: transform .15s, box-shadow .2s;
}
.feature-grid > div img {
  width: 44px;
  height: 44px;
}
.feature-grid > div:hover {
  transform: translateY(-4px) scale(1.012);
  box-shadow: 0 4px 36px #47fff457, var(--shadow-lg);
}
.feature-grid h3 { font-size: 1.12rem; color: #76feef; margin-bottom: 4px; }

/* ==== Service Cards ==== */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 20px;
}
.service-cards > div {
  flex: 1 1 240px;
  min-width: 220px;
  margin-bottom: 20px;
  background: linear-gradient(90deg,#2e4375 60%,#1e2638 100%);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 26px 18px 22px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  position: relative;
  transition: transform .14s, box-shadow .19s;
}
.service-cards > div:hover {
  box-shadow: 0 2px 40px #4da27360, var(--shadow-lg);
  transform: translateY(-3px) scale(1.02);
}
.service-cards h3 {
  font-size: 1.1rem;
  color: #83ffe0;
  margin-bottom: 2px;
}
.service-cards strong {
  color: #57faf2;
  font-size: 1.1em;
}
.service-cards a {
  margin-top: 10px;
  font-family: var(--font-display);
  color: var(--color-focus);
  font-weight: 600;
  background: none;
  text-shadow: 0 0 7px #2cffdc77;
  border-bottom: 2px dotted #21aeba;
  padding-bottom: 1.5px;
  transition: color .16s;
}
.service-cards a:hover { color: #f1efef; border-bottom: 2px solid #2cffdc; }

/* ==== Cards & Content Structures ==== */
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ==== Testimonial Cards ==== */
.testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.testimonial-card {
  background: #f1efef;
  color: #1d2a3a;
  border-radius: var(--radius);
  box-shadow: 0 3px 18px #19325a22;
  padding: 22px 24px;
  flex: 1 1 300px;
  min-width: 260px;
  max-width: 360px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  border: 1.5px solid #2cffdc11;
  position: relative;
  transition: box-shadow .17s, transform .16s;
}
.testimonial-card:hover {
  box-shadow: 0 4px 30px #2cffdc33,0 0.5px 8px #4da2731c;
  transform: translateY(-2px) scale(1.01);
}
.testimonial-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 6px;
}
.testimonial-card strong {
  color: var(--color-primary);
  font-size: 1em;
}
.testimonial-card .stars {
  display: flex;
  align-items: center;
  gap: 2px;
}
.testimonial-card p {
  color: #18304b;
  font-size: 15px;
}
.testimonial-card span {
  color: #21568A;
  font-size: 14px;
}
.review-summary {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: #f1efef;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
}
.review-summary .stars {
  gap: 2px;
  background: none !important;
}

/* ==== Team ==== */
.team-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
}
.team-member-card {
  background: linear-gradient(98deg,#21568A 66%,#274a5a 100%);
  border-radius: var(--radius);
  box-shadow: 0 3px 18px #2cffdc17;
  padding: 28px 20px 22px 20px;
  min-width: 220px;
  flex: 1 1 233px;
  margin-bottom: 20px;
  display: flex; flex-direction: column; gap: 10px;
  color: #e0fcff;
}
.team-member-card h3 { color: #afefff; font-weight: 700; }

/* ==== Policy details and lists ==== */
.policy-details {
  background: #17263b;
  border-radius: var(--radius-sm);
  padding: 22px 18px;
  color: #e9f6ff;
  margin-bottom: 12px;
  box-shadow: 0 2px 18px #21568a11;
}
.policy-details ul { list-style-type: disc; }
.policy-details li { color: #e9f6ff; }

/* ==== CTA Section ==== */
.cta {
  margin-top: 0;
  margin-bottom: 0;
  background: linear-gradient(97deg,#21568A 65%,#4da27399 100%);
  box-shadow: 0 4px 36px #47fff444, 0 3px 12px #0e253b33;
}
.cta .container > .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
}
.cta h2 {
  color: #48fff5;
  font-weight: 800;
  text-shadow: 0 3px 24px #2cffdc28;
  margin-bottom: 6px;
  font-size: 2rem;
}
.cta p {
  color: #f1efef;
  margin-bottom: 8px;
}

/* ==== Table Styling ==== */
table {
  width: 100%;
  border-collapse: collapse;
  background: #182239;
  border-radius: var(--radius);
  overflow: hidden;
  margin: 24px 0 10px 0;
  box-shadow: 0 2px 10px #2cffdc10;
}
th,td {
  padding: 14px 10px;
  text-align: left;
  color: #eff8ff;
  font-size: 16px;
}
thead {
  background: #21568a;
}
thead th {
  color: #f1efef;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
}
tbody tr:nth-child(odd) {
  background: #202d44;
}
tbody tr:nth-child(even) {
  background: #17263b;
}
tbody td {
  color: #e3f4fa;
  font-size: 15px;
}

/* ==== Lists ==== */
ul, ol { margin-bottom: 18px; }
ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  color: #e3f4fa;
}
ul li::before {
  content: '';
  display: inline-block;
  position: absolute;
  left: 0;
  top: 7px;
  width: 10px;
  height: 10px;
  background: linear-gradient(135deg,#2cffdc 70%,#4da273 120%);
  border-radius: 50%;
  box-shadow: 0 0 8px #2cffdc50;
}
ol li::marker {
  color: #4da273;
}

/* ==== Footer ==== */
footer {
  background: #121926;
  color: #e6fdff;
  padding: 38px 0 18px 0;
  position: relative;
  z-index: 21;
  margin-top: 70px;
  box-shadow: 0 -2px 18px #2cffdc12,0 -1px 4px #0d2a3833;
}
footer .container {
  display: flex; flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 10px;
}
footer nav {
  display: flex; flex-direction: column; gap: 10px;
  margin-top: 10px;
}
footer nav a {
  font-family: var(--font-body);
  color: #f1efef;
  font-size: 16px;
  opacity: 0.94;
  transition: color .14s, opacity .17s;
}
footer nav a:hover { color: #2cffdc; opacity: 1; }
footer img { height: 38px; margin-bottom: 4px; }
footer .text-section p {
  font-size: 15px;
  color: #c4e2f6;
  margin-bottom: 8px;
}
footer .copyright {
  width: 100%; margin-top: 18px;
  color: #b3d6e5;
  font-size: 13px;
  text-align: right;
  margin-left: auto;
}

/* ==== Cookie Consent Banner ==== */
.cookie-banner {
  position: fixed;
  left: 0; bottom: 0; width: 100vw;
  background: #17263b;
  color: #f1efef;
  z-index: 9999;
  box-shadow: 0 -2px 16px #47fff422;
  padding: 26px 18px 24px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  animation: banner-pop-in .6s cubic-bezier(.68,-0.06,.58,1.12);
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 6px;
}
.cookie-banner button {
  font-family: var(--font-display);
  font-size: 15px;
  border-radius: 7px;
  padding: 7px 18px;
  border: none;
  box-shadow: 0 2px 8px #56ffd616;
  outline: none;
  margin-right: 0.3em;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 0;
  transition: background .18s, color .13s, box-shadow .16s;
}
.cookie-banner .accept {
  background: linear-gradient(90deg,#2cffdc 60%,#4da273 120%);
  color: #00272d;
}
.cookie-banner .accept:hover { filter: brightness(1.08); }
.cookie-banner .reject {
  background: #18375A;
  color: #fff;
}
.cookie-banner .reject:hover { background: #21568A; }
.cookie-banner .settings {
  background: none;
  color: #82fff8;
  border: 2px solid #2cffdc;
}
.cookie-banner .settings:hover { background: #17263b; color: #2cffdc; }

@keyframes banner-pop-in {
  from { opacity: 0; transform: translateY(36px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Cookie modal popup */
.cookie-modal {
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%) scale(0.96);
  z-index: 10000;
  background: #202d44;
  border-radius: var(--radius);
  box-shadow: 0 4px 48px #2cffdc33;
  color: #eefcfc;
  padding: 36px 24px 22px 24px;
  min-width: 280px; max-width: 91vw;
  width: 440px;
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 17px;
  animation: modal-pop .38s cubic-bezier(.75,-0.15,.66,1.15);
}
.cookie-modal .category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.cookie-modal label { font-size: 1rem; font-family: var(--font-body); font-weight: 500; color: #8adbe6; }
.cookie-modal input[type="checkbox"] {
  appearance: none;
  background: #21568a;
  border: 2px solid #2cffdc;
  border-radius: 6px;
  width: 20px; height: 20px;
  margin-right: 7px;
  cursor: pointer;
  position: relative;
  transition: background .15s, border-color .15s;
}
.cookie-modal input[type="checkbox"]:checked {
  background: #2cffdc;
  border-color: #47fff4;
}
.cookie-modal input[type="checkbox"]:checked:after {
  content: '\2714';
  position: absolute;
  top: 1px; left: 3.5px;
  color: #193040;
  font-size: 16px;
}
.cookie-modal .category.essential label { color: #9aec90; }
.cookie-modal .btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 13px;
}
.cookie-modal button {
  font-family: var(--font-display);
  font-size: 15px;
  border-radius: 8px;
  padding: 8px 20px;
  margin-bottom: 0;
  border: none;
  font-weight: 600;
  cursor: pointer;
  background: #2cffdc;
  color: #112a36;
  box-shadow: 0 2px 10px #2cffdc1a;
  transition: background .13s, color .13s;
}
.cookie-modal button:hover { filter: brightness(1.12); background: #4da273; color: #fff; }
@keyframes modal-pop {
  0% { opacity: 0; transform: translate(-50%,-40%) scale(0.86); }
  100% { opacity: 1; transform: translate(-50%,-50%) scale(1); }
}

/* ==== FAQ Styling ==== */
.faq-list { display: flex; flex-wrap: wrap; gap: 24px; }
.faq-list > div {
  background: #1e2638;
  border-radius: var(--radius-sm);
  padding: 22px 16px 18px 18px;
  margin-bottom: 20px;
  flex: 1 1 240px;
  min-width: 210px;
  box-shadow: 0 1.5px 8px #21aeba11;
  transition: box-shadow .15s,background .17s;
}
.faq-list > div:hover {
  box-shadow: 0 3px 22px #2cffdc33;
  background: #2e437544;
}
.faq-list h3 { color: #76feef; font-size: 1.1rem; margin-bottom: 7px; }

/* ==== Utility Classes ==== */
.text-section { margin-bottom: 18px; }
.text-section p { color: #f1efef; margin-bottom: 8px; }

/* ==== Responsive Design ==== */
@media (max-width: 1024px) {
  .container { max-width: 96vw; }
  .content-wrapper { max-width: 93vw; }
  .feature-grid, .service-cards, .card-container, .testimonial-cards, .team-cards, .content-grid, .faq-list {
    gap: 17px;
  }
}
@media (max-width: 820px) {
  .feature-grid, .service-cards, .card-container, .testimonial-cards, .team-cards{
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
  }
  .content-wrapper { max-width: 100vw; padding: 0; }
  .hero .content-wrapper { padding: 0 4vw; }
}
@media (max-width: 768px) {
  body, html { font-size: 15.5px; }
  .container { padding: 0 12px; }
  .content-wrapper { padding: 0 2vw; }
  .hero { padding: 46px 0 34px 0; }
  .hero h1 { font-size: 2.1rem; }
  .section { padding: 26px 8px; margin-bottom: 40px; }
  h1 { font-size: 1.5rem; margin-bottom: 18px; }
  h2 { font-size: 1.18rem; margin-bottom: 12px; }
  h3 { font-size: 1.01rem; }
  .footer .container { gap: 24px; }
  .footer .copyright { text-align: left; }

  /* Header mobile nav swap */
  header nav { display: none !important; }
  .cta-btn { margin-left: 0; }
  .mobile-menu-toggle { display: block; margin-right: 2vw; }
}
@media (max-width: 600px) {
  .container { max-width: 100vw; padding: 0 2vw; }
  .content-wrapper { padding: 0; }
  .feature-grid > div, .service-cards > div, .team-member-card, .faq-list > div, .testimonial-card  {
    min-width: 98vw;
    margin-left: -2vw;
    margin-right: -2vw;
    border-radius: 0;
  }
  .mobile-nav a { width: 96vw; font-size: 19px; }
  .hero .content-wrapper { max-width: 100vw; }
  .cta { min-width: 100vw; border-radius: 0; }
  footer .container { flex-direction: column; gap: 16px; align-items: flex-start; }
  footer .copyright { text-align: left; margin-right: 0; }
}

@media (max-width: 500px) {
  .hero { padding-top: 32px; }
  .hero h1 { font-size: 1.25rem; }
  .section { padding: 18px 3px; }
}
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; align-items: center; gap: 19px; }
}

/* ==== Animations and Microinteractions ==== */
.card, .feature-grid > div, .service-cards > div, .team-member-card, .testimonial-card {
  transition: box-shadow .18s cubic-bezier(.54,.09,.32,1.2), background .20s, transform .16s;
}
.card:focus-within, .feature-grid > div:focus-within, .service-cards > div:focus-within, .team-member-card:focus-within, .testimonial-card:focus-within {
  box-shadow: 0 4px 36px #2cffdc49, var(--shadow-lg);
  outline: 2px solid #2cffdc;
}

/* ==== Hide mobile menu by default on desktop ==== */
@media (min-width: 769px) {
  .mobile-menu { display: none !important; }
  .mobile-menu-toggle { display: none; }
}

/* ==== Scrollbar Styling ==== */
::-webkit-scrollbar {
  width: 9px;
  background: #19233b;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(120deg,#21568a,#4da273 80%);
  border-radius: 8px;
}
::-webkit-scrollbar-corner {
  background: #141e2e;
}

/* ==== Custom Selection ==== */
::selection {
  background: #2cffdc;
  color: #153050;
}

/* ==== Accessibility: Focus States ==== */
a:focus, button:focus, .cta-btn:focus, .mobile-nav a:focus, .mobile-menu-close:focus {
  outline: 2px solid #2cffdc! important;
  outline-offset: 2px;
  box-shadow: 0 0 0 3px #2cffdc40;
}

/* ==== Misc Fixes ==== */
.policy-details ul, .policy-details li, .policy-details p { color: #d6f3f9!important; }

/* ==== Z-index Guarantees ==== */
header, .mobile-menu, .cookie-banner, .cookie-modal {
  z-index: 9995;
}

/* ==== Prevent element overlap ==== */
.section,.feature-grid > div, .service-cards > div, .testimonial-card, .team-member-card, .faq-list > div{
  margin-bottom: 20px;
}

/* ==== END CSS ==== */
