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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    Helvetica, Arial, sans-serif;
  color: #1f2933;
  line-height: 1.6;
  background: #ffffff;
}

/* LAYOUT */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* HERO */
.service-hero {
  background: linear-gradient(180deg, #f6fbfd, #ffffff);
  padding: 5rem 0 4rem;
  border-bottom: 1px solid #e6eef2;
}

.service-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.15rem;
  max-width: 640px;
  margin-bottom: 2rem;
  color: #4b5563;
}

/* BUTTONS */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.2s ease;
  color: #ffffff;
}

.btn-primary {
  background: #000;
  color: #ffffff;
}

.btn-primary:hover {
  background: #0aa6c2;
}

.btn-secondary {
  background: #1f2933;
  color: #ffffff;
}

.btn-secondary:hover {
  background: #111827;
}

/* CONTENT */
.service-content section {
  padding: 3rem 0;
  border-bottom: 1px solid #eef2f5;
}

.service-content h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-content p {
  max-width: 720px;
  margin-bottom: 1rem;
  color: #111827 !important;
}

.service-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  color: #000 !important;
}

.service-content li {
  margin-bottom: 0.5rem;
}

/* STEPS */
.steps {
  list-style: none;
  max-width: 720px;
  color: #000 !important;
}

.steps li {
  padding-left: 1rem;
  border-left: 3px solid #0cc0df;
  margin-bottom: 1.5rem;
}

/* CTA */
.service-cta {
  text-align: center;
  padding: 4rem 1rem;
  background: #f6fbfd;
  border-radius: 12px;
}

.service-cta h2 {
  margin-bottom: 1rem;
}

.service-cta p {
  margin: 0 auto 2rem;
  max-width: 600px;
}

/* added code  */

.service-hero {
  padding: 5rem 0;
  background: linear-gradient(180deg, #f6fbfd, #ffffff);
}

.hero-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.hero-content {
  max-width: 560px;
}

.hero-content h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: #4b5563;
  margin-bottom: 2rem;
}

.hero-visual svg {
  width: 260px;
  height: auto;
}
.hero-icon {
  width: 360px;
  max-width: 100%;
  height: auto;
  color: #000;
}

/* 📱 Responsive: stack on mobile */
@media (max-width: 768px) {
  .hero-layout {
    flex-direction: column;
    text-align: center;
  }

  .hero-visual svg {
    width: 200px;
  }
}

/* =========================
  Header color in services pages
========================= */
.main-header {
  background: #fafdfe;
}
