body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #162432;
  background:
    radial-gradient(circle at top left, rgba(0, 153, 204, 0.12), transparent 22%),
    radial-gradient(circle at top right, rgba(255, 43, 43, 0.10), transparent 20%),
    linear-gradient(180deg, #f9fbfd 0%, #edf4fa 100%);
}

.service-shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px 16px 56px;
}

.service-hero,
.service-card,
.service-panel {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 18px 38px rgba(20, 38, 54, 0.08);
}

.service-hero {
  padding: 34px;
  border: 1px solid rgba(22, 36, 50, 0.08);
  background: linear-gradient(135deg, rgba(0, 153, 204, 0.12), rgba(255, 43, 43, 0.08));
}

.service-hero h1 {
  margin: 0 0 10px;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
}

.service-hero p,
.service-panel p,
.service-card p {
  color: #5b6b7a;
  line-height: 1.7;
}

.service-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.service-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}

.service-btn.primary {
  background: #0f4c81;
  color: #fff;
}

.service-btn.secondary {
  border: 1px solid rgba(15, 76, 129, 0.18);
  color: #0f4c81;
  background: #fff;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.service-card {
  padding: 20px;
  border: 1px solid rgba(22, 36, 50, 0.08);
}

.service-card h2,
.service-panel h2 {
  margin: 0 0 10px;
  font-size: 1.35rem;
}

.service-card ul,
.service-panel ul {
  margin: 0;
  padding-left: 18px;
  color: #5b6b7a;
  line-height: 1.7;
}

.service-panel {
  margin-top: 18px;
  padding: 22px;
  border: 1px solid rgba(22, 36, 50, 0.08);
}

.service-note {
  font-size: 0.95rem;
  color: #5b6b7a;
}

@media (max-width: 900px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
}
