

/* ---------------------------
   SERVICES GRID
----------------------------*/
.services-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 50px;
}

/* Row of 3 cards */
.services-row-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-bottom: 2rem;
}

/* Row of 2 cards (centered under the 3) */
.services-row-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

/* Individual cards */
.service-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-align: left;
  transition: transform 0.3s ease;
}
.service-card:hover {
  transform: translateY(-6px);
}
.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #000;
}
.service-card p {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}
.service-card .service-icon {
  font-size: 30px;
  margin-bottom: 15px;
  color: #005b8f;
}




/* Our Mission Box (light blue background like "We Specialize In") */
.mission-box {
  background: #e6f3fb; /* same light blue as "We Specialize In" */
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  text-align: center;
}

.mission-box h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #002b49; /* dark blue heading for contrast */
}

.mission-box p {
  font-size: 1.125rem;
  color: #333;
  line-height: 1.6;
}


/* Align icon left, heading right, paragraph under heading */
.service-card {
  display: flex;
  align-items: flex-start;
  gap: 16px; /* space between icon and text */
  padding: 20px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
}

/* Icon container */
.service-card .service-icon {
  flex-shrink: 0; /* prevents icon from shrinking */
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px; /* emoji/icon size */
  color: #005b8f;
}

/* Text block next to icon */
.service-card .service-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Heading above paragraph */
.service-card .service-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 6px;
  color: #111827;
}

.service-card .service-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #374151;
  margin: 0;
}


/* ---------------------------
   MISSION SECTION
----------------------------*/
.media-page .mission {
  max-width: 900px;
  margin: 50px auto;
  text-align: center;
}
.media-page .mission h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #000; /* Ensure black heading */
}
.media-page .mission p {
  font-size: 18px;
  line-height: 1.7;
  color: #333;
}

/* ===========================
   MEDIA PAGE STYLES
   =========================== */

/* Page wrapper */
.media-page {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  color: #222;
}

/* ---------------------------
   HERO / INTRO SECTION
----------------------------*/
.media-page .hero-intro {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}
.media-page .hero-intro h1 {
  font-size: 42px;
  line-height: 1.3;
  margin-bottom: 20px;
}
.media-page .hero-intro p {
  font-size: 18px;
  line-height: 1.7;
  color: #f1f1f1;
}

/* ---------------------------
   MISSION SECTION
----------------------------*/
.media-page .mission {
  max-width: 900px;
  margin: 50px auto;
  text-align: center;
}
.media-page .mission h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #000; /* Ensure black heading */
}
.media-page .mission p {
  font-size: 18px;
  line-height: 1.7;
  color: #333;
}




/* ---------------------------
   RESPONSIVE BEHAVIOR
----------------------------*/

/* Tablet */
@media (max-width: 991px) {
  .services-row-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-row-2 {
    grid-template-columns: 1fr 1fr;
    max-width: 100%;
  }
  .media-page .hero-intro h1 {
    font-size: 34px;
  }
  .media-page .mission h2 {
    font-size: 26px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .services-row-3,
  .services-row-2 {
    grid-template-columns: 1fr;
  }
  .media-page .hero-intro h1 {
    font-size: 28px;
  }
  .media-page .hero-intro p,
  .media-page .mission p {
    font-size: 16px;
  }
}


.measurable-results
{text-align: center;}