<style>
/* =========================================================
   HERO SECTION
   ========================================================= */

.home-hero {
  position: relative;
  z-index: 1;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  overflow: hidden;
}

/* ---------------------------------------------------------
   HERO OVERLAY
   This stays inside the hero only
   --------------------------------------------------------- */

/* HERO ONLY OVERLAY */
.home-hero {
  position: relative;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(249, 247, 244, 0.85) 0%,
    rgba(249, 247, 244, 0.6) 40%,
    rgba(249, 247, 244, 0.2) 100%
  );
  z-index: 1;
}

/* Make sure hero content sits above overlay */
.home-hero > * {
  position: relative;
  z-index: 2;
}

/* ---------------------------------------------------------
   HERO INNER CONTENT
   --------------------------------------------------------- */

.home-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.home-hero-inner > * {
  max-width: 680px;
}

/* ---------------------------------------------------------
   HERO TEXT
   --------------------------------------------------------- */

.home-hero-kicker {
  margin: 0 0 14px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #4F6D8C;
}

.home-hero h1 {
  margin: 0 0 20px;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.15;
  font-weight: 700;
  color: #2F4A5A;
}

.home-hero-subheadline {
  margin: 0 0 30px;
  font-size: 1.15rem;
  line-height: 1.7;
  color: #2F2F2F;
}

/* ---------------------------------------------------------
   HERO BUTTONS
   --------------------------------------------------------- */

.home-hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.home-hero-buttons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  padding: 14px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.25s ease;
}

.btn-primary {
  background-color: #4F6D8C;
  color: #FFFFFF;
}

.btn-primary:hover {
  background-color: #3B5A73;
  color: #FFFFFF;
}

.btn-secondary {
  background-color: #FFFFFF;
  color: #2F4A5A;
  border: 2px solid #7FAFB2;
}

.btn-secondary:hover {
  background-color: #EAF2F7;
  color: #2F4A5A;
}

/* ---------------------------------------------------------
   HERO TRUST SIGNALS
   --------------------------------------------------------- */

.home-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.home-hero-trust span {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(79, 109, 140, 0.15);
  color: #2F4A5A;
  font-size: 0.95rem;
  font-weight: 600;
}

/* =========================================================
   QUICK SERVICES SECTION
   ========================================================= */

.quick-services-section {
  position: relative;
  z-index: 5;
  background-color: #F7F5F2;
  padding: 80px 20px;
}

/* ---------------------------------------------------------
   REMOVE ANY UNWANTED OVERLAYS
   --------------------------------------------------------- */

.quick-services-section::before,
.quick-services-section::after {
  content: none !important;
  display: none !important;
}

/* ---------------------------------------------------------
   QUICK SERVICES HEADER
   --------------------------------------------------------- */

.quick-services-header {
  max-width: 800px;
  margin: 0 auto 50px;
  text-align: center;
}

.quick-services-kicker {
  margin: 0 0 10px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #4F6D8C;
}

.quick-services-title {
  margin: 0 0 15px;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.2;
  font-weight: 700;
  color: #1F2A30;
}

.quick-services-intro {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #2F2F2F;
}

/* =========================
   QUICK SERVICES GRID (CENTER LAST ROW)
========================= */

.quick-services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* THIS centers the last row */
  gap: 25px;
}

/* Each card takes 3 per row */
.quick-service-card {
  width: calc(33.333% - 17px);
}

/* ---------------------------------------------------------
   QUICK SERVICE CARD
   --------------------------------------------------------- */

.quick-service-card {
  background-color: #FFFFFF;
  border: 1px solid #DADADA;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  height: 100%;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.quick-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

/* ---------------------------------------------------------
   QUICK SERVICE ICON
   --------------------------------------------------------- */

.quick-service-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background-color: #EAF2F7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
}

/* ---------------------------------------------------------
   QUICK SERVICE TEXT
   --------------------------------------------------------- */

.quick-service-title {
  margin: 0 0 12px;
  font-size: 1.2rem;
  line-height: 1.3;
  font-weight: 700;
  color: #1F2A30;
}

.quick-service-text {
  margin: 0 0 16px;
  font-size: 0.98rem;
  line-height: 1.7;
  color: #2F2F2F;
}

/* ---------------------------------------------------------
   QUICK SERVICE LINK
   --------------------------------------------------------- */

.quick-service-link {
  display: inline-block;
  font-weight: 700;
  color: #2F4A5A;
  text-decoration: underline;
}

.quick-service-link:hover {
  color: #4F6D8C;
}

/* =========================================================
   RESPONSIVE STYLES
   ========================================================= */

@media (max-width: 991px) {
  .quick-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .home-hero {
    min-height: 540px;
    padding: 60px 18px;
  }

  .home-hero-subheadline {
    font-size: 1rem;
  }

  .home-hero-buttons a {
    width: 100%;
  }

  .home-hero-trust span {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .quick-services-section {
    padding: 60px 16px;
  }

  .quick-services-header {
    margin-bottom: 36px;
  }

  .quick-services-grid {
    grid-template-columns: 1fr;
  }

  .quick-service-card {
    padding: 24px 18px;
  }
}
/* =========================================================
   WHY CHOOSE US SECTION
   This version is built to avoid washed-out text and faded
   images by forcing full opacity and strong contrast.
========================================================= */

.why-choose-safe {
  /* Soft section background */
  background: #f7f5f2 !important;

  /* Section spacing */
  padding: 80px 20px !important;

  /* Defensive readability rules */
  opacity: 1 !important;
  filter: none !important;
  mix-blend-mode: normal !important;
  position: relative !important;
  z-index: 1 !important;
}

/* Prevent inherited fading on all direct content inside this section */
.why-choose-safe,
.why-choose-safe * {
  opacity: 1 !important;
  filter: none !important;
  mix-blend-mode: normal !important;
}

/* Main inner wrapper */
.why-choose-safe__inner {
  max-width: 1200px;
  margin: 0 auto;

  /* Two-column layout */
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: stretch;
}

/* =========================================================
   LEFT CONTENT CARD
========================================================= */
.why-choose-safe__card {
  background: #ffffff !important;
  border-radius: 22px;
  padding: 48px 42px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

  /* Defensive rules */
  position: relative;
  z-index: 2;
}

/* Small section label */
.why-choose-safe__eyebrow {
  margin: 0 0 14px 0;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #3babb0 !important;
}

/* Main heading */
.why-choose-safe__title {
  margin: 0 0 22px 0;
  font-size: 2.6rem;
  line-height: 1.18;
  font-weight: 800;
  color: #1f1f1f !important;
}

/* Intro paragraph */
.why-choose-safe__intro {
  margin: 0 0 30px 0;
  font-size: 1.08rem;
  line-height: 1.8;
  color: #444444 !important;
  max-width: 58ch;
}

/* =========================================================
   BULLET LIST
========================================================= */
.why-choose-safe__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.why-choose-safe__list li {
  position: relative;
  padding-left: 38px;
  margin-bottom: 18px;
  font-size: 1.08rem;
  line-height: 1.6;
  font-weight: 600;
  color: #222222 !important;
}

/* Remove extra space on final item */
.why-choose-safe__list li:last-child {
  margin-bottom: 0;
}

/* Custom checkmark */
.why-choose-safe__list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1rem;
  font-weight: 800;
  color: #3babb0 !important;
}

/* =========================================================
   IMAGE COLUMN
========================================================= */
.why-choose-safe__media {
  position: relative;
  z-index: 2;
}

.why-choose-safe__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

  /* Defensive rules so image does not appear faded */
  opacity: 1 !important;
  filter: none !important;
}

/* =========================================================
   TABLET
========================================================= */
@media (max-width: 991px) {
  .why-choose-safe__inner {
    grid-template-columns: 1fr;
  }

  .why-choose-safe__title {
    font-size: 2.1rem;
  }

  .why-choose-safe__media img {
    min-height: 320px;
  }
}

/* =========================================================
   MOBILE
========================================================= */
@media (max-width: 767px) {
  .why-choose-safe {
    padding: 60px 16px !important;
  }

  .why-choose-safe__card {
    padding: 32px 24px;
  }

  .why-choose-safe__title {
    font-size: 1.8rem;
  }

  .why-choose-safe__intro {
    font-size: 1rem;
    line-height: 1.75;
  }

  .why-choose-safe__list li {
    font-size: 1rem;
    padding-left: 32px;
  }

  .why-choose-safe__media img {
    min-height: 260px;
  }
}
</style>