/* ==========================================================
   School Readiness Program — Page Styles
   Matches the design system used on the Hearing Services
   detail pages (hearingassessment.html, etc.)
   ========================================================== */

body {
  background: #f6f8fc;
  color: #555;
}

h1,
h2 {
  font-family: 'Poppins', sans-serif;
  color: #0a2357;
  font-weight: 700;
}

/* HERO */

.hero {
  padding: 80px 0;
  background: linear-gradient(135deg, #eef2ff, #dbe4ff);
}

/* IMAGE */

.service-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* CARD */

.section-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.signs-list {
  padding-left: 20px;
}

.signs-list li {
  margin-bottom: 10px;
}

/* PROGRAM SKILLS GRID (unique to School Readiness page) */

.readiness-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 0;
  list-style: none;
}

.readiness-grid li {
  background: #f6f8fc;
  border-left: 4px solid #1f4fd8;
  border-radius: 10px;
  padding: 14px 16px;
  font-weight: 500;
  color: #0a2357;
}

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