/* =========================================
   PAGE STRUCTURE
   ========================================= */

body {
  margin: 0;
  padding: 0;
  background-color: #f5dcd4;
  color: #2b2b2b;
  font-family: "Lato", system-ui, sans-serif;
}

.service-out-about {
  padding: 1.5rem 0 4rem;
}

.service-out-about section {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* =========================================
   HERO
   ========================================= */

.service-hero {
  max-width: 960px;
  margin: 0 auto 2rem;
  padding: 0 1.5rem;
  text-align: center;
}

.hero-figure {
  position: relative;
  margin: 0;
  background-color: #f5dcd4;
  border-radius: 24px;
  overflow: hidden;   /* keeps rounded corners */
  /* no fixed aspect-ratio: use the image’s natural ratio */
}

.hero-image {
  display: block;
  width: 100%;
  height: auto;       /* let height grow naturally */
  object-fit: cover;  /* harmless here, no forced crop */
}


/* TOP-LEFT CAPTION */
.service-heading {
  font-family: "Comfortaa", system-ui, sans-serif;
  font-size: clamp(2.2rem, 3.6vw, 3rem);
  font-weight: 700;
  color: #2b2b2b;
  text-shadow: 0 3px 10px rgba(255, 255, 255, 0.85);
}

/* =========================================
   INTRO / OUTRO
   ========================================= */

.service-intro,
.service-outro {
  text-align: center;
}

.service-intro h1 {
  font-family: "Comfortaa", system-ui, sans-serif;
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  margin-bottom: 1rem;
}

.service-intro p,
.service-outro p {
  margin: 0 0 0.8rem;
  line-height: 1.6;
  font-size: 1rem;
}

/* =========================================
   BENEFITS PANEL
   ========================================= */

.benefits-panel .panel-header h2 {
  font-family: "Comfortaa", system-ui, sans-serif;
  font-size: clamp(1.4rem, 2.1vw, 1.8rem);
  margin-bottom: 1.3rem;
  text-align: center;
}

.benefits-panel .panel-body {
  background-color: #e7d9f3;
  border-radius: 24px;
  padding: 2rem 2.4rem;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  text-align: center; /* CENTERS BENEFITS */
}

.benefits-stack {
  list-style: none;
  margin: 0 auto;         /* CENTER THE COLUMN */
  padding: 0;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.benefit-item {
  background-color: #d0b7e4;
  border-radius: 18px;
  padding: 0.9rem 1.1rem;
  font-size: 0.98rem;
  line-height: 1.5;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* =========================================
   SERVICE NAVIGATION (same as others)
   ========================================= */

.service-nav {
  margin-top: 2.6rem;
}

.service-nav-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.service-nav-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0.65rem 1.5rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease,
    box-shadow 0.15s ease,
    background-color 0.15s ease;
  box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}

.service-nav-btn--primary {
  background: linear-gradient(135deg, #bfd9e3, #a7c7d8);
  color: #28333a;
}

.service-nav-btn--secondary {
  background: linear-gradient(135deg, #d5a6bd, #c48dad);
  color: #2b2b2b;
}

.service-nav-btn--primary:hover,
.service-nav-btn--secondary:hover {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 6px 14px rgba(0,0,0,0.22);
}

/* MOBILE TWEAKS */
@media (max-width: 600px) {
  .service-out-about section {
    padding: 0 1.1rem;
  }
}
