<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
   Full replacement CSS
   ========================================================= */

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

/* Remove any unwanted pseudo-element overlays */
.quick-services-section::before,
.quick-services-section::after {
  content: none !important;
  display: none !important;
}

/* ---------------------------------------------------------
   SECTION 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;
}

/* ---------------------------------------------------------
   SERVICES GRID
   Desktop = 3 per row
   Tablet = 2 per row
   Mobile = 1 per row
   --------------------------------------------------------- */
.quick-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 25px;
  align-items: stretch;
}

/* ---------------------------------------------------------
   SERVICE CARD
   --------------------------------------------------------- */
.quick-service-card {
  background-color: #FFFFFF;
  border: 1px solid #DADADA;
  border-radius: 12px;
  padding: 30px 22px;
  text-align: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;

  /* Makes all cards stretch evenly */
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

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

/* ---------------------------------------------------------
   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;
  flex-shrink: 0;
}

/* ---------------------------------------------------------
   SERVICE TITLE
   --------------------------------------------------------- */
.quick-service-title {
  margin: 0 0 12px;
  font-size: 1.75rem;
  line-height: 1.3;
  font-weight: 700;
  color: #1F2A30;

  /* Prevent ugly word-by-word stacking */
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

/* ---------------------------------------------------------
   SERVICE TEXT
   --------------------------------------------------------- */
.quick-service-text {
  margin: 0 0 18px;
  font-size: 1rem;
  line-height: 1.7;
  color: #2F2F2F;
  flex-grow: 1;
}

/* ---------------------------------------------------------
   SERVICE LINK
   --------------------------------------------------------- */
.quick-service-link {
  display: inline-block;
  margin-top: auto;
  font-weight: 700;
  color: #2F4A5A;
  text-decoration: underline;
}

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

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

/* ---------------------------------------------------------
   TABLET
   Show 2 cards per row
   --------------------------------------------------------- */
@media (max-width: 991px) {
  .quick-services-section {
    padding: 70px 18px;
  }

  .quick-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }

  .quick-service-card {
    padding: 28px 20px;
  }

  .quick-service-title {
    font-size: 1.55rem;
  }
}

/* ---------------------------------------------------------
   MOBILE
   Show 1 card per row
   --------------------------------------------------------- */
@media (max-width: 767px) {
  .quick-services-section {
    padding: 60px 16px;
  }

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

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

  .quick-service-card {
    padding: 24px 18px;
  }

  .quick-service-title {
    font-size: 1.4rem;
  }

  .quick-service-text {
    font-size: 0.98rem;
  }
}
/* =========================================================
   CENTER A SINGLE LEFTOVER CARD IN THE LAST ROW
   Add this at the very bottom of the CSS file
   ========================================================= */

/* ---------------------------------------------------------
   DESKTOP
   If there is only 1 card in the last row of a 3-column grid,
   move it to the center column.
   Example: 7 cards total
   --------------------------------------------------------- */
.quick-services-grid > .quick-service-card:last-child:nth-child(3n + 1) {
  grid-column: 2;
}

/* ---------------------------------------------------------
   TABLET
   If there is only 1 card in the last row of a 2-column grid,
   let it span both columns but limit its width so it appears
   centered instead of full width.
   Example: 5 cards total
   --------------------------------------------------------- */
@media (max-width: 991px) {
  .quick-services-grid > .quick-service-card:last-child:nth-child(2n + 1) {
    grid-column: 1 / -1;
    max-width: calc(50% - 11px);
    width: 100%;
    justify-self: center;
  }
}

/* ---------------------------------------------------------
   MOBILE
   On phones, cards stay full width
   --------------------------------------------------------- */
@media (max-width: 767px) {
  .quick-services-grid > .quick-service-card:last-child:nth-child(2n + 1) {
    grid-column: auto;
    max-width: 100%;
    justify-self: stretch;
  }
}

/* =========================================================
   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;
  }
}
/* =========================================================
   SHARED SECTION STYLES
   These styles help keep all added homepage sections
   visually consistent with your current design.
   ========================================================= */

.section-kicker {
  margin: 0 0 12px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #3BABB0;
}

.trust-container,
.coordination-container,
.who-we-help-container,
.how-it-works-container {
  max-width: 1200px;
  margin: 0 auto;
}

.trust-header,
.who-we-help-header,
.how-it-works-header {
  max-width: 850px;
  margin: 0 auto 50px;
  text-align: center;
}

.trust-header h2,
.coordination-text h2,
.who-we-help-header h2,
.how-it-works-header h2 {
  margin: 0 0 18px;
  font-size: 2.2rem;
  line-height: 1.2;
  color: #2f2f2f;
}

.trust-header p,
.coordination-text p,
.who-we-help-header p,
.how-it-works-header p,
.trust-card p,
.coordination-card p,
.who-we-help-card p,
.how-it-works-step p {
  color: #5f5f5f;
  line-height: 1.8;
  font-size: 1rem;
}

/* =========================================================
   TRUST / CREDIBILITY SECTION
   ========================================================= */

.trust-section {
  background-color: #fcfbf8;
  padding: 80px 20px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-card {
  background-color: #ffffff;
  border-radius: 18px;
  padding: 30px 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  text-align: center;
}

.trust-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background-color: #3BABB0;
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-card h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
  color: #2f2f2f;
}

/* =========================================================
   HEALTHCARE REFERRALS / CARE COORDINATION SECTION
   ========================================================= */

.coordination-section {
  background-color: #f7f5f2;
  padding: 80px 20px;
}

.coordination-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 28px;
  align-items: center;
}

.coordination-text {
  background-color: transparent;
}

.coordination-list {
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
}

.coordination-list li {
  position: relative;
  margin-bottom: 14px;
  padding-left: 28px;
  color: #4f4f4f;
  line-height: 1.7;
}

.coordination-list li::before {
  content: "•";
  position: absolute;
  left: 8px;
  top: 0;
  color: #3BABB0;
  font-size: 1.2rem;
  line-height: 1.2;
}

.coordination-card {
  background-color: #ffffff;
  border-radius: 18px;
  padding: 32px 28px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.coordination-card h3 {
  margin: 0 0 14px;
  font-size: 1.35rem;
  color: #2f2f2f;
}

.coordination-button {
  display: inline-block;
  margin-top: 12px;
  padding: 12px 22px;
  background-color: #3BABB0;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.coordination-button:hover {
  background-color: #31979b;
  transform: translateY(-2px);
}

/* =========================================================
   WHO WE HELP SECTION
   ========================================================= */

.who-we-help-section {
  background-color: #fcfbf8;
  padding: 80px 20px;
}

.who-we-help-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.who-we-help-card {
  background-color: #ffffff;
  border-radius: 18px;
  padding: 28px 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.who-we-help-card h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
  color: #2f2f2f;
}

/* =========================================================
   HOW IT WORKS SECTION
   ========================================================= */

.how-it-works-section {
  background-color: #f7f5f2;
  padding: 80px 20px;
}

.how-it-works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.how-it-works-step {
  background-color: #ffffff;
  border-radius: 18px;
  padding: 34px 26px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  text-align: center;
}

.step-number {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background-color: #3BABB0;
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.how-it-works-step h3 {
  margin: 0 0 12px;
  font-size: 1.2rem;
  color: #2f2f2f;
}

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

@media (max-width: 991px) {
  .trust-header h2,
  .coordination-text h2,
  .who-we-help-header h2,
  .how-it-works-header h2 {
    font-size: 1.95rem;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .coordination-content {
    grid-template-columns: 1fr;
  }

  .who-we-help-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .how-it-works-grid {
    grid-template-columns: 1fr;
  }
}

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

@media (max-width: 767px) {
  .trust-section,
  .coordination-section,
  .who-we-help-section,
  .how-it-works-section {
    padding: 60px 16px;
  }

  .trust-header,
  .who-we-help-header,
  .how-it-works-header {
    margin-bottom: 36px;
  }

  .trust-header h2,
  .coordination-text h2,
  .who-we-help-header h2,
  .how-it-works-header h2 {
    font-size: 1.7rem;
  }

  .trust-grid,
  .who-we-help-grid,
  .how-it-works-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .trust-card,
  .coordination-card,
  .who-we-help-card,
  .how-it-works-step {
    padding: 24px 20px;
  }

  .coordination-list li {
    padding-left: 24px;
  }
}
/* =========================================================
   TESTIMONIALS SLIDER SECTION
   ========================================================= */

.testimonials-slider-section {
  background-color: #fcfbf8;
  padding: 80px 20px;
}

.testimonials-slider-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ---------------------------------------------------------
   HEADER
   --------------------------------------------------------- */

.testimonials-slider-header {
  max-width: 850px;
  margin: 0 auto 50px;
  text-align: center;
}

.testimonials-slider-header h2 {
  margin: 0 0 18px;
  font-size: 2.2rem;
  line-height: 1.2;
  color: #2f2f2f;
}

.testimonials-slider-header p {
  color: #5f5f5f;
  line-height: 1.8;
  font-size: 1rem;
}

/* ---------------------------------------------------------
   SLIDER WRAPPER
   --------------------------------------------------------- */

.testimonials-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonials-slider-viewport {
  overflow: hidden;
  width: 100%;
}

.testimonials-slider-track {
  display: flex;
  transition: transform 0.45s ease;
  will-change: transform;
}

/* ---------------------------------------------------------
   SLIDES
   Desktop = 3 cards visible
   Tablet = 2 cards visible
   Mobile = 1 card visible
   --------------------------------------------------------- */

.testimonial-slide {
  flex: 0 0 33.3333%;
  padding: 0 12px;
  box-sizing: border-box;
}

/* ---------------------------------------------------------
   CARD
   --------------------------------------------------------- */

.testimonial-card {
  background-color: #ffffff;
  border-radius: 18px;
  padding: 28px 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  height: 100%;
}

/* ---------------------------------------------------------
   STAR RATING
   --------------------------------------------------------- */

.testimonial-stars {
  margin-bottom: 16px;
  font-size: 1.2rem;
  line-height: 1;
  color: #3BABB0;
  letter-spacing: 2px;
}

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

.testimonial-text {
  margin: 0 0 18px;
  color: #5f5f5f;
  line-height: 1.8;
  font-size: 1rem;
}

.testimonial-author {
  color: #2f2f2f;
  font-size: 0.98rem;
}

/* ---------------------------------------------------------
   NAVIGATION BUTTONS
   --------------------------------------------------------- */

.testimonial-nav {
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background-color: #3BABB0;
  color: #ffffff;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.testimonial-nav:hover {
  background-color: #31979b;
  transform: translateY(-2px);
}

/* ---------------------------------------------------------
   DOTS
   --------------------------------------------------------- */

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(59, 171, 176, 0.25);
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.testimonial-dot.active {
  background-color: #3BABB0;
  transform: scale(1.1);
}

/* ---------------------------------------------------------
   TABLET
   --------------------------------------------------------- */

@media (max-width: 991px) {
  .testimonials-slider-header h2 {
    font-size: 1.95rem;
  }

  .testimonial-slide {
    flex: 0 0 50%;
  }
}

/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */

@media (max-width: 767px) {
  .testimonials-slider-section {
    padding: 60px 16px;
  }

  .testimonials-slider-header {
    margin-bottom: 36px;
  }

  .testimonials-slider-header h2 {
    font-size: 1.7rem;
  }

  .testimonials-slider-wrapper {
    gap: 8px;
  }

  .testimonial-slide {
    flex: 0 0 100%;
    padding: 0 6px;
  }

  .testimonial-card {
    padding: 24px 20px;
  }

  .testimonial-nav {
    width: 42px;
    height: 42px;
    font-size: 1.05rem;
  }
}
/* =========================================================
   FOOTER STYLES
   Matches your site:
   - soft neutral background
   - teal accent
   - clean spacing
   ========================================================= */

.site-footer {
  background-color: #2f2f2f;
  color: #eaeaea;
  padding: 70px 20px 0;
}

/* ---------------------------------------------------------
   CONTAINER
   --------------------------------------------------------- */

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* ---------------------------------------------------------
   COLUMN
   --------------------------------------------------------- */

.footer-col {
  display: flex;
  flex-direction: column;
}

/* ---------------------------------------------------------
   TITLES
   --------------------------------------------------------- */

.footer-title {
  font-size: 1.4rem;
  margin-bottom: 14px;
  color: #ffffff;
}

.footer-heading {
  font-size: 1.15rem;
  margin-bottom: 14px;
  color: #ffffff;
}

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

.footer-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #cfcfcf;
}

/* ---------------------------------------------------------
   LINKS
   --------------------------------------------------------- */

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  text-decoration: none;
  color: #cfcfcf;
  font-size: 0.95rem;
  transition: color 0.25s ease;
}

.footer-links a:hover {
  color: #3BABB0;
}

/* ---------------------------------------------------------
   CONTACT LIST
   --------------------------------------------------------- */

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

.footer-contact li {
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: #cfcfcf;
}

/* ---------------------------------------------------------
   BUTTON
   --------------------------------------------------------- */

.footer-button {
  display: inline-block;
  margin-top: 15px;
  padding: 2px 22px;
  background-color: #3BABB0;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  width: fit-content;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.footer-button:hover {
  background-color: #31979b;
  transform: translateY(-2px);
}

/* ---------------------------------------------------------
   BOTTOM BAR
   --------------------------------------------------------- */

.footer-bottom {
  margin-top: 50px;
  padding: 25px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}

.footer-bottom p {
  margin: 6px 0;
  font-size: 0.85rem;
  color: #bdbdbd;
}

.footer-disclaimer {
  font-size: 0.8rem;
  color: #9a9a9a;
  max-width: 800px;
  margin: 8px auto 0;
  line-height: 1.6;
}

/* ---------------------------------------------------------
   TABLET
   --------------------------------------------------------- */

@media (max-width: 991px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */

@media (max-width: 767px) {
  .site-footer {
    padding: 50px 16px 0;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-title,
  .footer-heading {
    font-size: 1.1rem;
  }

  .footer-text,
  .footer-links a,
  .footer-contact li {
    font-size: 0.9rem;
  }

  .footer-bottom {
    margin-top: 35px;
  }
}
/* =========================================================
   ARTICLE IMAGE STYLES
   ========================================================= */

/* Hero image at top */
.article-hero-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 30px;
  display: block;
}

/* Inline image inside article */
.article-inline-image {
  margin: 25px 0;
  text-align: center;
}

.article-inline-image img {
  max-width: 100%;
  width: 500px;
  border-radius: 10px;
  display: inline-block;
}

/* Optional: tighten article spacing */
.service-article h1 {
  margin-bottom: 18px;
}

.service-article h2 {
  margin-top: 30px;
  margin-bottom: 12px;
}
</style>