body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #9badf7;
  color: #000000;
  line-height: 1.6;
}

.service-detail {
  max-width: 900px;
  margin: 60px auto;
  padding: 30px;
  background: #88a0fd;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.service-header h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: center;
  color: #1e3a8a; /* deep blue */
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-content h3 {
  margin-top: 20px;
  margin-bottom: 8px;
  color: #b91c1c; /* deep red for emphasis */
  font-size: 1.2rem;
}

.service-content p {
  margin-bottom: 16px;
  font-size: 1rem;
  color: #000000;
}

.trust-note {
  background: #fef2f2;
  border-left: 5px solid #b91c1c;
  padding: 12px;
  margin-top: 20px;
  border-radius: 6px;
  font-size: 1.05rem;
  color: #991b1b;
}

.service-cta {
  text-align: center;
  margin-top: 30px;
}

.cta-btn {
  display: inline-block;
  background: #b91c1c;
  color: #fff;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-btn:hover {
  background: #991b1b;
}

/* Responsive */
@media (max-width: 768px) {
  .service-detail {
    margin: 30px 15px;
    padding: 20px;
  }

  .service-header h2 {
    font-size: 1.6rem;
  }

  .service-content h3 {
    font-size: 1rem;
  }

  .cta-btn {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
}


/* Extra small screens (phones under 480px) */
@media (max-width: 480px) {
  .service-detail {
    margin: 20px 10px;
    padding: 15px;
    border-radius: 8px;
  }

  .service-header h2 {
    font-size: 1.4rem;
    line-height: 1.3;
  }

  .service-content h3 {
    font-size: 0.95rem;
  }

  .service-content p {
    font-size: 0.9rem;
  }

  .trust-note {
    font-size: 0.9rem;
    padding: 10px;
  }

  .cta-btn {
    display: block;
    width: 100%;
    padding: 10px;
    font-size: 0.9rem;
  }
}


















/* ===== Service Banner Image Styling ===== */
.service-banner {
  width: 100%;
  overflow: hidden;
  position: relative;
  max-height: 350px;
  border-radius: 12px;
  margin-bottom: 25px;
}

.service-banner .banner-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease-in-out;
}

.service-banner .banner-image:hover {
  transform: scale(1.03);
}

/* ===== Responsive Design ===== */

/* Mobile Devices (up to 600px) */
@media screen and (max-width: 600px) {
  .service-banner {
    max-height: 220px;
    border-radius: 8px;
    margin-bottom: 20px;
  }

  .service-banner .banner-image {
    object-position: center;
  }

  .service-header h2 {
    font-size: 1.5rem;
    text-align: center;
  }

  .service-intro {
    font-size: 0.95rem;
    text-align: center;
    padding: 0 15px;
  }
}

/* Tablets (601px – 1024px) */
@media screen and (min-width: 601px) and (max-width: 1024px) {
  .service-banner {
    max-height: 280px;
  }

  .service-header h2 {
    font-size: 1.8rem;
  }

  .service-intro {
    font-size: 1rem;
    text-align: center;
  }
}

/* Large Screens (1025px and above) */
@media screen and (min-width: 1025px) {
  .service-banner {
    max-height: 400px;
  }

  .service-header h2 {
    font-size: 2rem;
  }

  .service-intro {
    font-size: 1.05rem;
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
  }
}
