*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

:root{
  --bg:#02070d;
  --panel:rgba(3,12,22,.78);
  --blue:#00aaff;
  --blue-soft:#55c9ff;
  --white:#f2f7ff;
  --muted:#91aabc;
  --line:rgba(90,205,255,.28);
  --line-strong:rgba(90,205,255,.62);
}

html{
  scroll-behavior:smooth;
}

body{
  min-height:100vh;
  background:#000;
  color:var(--white);
  font-family:Arial,"Microsoft JhengHei",sans-serif;
  overflow-x:hidden;
}

.service-bg{
  position:fixed;
  inset:0;
  z-index:-3;
  background:
    linear-gradient(180deg,rgba(0,0,0,.64),rgba(0,0,0,.96)),
    linear-gradient(90deg,rgba(0,0,0,.78),rgba(0,18,36,.35),rgba(0,0,0,.78)),
    url("../assets/images/bg-dashboard.png") center/cover no-repeat;
}

.service-bg::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 50% 15%,rgba(0,170,255,.18),transparent 30%),
    radial-gradient(circle at 80% 45%,rgba(0,170,255,.12),transparent 28%),
    radial-gradient(circle at 20% 60%,rgba(0,170,255,.1),transparent 25%);
  animation:bgGlow 6s ease-in-out infinite;
}

@keyframes bgGlow{
  0%,100%{opacity:.55;}
  50%{opacity:1;}
}

.service-scanline{
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:20;
  opacity:.1;
  background:repeating-linear-gradient(
    to bottom,
    rgba(255,255,255,.04) 0,
    rgba(255,255,255,.04) 1px,
    transparent 1px,
    transparent 5px
  );
}

/* Header */
.service-header{
  position:fixed;
  top:18px;
  left:24px;
  right:24px;
  z-index:50;
  min-height:76px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:12px 18px;
  border:1px solid rgba(90,205,255,.24);
  border-radius:18px;
  background:rgba(0,10,20,.72);
  backdrop-filter:blur(12px);
  box-shadow:
    0 0 30px rgba(0,170,255,.12),
    inset 0 0 24px rgba(0,170,255,.06);
}

.service-brand{
  display:flex;
  align-items:center;
  gap:12px;
  color:#fff;
  text-decoration:none;
  flex-shrink:0;
}

.service-brand img{
  width:54px;
  height:54px;
  object-fit:contain;
  filter:drop-shadow(0 0 14px rgba(0,170,255,.62));
}

.service-brand span{
  font-weight:900;
  letter-spacing:2.5px;
  font-size:20px;
  background:linear-gradient(180deg,#fff,#87b6cf);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

.service-nav{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  flex:1;
}

.service-nav a{
  color:#b9d7e8;
  text-decoration:none;
  font-size:14px;
  font-weight:800;
  letter-spacing:1px;
  padding:10px 13px;
  border-radius:9px;
  transition:.25s;
}

.service-nav a:hover{
  color:#fff;
  background:rgba(0,170,255,.14);
  box-shadow:0 0 16px rgba(0,170,255,.16);
}

.service-lang{
  display:flex;
  gap:4px;
  padding:5px;
  border:1px solid var(--line);
  border-radius:10px;
  background:rgba(0,10,20,.62);
  flex-shrink:0;
}

.service-lang button{
  border:none;
  background:transparent;
  color:#9db9ce;
  padding:7px 10px;
  border-radius:7px;
  cursor:pointer;
  font-weight:800;
}

.service-lang button.active,
.service-lang button:hover{
  background:rgba(0,170,255,.18);
  color:#fff;
}

/* Common */
main{
  position:relative;
  z-index:2;
}

section{
  width:min(1180px,calc(100% - 48px));
  margin:0 auto;
}

.section-heading{
  text-align:center;
  margin-bottom:34px;
}

.section-heading span,
.capability-left span,
.security-note span,
.service-cta span,
.hero-kicker{
  display:inline-flex;
  color:var(--blue-soft);
  border:1px solid rgba(90,205,255,.34);
  background:rgba(0,12,24,.56);
  padding:8px 16px;
  border-radius:999px;
  font-size:12px;
  font-weight:900;
  letter-spacing:2.4px;
  text-transform:uppercase;
  margin-bottom:16px;
  box-shadow:0 0 18px rgba(0,170,255,.12);
}

.section-heading h2,
.capability-left h2,
.security-note h2,
.service-cta h2{
  font-size:42px;
  line-height:1.2;
  margin-bottom:16px;
  background:linear-gradient(180deg,#fff,#9fbfd2);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

.section-heading p,
.capability-left p,
.security-note p,
.service-cta p{
  color:#bdd2df;
  font-size:17px;
  line-height:1.8;
  max-width:820px;
  margin:0 auto;
}

/* Hero */
.service-hero{
  min-height:100vh;
  padding:170px 0 90px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:flex-start;
}

.service-hero h1{
  max-width:920px;
  font-size:68px;
  line-height:1.04;
  letter-spacing:1px;
  margin-bottom:22px;
  background:linear-gradient(180deg,#ffffff 0%,#9fbfd2 48%,#f7fbff 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  text-shadow:0 0 26px rgba(0,170,255,.22);
}

.service-hero p{
  max-width:720px;
  color:#c4d9e6;
  font-size:19px;
  line-height:1.8;
  margin-bottom:32px;
}

.hero-actions{
  display:flex;
  align-items:center;
  gap:16px;
  flex-wrap:wrap;
}

.primary-action,
.secondary-action{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:220px;
  padding:15px 24px;
  border-radius:10px;
  font-size:16px;
  font-weight:900;
  text-decoration:none;
  transition:.25s;
}

.primary-action{
  color:#fff;
  background:linear-gradient(180deg,rgba(0,190,255,.95),rgba(0,72,140,.95));
  border:1px solid rgba(130,225,255,.74);
  box-shadow:
    0 0 24px rgba(0,170,255,.45),
    inset 0 0 18px rgba(255,255,255,.14);
}

.secondary-action{
  color:#dff6ff;
  background:rgba(0,10,20,.5);
  border:1px solid rgba(120,210,255,.5);
}

.primary-action:hover,
.secondary-action:hover{
  transform:translateY(-3px);
  box-shadow:0 0 34px rgba(0,190,255,.48);
}

/* Service Matrix */
.service-overview{
  padding:90px 0;
}

.service-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
}

.service-card{
  position:relative;
  display:flex;
  gap:22px;
  padding:28px;
  min-height:260px;
  border:1px solid rgba(90,205,255,.24);
  border-radius:18px;
  background:
    linear-gradient(135deg,rgba(0,170,255,.12),rgba(0,10,22,.7)),
    rgba(0,12,24,.56);
  box-shadow:
    0 0 28px rgba(0,170,255,.12),
    inset 0 0 24px rgba(0,170,255,.06);
  overflow:hidden;
  transition:.25s;
}

.service-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,transparent,rgba(0,190,255,.12),transparent);
  transform:translateX(-100%);
  animation:cardSweep 5s linear infinite;
}

@keyframes cardSweep{
  0%{transform:translateX(-100%);}
  55%,100%{transform:translateX(100%);}
}

.service-card:hover{
  transform:translateY(-6px);
  border-color:rgba(130,230,255,.58);
  box-shadow:
    0 0 38px rgba(0,190,255,.24),
    inset 0 0 28px rgba(0,170,255,.1);
}

.service-icon{
  position:relative;
  z-index:2;
  width:66px;
  height:66px;
  border-radius:16px;
  flex-shrink:0;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:30px;
  color:#e7fbff;
  border:1px solid rgba(130,230,255,.62);
  background:
    radial-gradient(circle,rgba(0,220,255,.32),rgba(0,20,42,.92));
  text-shadow:0 0 16px rgba(0,200,255,.9);
  box-shadow:
    0 0 20px rgba(0,190,255,.34),
    inset 0 0 18px rgba(0,200,255,.16);
}

.service-content{
  position:relative;
  z-index:2;
}

.service-content h3{
  font-size:25px;
  margin-bottom:12px;
  color:#f1fbff;
}

.service-content p{
  color:#b9d1df;
  font-size:15.5px;
  line-height:1.8;
  margin-bottom:18px;
}

.service-content ul{
  list-style:none;
  display:grid;
  gap:9px;
}

.service-content li{
  color:#d4edf8;
  font-size:14px;
  line-height:1.6;
}

.service-content li::before{
  content:"▸";
  color:var(--blue);
  margin-right:8px;
  text-shadow:0 0 10px rgba(0,170,255,.8);
}

/* Capability */
.capability-panel{
  padding:70px 34px;
  margin-top:30px;
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:34px;
  align-items:center;
  border:1px solid rgba(90,205,255,.24);
  border-radius:22px;
  background:
    linear-gradient(135deg,rgba(0,170,255,.1),rgba(0,8,18,.76)),
    rgba(0,10,20,.62);
  box-shadow:
    0 0 34px rgba(0,170,255,.14),
    inset 0 0 28px rgba(0,170,255,.06);
}

.capability-left{
  text-align:left;
}

.capability-left p{
  margin:0;
}

.capability-list{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:16px;
}

.capability-list div{
  padding:20px;
  min-height:150px;
  border:1px solid rgba(90,205,255,.2);
  border-radius:14px;
  background:rgba(0,12,24,.48);
}

.capability-list strong{
  display:block;
  font-size:19px;
  color:#f1fbff;
  margin-bottom:10px;
}

.capability-list span{
  color:#a9c2d2;
  font-size:14px;
  line-height:1.7;
}

/* Process */
.process-section{
  padding:100px 0 70px;
}

.process-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.process-card{
  padding:24px;
  min-height:240px;
  border:1px solid rgba(90,205,255,.22);
  border-radius:16px;
  background:rgba(0,12,24,.56);
  box-shadow:0 0 24px rgba(0,170,255,.1);
}

.process-card b{
  display:inline-flex;
  color:var(--blue-soft);
  font-size:28px;
  margin-bottom:18px;
  text-shadow:0 0 14px rgba(0,170,255,.5);
}

.process-card h3{
  font-size:21px;
  margin-bottom:12px;
}

.process-card p{
  color:#abc4d4;
  font-size:14.5px;
  line-height:1.8;
}

/* Security Note */
.security-note{
  margin-top:30px;
  padding:60px 40px;
  border:1px solid rgba(90,205,255,.24);
  border-radius:22px;
  background:
    linear-gradient(90deg,rgba(0,170,255,.14),rgba(0,10,22,.76)),
    rgba(0,12,24,.62);
  box-shadow:
    0 0 34px rgba(0,170,255,.14),
    inset 0 0 28px rgba(0,170,255,.06);
  text-align:center;
}

/* CTA */
.service-cta{
  padding:110px 0 90px;
  text-align:center;
}

.service-cta .primary-action{
  margin-top:26px;
}

/* Footer */
.service-footer{
  position:relative;
  z-index:2;
  padding:28px 20px;
  display:flex;
  justify-content:center;
  gap:28px;
  color:rgba(215,235,248,.58);
  font-size:13px;
  border-top:1px solid rgba(90,205,255,.14);
}

/* Responsive */
@media(max-width:980px){
  .service-header{
    top:10px;
    left:10px;
    right:10px;
    flex-wrap:wrap;
    min-height:auto;
  }

  .service-nav{
    order:3;
    width:100%;
    justify-content:flex-start;
    overflow-x:auto;
    padding-top:6px;
  }

  .service-nav a{
    white-space:nowrap;
    font-size:13px;
  }

  .service-brand img{
    width:46px;
    height:46px;
  }

  .service-brand span{
    font-size:17px;
  }

  .service-lang button{
    padding:6px 8px;
    font-size:12px;
  }

  section{
    width:calc(100% - 28px);
  }

  .service-hero{
    min-height:auto;
    padding:170px 0 70px;
  }

  .service-hero h1{
    font-size:44px;
  }

  .service-hero p{
    font-size:16px;
  }

  .hero-actions{
    width:100%;
    align-items:stretch;
    flex-direction:column;
  }

  .primary-action,
  .secondary-action{
    width:100%;
  }

  .service-grid,
  .capability-panel,
  .process-grid{
    grid-template-columns:1fr;
  }

  .capability-panel{
    padding:42px 22px;
  }

  .capability-list{
    grid-template-columns:1fr;
  }

  .section-heading h2,
  .capability-left h2,
  .security-note h2,
  .service-cta h2{
    font-size:32px;
  }

  .service-card{
    flex-direction:column;
    min-height:auto;
  }

  .process-card{
    min-height:auto;
  }

  .security-note{
    padding:42px 22px;
  }

  .service-footer{
    flex-direction:column;
    align-items:center;
    gap:8px;
  }
}

@media(max-width:560px){
  .service-hero h1{
    font-size:36px;
  }

  .service-card,
  .process-card{
    padding:22px;
  }

  .service-icon{
    width:60px;
    height:60px;
    font-size:28px;
  }
}
/* Service Copy Section */
.service-content-section{
  padding:150px 0 70px;
}

.service-copy-panel{
  padding:54px 46px;
  border:1px solid rgba(90,205,255,.26);
  border-radius:22px;
  background:
    linear-gradient(135deg,rgba(0,170,255,.12),rgba(0,8,18,.78)),
    rgba(0,12,24,.62);
  box-shadow:
    0 0 34px rgba(0,170,255,.14),
    inset 0 0 28px rgba(0,170,255,.06);
}

.service-copy-panel span{
  display:inline-flex;
  color:var(--blue-soft);
  border:1px solid rgba(90,205,255,.34);
  background:rgba(0,12,24,.56);
  padding:8px 16px;
  border-radius:999px;
  font-size:12px;
  font-weight:900;
  letter-spacing:2.4px;
  text-transform:uppercase;
  margin-bottom:18px;
  box-shadow:0 0 18px rgba(0,170,255,.12);
}

.service-copy-panel h2{
  font-size:42px;
  line-height:1.2;
  margin-bottom:24px;
  background:linear-gradient(180deg,#fff,#9fbfd2);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

.service-copy-text{
  display:grid;
  gap:18px;
}

.service-copy-text p{
  color:#c4d9e6;
  font-size:17px;
  line-height:1.9;
}

@media(max-width:980px){
  .service-content-section{
    padding:70px 0 50px;
  }

  .service-copy-panel{
    padding:36px 22px;
  }

  .service-copy-panel h2{
    font-size:32px;
  }

  .service-copy-text p{
    font-size:15.5px;
  }
}

/* Future Backend Service Content Display */
.service-copy-text h3{
  margin-top:22px;
  margin-bottom:10px;
  color:#f2fbff;
  font-size:24px;
  line-height:1.35;
  text-shadow:0 0 14px rgba(0,170,255,.24);
}

.service-copy-text h4{
  margin-top:18px;
  margin-bottom:8px;
  color:#55c9ff;
  font-size:19px;
  line-height:1.4;
}

.service-copy-text ul{
  margin-top:10px;
  margin-bottom:10px;
  padding-left:0;
  list-style:none;
  display:grid;
  gap:8px;
}

.service-copy-text li{
  color:#c4d9e6;
  font-size:16px;
  line-height:1.8;
}

.service-copy-text li::before{
  content:"▸";
  color:#00aaff;
  margin-right:8px;
  text-shadow:0 0 10px rgba(0,170,255,.8);
}

.service-copy-text a{
  color:#55c9ff;
  text-decoration:none;
  border-bottom:1px solid rgba(85,201,255,.45);
}

.service-copy-text a:hover{
  color:#ffffff;
  border-color:#ffffff;
  text-shadow:0 0 12px rgba(0,170,255,.65);
}

.service-copy-note{
  margin-top:22px;
  padding:18px 20px;
  border:1px solid rgba(90,205,255,.26);
  border-left:3px solid #00aaff;
  border-radius:12px;
  background:rgba(0,12,24,.54);
  color:#c4d9e6;
  line-height:1.8;
}

/* Mobile Service Page Adjustment After Removing Hero */
@media(max-width:980px){

  .service-content-section{
    padding:185px 0 48px;
  }

  .service-copy-panel{
    padding:34px 20px;
    border-radius:18px;
  }

  .service-copy-panel span{
    font-size:11px;
    letter-spacing:1.8px;
    padding:7px 13px;
    margin-bottom:16px;
  }

  .service-copy-panel h2{
    font-size:30px;
    line-height:1.25;
    margin-bottom:20px;
  }

  .service-copy-text{
    gap:15px;
  }

  .service-copy-text p{
    font-size:15px;
    line-height:1.85;
  }

  .process-section{
    padding:62px 0 48px;
  }

  .section-heading{
    margin-bottom:26px;
  }

  .section-heading h2{
    font-size:30px;
  }

  .section-heading p{
    font-size:15px;
    line-height:1.75;
  }

  .security-note{
    margin-top:18px;
    padding:34px 20px;
  }

  .service-cta{
    padding:72px 0 64px;
  }
}

@media(max-width:560px){

  .service-content-section{
    padding:175px 0 42px;
  }

  .service-copy-panel{
    padding:30px 18px;
  }

  .service-copy-panel h2{
    font-size:28px;
  }

  .service-copy-text p{
    font-size:14.5px;
  }

  .process-card{
    padding:20px;
  }

  .security-note{
    padding:30px 18px;
  }
}

/* Rich Service Content */
.service-rich-content{
  display:block;
}

.service-rich-content h3{
  margin:28px 0 14px;
  font-size:28px;
  line-height:1.35;
  color:#f2fbff;
  text-shadow:0 0 16px rgba(0,170,255,.24);
}

.service-rich-content h4{
  margin:24px 0 12px;
  font-size:22px;
  line-height:1.4;
  color:#55c9ff;
  text-shadow:0 0 12px rgba(0,170,255,.3);
}

.service-rich-content p{
  margin:0 0 16px;
  color:#c4d9e6;
  font-size:17px;
  line-height:1.9;
}

.service-rich-content strong{
  color:#ffffff;
  font-weight:900;
  text-shadow:0 0 10px rgba(0,170,255,.34);
}

.service-rich-content ul,
.service-rich-content ol{
  margin:14px 0 18px;
  padding-left:0;
  list-style:none;
  display:grid;
  gap:9px;
}

.service-rich-content li{
  color:#c4d9e6;
  font-size:16px;
  line-height:1.8;
}

.service-rich-content ul li::before{
  content:"▸";
  color:#00aaff;
  margin-right:9px;
  text-shadow:0 0 10px rgba(0,170,255,.8);
}

.service-rich-content ol{
  counter-reset:serviceOrder;
}

.service-rich-content ol li{
  counter-increment:serviceOrder;
}

.service-rich-content ol li::before{
  content:counter(serviceOrder) ".";
  color:#00aaff;
  font-weight:900;
  margin-right:10px;
}

.service-rich-content a{
  color:#55c9ff;
  text-decoration:none;
  border-bottom:1px solid rgba(85,201,255,.5);
}

.service-rich-content a:hover{
  color:#ffffff;
  border-color:#ffffff;
  text-shadow:0 0 12px rgba(0,170,255,.7);
}

.service-copy-note{
  margin:20px 0;
  padding:18px 20px;
  border:1px solid rgba(90,205,255,.26);
  border-left:3px solid #00aaff;
  border-radius:12px;
  background:rgba(0,12,24,.54);
  color:#c4d9e6;
  line-height:1.8;
}

.text-blue{color:#00aaff;text-shadow:0 0 10px rgba(0,170,255,.55);}
.text-cyan{color:#55c9ff;text-shadow:0 0 10px rgba(85,201,255,.45);}
.text-green{color:#00ffb0;text-shadow:0 0 10px rgba(0,255,176,.42);}
.text-yellow{color:#ffd76a;text-shadow:0 0 10px rgba(255,215,106,.38);}
.text-red{color:#ff7b8a;text-shadow:0 0 10px rgba(255,80,110,.42);}
.text-silver{color:#f2fbff;background:linear-gradient(180deg,#fff,#9fbfd2);-webkit-background-clip:text;background-clip:text;color:transparent;}
.text-muted{color:#8ca7bd;}

@media(max-width:640px){
  .service-rich-content h3{
    font-size:24px;
  }

  .service-rich-content h4{
    font-size:19px;
  }

  .service-rich-content p,
  .service-rich-content li{
    font-size:14.8px;
  }
}

/* Nested List Support */
.service-list-row{
  display:flex;
  align-items:flex-start;
  gap:10px;
  margin:8px 0;
  color:#c4d9e6;
  font-size:16px;
  line-height:1.8;
}

.service-list-marker{
  flex:0 0 auto;
  min-width:28px;
  color:#00aaff;
  font-weight:900;
  text-shadow:0 0 10px rgba(0,170,255,.75);
}

.service-list-row.unordered .service-list-marker{
  min-width:18px;
}

.list-level-0{
  margin-left:0;
}

.list-level-1{
  margin-left:28px;
}

.list-level-2{
  margin-left:56px;
}

.list-level-3{
  margin-left:84px;
}

.list-level-4{
  margin-left:112px;
}

@media(max-width:640px){
  .service-list-row{
    font-size:14.8px;
    gap:8px;
  }

  .list-level-1{
    margin-left:18px;
  }

  .list-level-2{
    margin-left:34px;
  }

  .list-level-3{
    margin-left:48px;
  }

  .list-level-4{
    margin-left:60px;
  }
}

/* Nested List Support */
.service-list-row{
  display:flex;
  align-items:flex-start;
  gap:10px;
  margin:8px 0;
  color:#c4d9e6;
  font-size:16px;
  line-height:1.8;
}

.service-list-marker{
  flex:0 0 auto;
  min-width:28px;
  color:#00aaff;
  font-weight:900;
  text-shadow:0 0 10px rgba(0,170,255,.75);
}

.service-list-row.unordered .service-list-marker{
  min-width:18px;
}

.list-level-0{
  margin-left:0;
}

.list-level-1{
  margin-left:32px;
}

.list-level-2{
  margin-left:64px;
}

.list-level-3{
  margin-left:96px;
}

.list-level-4{
  margin-left:128px;
}

@media(max-width:640px){
  .service-list-row{
    font-size:14.8px;
    gap:8px;
  }

  .list-level-1{
    margin-left:20px;
  }

  .list-level-2{
    margin-left:38px;
  }

  .list-level-3{
    margin-left:54px;
  }

  .list-level-4{
    margin-left:68px;
  }
}

/* Nested Custom List Support */
.service-list-row{
  display:flex !important;
  align-items:flex-start !important;
  gap:10px !important;
  margin:8px 0 !important;
  color:#c4d9e6 !important;
  font-size:16px !important;
  line-height:1.8 !important;
}

.service-list-marker{
  flex:0 0 auto !important;
  min-width:30px !important;
  color:#00aaff !important;
  font-weight:900 !important;
  text-shadow:0 0 10px rgba(0,170,255,.75) !important;
}

.service-list-row.arrow .service-list-marker{
  color:#55c9ff !important;
}

.service-list-row.star .service-list-marker{
  color:#ffd76a !important;
}

.list-level-0{
  margin-left:0 !important;
}

.list-level-1{
  margin-left:36px !important;
}

.list-level-2{
  margin-left:72px !important;
}

.list-level-3{
  margin-left:108px !important;
}

.list-level-4{
  margin-left:144px !important;
}

@media(max-width:640px){
  .service-list-row{
    font-size:14.8px !important;
    gap:8px !important;
  }

  .list-level-1{
    margin-left:22px !important;
  }

  .list-level-2{
    margin-left:44px !important;
  }

  .list-level-3{
    margin-left:62px !important;
  }

  .list-level-4{
    margin-left:78px !important;
  }
}

/* Clean Rich Content Inline / List Display */
.service-rich-content span{
  display:inline !important;
  padding:0 !important;
  margin:0 !important;
  border:none !important;
  border-radius:0 !important;
  background:transparent !important;
  box-shadow:none !important;
  font-size:inherit !important;
  font-weight:inherit !important;
  letter-spacing:normal !important;
  text-transform:none !important;
}

.service-rich-content .service-list-row{
  display:flex !important;
  align-items:flex-start !important;
  gap:8px !important;
  margin:6px 0 !important;
  padding:0 !important;
  border:none !important;
  border-radius:0 !important;
  background:transparent !important;
  box-shadow:none !important;
  color:#c4d9e6 !important;
  font-size:16px !important;
  line-height:1.8 !important;
}

.service-rich-content .service-list-marker{
  display:inline-block !important;
  min-width:28px !important;
  padding:0 !important;
  margin:0 !important;
  border:none !important;
  border-radius:0 !important;
  background:transparent !important;
  box-shadow:none !important;
  color:inherit !important;
  text-shadow:none !important;
  font-weight:700 !important;
}

/* Only indentation, no extra visual box */
.service-rich-content .list-level-0{
  margin-left:0 !important;
}

.service-rich-content .list-level-1{
  margin-left:32px !important;
}

.service-rich-content .list-level-2{
  margin-left:64px !important;
}

.service-rich-content .list-level-3{
  margin-left:96px !important;
}

.service-rich-content .list-level-4{
  margin-left:128px !important;
}

/* Text colors only, no box */
.service-rich-content .text-blue{
  color:#00aaff !important;
  text-shadow:none !important;
}

.service-rich-content .text-cyan{
  color:#55c9ff !important;
  text-shadow:none !important;
}

.service-rich-content .text-green{
  color:#00ffb0 !important;
  text-shadow:none !important;
}

.service-rich-content .text-yellow{
  color:#ffd76a !important;
  text-shadow:none !important;
}

.service-rich-content .text-red{
  color:#ff7b8a !important;
  text-shadow:none !important;
}

.service-rich-content .text-silver{
  color:#f2fbff !important;
  background:none !important;
  -webkit-background-clip:initial !important;
  background-clip:initial !important;
  text-shadow:none !important;
}

.service-rich-content .text-muted{
  color:#8ca7bd !important;
  text-shadow:none !important;
}

@media(max-width:640px){
  .service-rich-content .service-list-row{
    font-size:14.8px !important;
  }

  .service-rich-content .list-level-1{
    margin-left:20px !important;
  }

  .service-rich-content .list-level-2{
    margin-left:40px !important;
  }

  .service-rich-content .list-level-3{
    margin-left:58px !important;
  }

  .service-rich-content .list-level-4{
    margin-left:74px !important;
  }
}

/* Fix: list text should keep normal color */
.service-rich-content .service-list-row{
  color:#c4d9e6 !important;
}

.service-rich-content .service-list-row .service-list-marker{
  color:#c4d9e6 !important;
  text-shadow:none !important;
}

.service-rich-content .service-list-row > span:last-child{
  color:#c4d9e6 !important;
}

.service-rich-content .service-list-row > span:last-child span{
  color:inherit !important;
  background:none !important;
  border:none !important;
  box-shadow:none !important;
  padding:0 !important;
}

/* Only explicitly marked text changes color */
.service-rich-content .service-list-row .text-blue,
.service-rich-content .text-blue{
  color:#00aaff !important;
}

.service-rich-content .service-list-row .text-cyan,
.service-rich-content .text-cyan{
  color:#55c9ff !important;
}

.service-rich-content .service-list-row .text-green,
.service-rich-content .text-green{
  color:#00ffb0 !important;
}

.service-rich-content .service-list-row .text-yellow,
.service-rich-content .text-yellow{
  color:#ffd76a !important;
}

.service-rich-content .service-list-row .text-red,
.service-rich-content .text-red{
  color:#ff7b8a !important;
}

.service-rich-content .service-list-row .text-silver,
.service-rich-content .text-silver{
  color:#f2fbff !important;
  background:none !important;
  -webkit-background-clip:initial !important;
  background-clip:initial !important;
}

.service-rich-content .service-list-row .text-muted,
.service-rich-content .text-muted{
  color:#8ca7bd !important;
}

/* Rich Content Center Support */
.service-rich-content .service-center{
  text-align:center !important;
  justify-content:center !important;
}

.service-rich-content .service-list-row.service-center{
  justify-content:center !important;
}

.service-rich-content .service-list-row.service-center > span:last-child{
  text-align:left !important;
}
/* Mobile header overflow fix for services page */
@media(max-width:760px){
  html,
  body{
    width:100%;
    max-width:100%;
    overflow-x:hidden !important;
  }

  header,
  .site-header,
  .service-header{
    max-width:100vw !important;
    overflow:visible !important;
  }

  .language-switch,
  .language-switcher,
  .lang-switch,
  .lang-switcher{
    max-width:calc(100vw - 90px) !important;
    flex-wrap:wrap !important;
    overflow:visible !important;
  }

  .main-nav,
  .nav-links,
  .desktop-nav{
    max-width:100% !important;
    overflow:visible !important;
  }

  .mobile-menu-btn{
    z-index:9999 !important;
  }
}

/* Services Page Mobile Header Fix */
@media(max-width:760px){
  html,
  body{
    width:100%;
    max-width:100%;
    overflow-x:hidden !important;
  }

  .service-header{
    position:relative;
    display:flex !important;
    flex-direction:column !important;
    align-items:stretch !important;
    gap:14px !important;
    width:100% !important;
    max-width:100vw !important;
    padding:18px 16px !important;
    overflow:visible !important;
  }

  .service-brand{
    width:100% !important;
    display:flex !important;
    justify-content:center !important;
  }

  .service-nav{
    width:100% !important;
    display:grid !important;
    grid-template-columns:repeat(2, 1fr) !important;
    gap:10px !important;
    overflow:visible !important;
  }

  .service-nav a{
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    min-height:38px !important;
    padding:8px 10px !important;
    text-align:center !important;
    white-space:normal !important;
    border-radius:10px !important;
  }

  .service-lang{
    width:100% !important;
    display:flex !important;
    justify-content:center !important;
    flex-wrap:wrap !important;
    gap:8px !important;
    overflow:visible !important;
  }

  .service-lang button{
    min-width:46px !important;
    height:34px !important;
  }
}

/* Services Page Mobile Header Spacing Fine Tune */
@media(max-width:760px){
  .service-header{
    gap:10px !important;
    padding-top:16px !important;
    padding-bottom:8px !important;
  }

  #service-content{
    margin-top:8px !important;
    padding-top:25px !important;
  }
}