/* ================================
   SERVICES – SHARED STYLES
   ================================ */

/* ---------- Page Base ---------- */
.service-page {
  padding: calc(4rem + 60px) 0 4rem;
}

.service-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 1.2rem;
}

/* ---------- Hero ---------- */
.service-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 5rem;
}

.service-hero h2 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.service-hero p {
  font-size: 1.15rem;
  color: #555;
  line-height: 1.7;
}

.service-hero-image {
  background: #f2f4f8;
  border-radius: 18px;
  height: 340px;
  overflow: hidden;
}

/* ---------- Section Head ---------- */
.service-section-head {
  max-width: 760px;
  margin-bottom: 3rem;
}

.service-section-head h3 {
  font-size: 2rem;
  margin-bottom: 0.8rem;
}

/* ---------- Grid & Cards ---------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 5rem;
}

.service-card {
  background: #fff;
  border-radius: 16px;
  padding: 2.3rem;
  box-shadow: 0 12px 32px rgba(0,0,0,0.06);
}

.service-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 1rem;
}

.service-card h4 {
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
}

.service-card ul {
  padding-left: 1.1rem;
}

.service-card li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

/* ---------- Content Blocks ---------- */
.service-block {
  margin-bottom: 3.5rem;
}

.service-block h3 {
  font-size: 1.9rem;
  margin-bottom: 1rem;
}

.service-block ul {
  padding-left: 1.2rem;
}

.service-block li {
  margin-bottom: 0.6rem;
}

/* ---------- Disclaimer ---------- */
.service-disclaimer {
  background: #f8fafc;
  border-radius: 14px;
  padding: 2rem;
  font-size: 0.95rem;
  color: #555;
}

/* ---------- Mobile Refinement ---------- */
@media (max-width: 768px) {

  .service-page {
    padding: calc(3rem + 40px) 0 3rem;
  }

  .service-hero {
    grid-template-columns: 1fr;
  }

  .service-hero h2 {
    font-size: 1.55rem;
    line-height: 1.25;
  }

  .service-hero p {
    font-size: 0.95rem;
  }

  .service-hero-image {
    height: 220px;
  }

  .service-section-head h3,
  .service-block h3 {
    font-size: 1.35rem;
  }

  .service-card {
    padding: 1.5rem;
    width: 90vw;
  }

  .service-card h4 {
    font-size: 1rem;
  }

  .service-card li,
  .service-block li,
  .service-block p {
    font-size: 0.8rem;
  }

  .service-icon {
    width: 36px;
    height: 36px;
  }
}
