:root {
  --service-bg: #f4f8fc;
}

.service-hero {
  padding: 100px 0 70px;
  background: linear-gradient(120deg, #0a2540 0%, #1b4f99 55%, #3a86ff 100%);
  color: #fff;
}

.service-hero h1 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 12px 0;
}

.service-hero p {
  max-width: 760px;
}

.service-content {
  background: var(--service-bg);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.service-panel {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(10, 37, 64, 0.1);
  box-shadow: 0 12px 28px rgba(10, 37, 64, 0.08);
}

.service-panel h2,
.service-panel h3 {
  font-family: "Poppins", sans-serif;
  margin-bottom: 10px;
}

.service-panel ul {
  list-style: disc;
  margin-left: 18px;
  display: grid;
  gap: 8px;
}

.service-image {
  border-radius: 14px;
  overflow: hidden;
  margin-top: 16px;
}

.service-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

@media (max-width: 900px) {
  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-image img {
    height: 220px;
  }
}
