.hero-band{ background:#f8fafd; padding:20px 0 20px; }
.hero-card{
  max-width: 1000px; margin: 0 auto; padding: 20px 12px;
  background:#fff; border:1px solid var(--line); border-radius:14px;
  box-shadow: 0 10px 26px rgba(15,23,42,.06);
  text-align:center;
}
.hero-card h1{ margin:0 0 8px; font-size:32px; color:#0b3a5b; }
.hero-card p{ margin:0; font-size:16px; color:#5b6a7b; }

.services-wrap{ max-width: 1300px; margin:12px auto 60px; padding:0 26px; }
.svc-grid{ display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:10px; }
@media (max-width: 900px){ .svc-grid{ grid-template-columns:1fr } }

.svc-card{
  background:#fff; border:1px solid var(--line); border-radius:14px; overflow:hidden;
  box-shadow: 0 6px 18px rgba(2,12,27,.06);
}
.svc-title{
  display:flex; align-items:center; gap:10px;
  background:linear-gradient(180deg,#f4f8fc 0%,#edf4fb 100%);
  color:#0b3a5b; font-weight:800; font-size:18px;
  padding:14px 16px; border-bottom:1px solid var(--line);
}
.svc-title .bar{ width:6px; height:18px; background:#0b6aa1; border-radius:3px; }
.svc-body{ padding:10px 18px; text-align: justify;}
.svc-body ul{ margin:0; padding-left:20px; }
.svc-body li{ margin:6px 0; line-height:1.6; }

.svc-img {
  display: block;
  width: 100%;
  max-height: 180px;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
  margin-bottom: 12px;
  border-radius: 12px;
}

.svc-body {
  display: flex;
  gap: 20px;
  align-items: center;
}

.svc-body p {
  flex: 1;
}

.svc-img {
  width: 44%;
  max-height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

.left-img { flex-direction: row; }
.right-img { flex-direction: row-reverse; }


.right-img { 
  flex-direction: row;
}

.svc-card {
  transition: transform .2s ease, box-shadow .2s ease;
}
.svc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0,0,0,.08);
}

.svc-body p {
  margin: 0;
  font-size: .95rem;
}