:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-89eebce *//* =====================================================
   GLOBAL TREATMENT SELECTOR SYSTEM (FINAL)
   Applies to: Back Pain, Neck Pain, Shoulder, Knee, etc.
   ===================================================== */

/* ---------- PAGE WRAPPER ---------- */
.treatment-simple {
  background: #f3f6ff;
  padding-bottom: 64px;
}

/* ---------- CONTAINER SYSTEM ---------- */
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.container.narrow {
  max-width: 1100px;
}

/* ---------- HERO ---------- */
.treatment-hero-simple {
  margin: 40px auto 28px;
}

.treatment-hero-simple .container {
  background: linear-gradient(135deg, #2f4fa1, #2fb7a3);
  border-radius: 18px;
  padding: 44px 24px;
  text-align: center;
}

.treatment-hero-simple h1 {
  color: #fff;
  font-size: 32px;
  margin-bottom: 10px;
}

.treatment-hero-simple p {
  color: #eaf1ff;
  font-size: 16px;
  max-width: 640px;
  margin: 0 auto;
}

/* ---------- BREADCRUMB ---------- */
.breadcrumb-wrap {
  margin: 18px auto 28px;
}

.breadcrumb {
  font-size: 14px;
  color: #555;
}

.breadcrumb a {
  color: #2f4fa1;
  text-decoration: none;
}

/* ---------- INFO BOX ---------- */
.info-box {
  background: #fff;
  border-radius: 14px;
  padding: 28px;
  margin-bottom: 40px;
}

.info-box h2 {
  font-size: 24px;
  margin-bottom: 14px;
  color: #2f4fa1;
}

.info-box ul {
  padding-left: 18px;
}

.info-box li {
  margin-bottom: 8px;
  color: #111;
}

/* ---------- SECTION TITLE ---------- */
.section-title {
  font-size: 26px;
  margin-bottom: 22px;
  color: #2f4fa1;
}

/* ---------- CARD GRID ---------- */
.treatment-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* ---------- CARD ---------- */
.treatment-card {
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  text-decoration: none;
  display: flex;
  gap: 14px;
  align-items: center;
  border: 1px solid #e5ebff;
  transition: all 0.25s ease;
}

.treatment-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}

/* ---------- CARD IMAGE ---------- */
.treatment-card img {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}

/* ---------- CARD TEXT ---------- */
.treatment-card h3 {
  font-size: 18px;
  margin-bottom: 6px;
  color: #111;
}

.treatment-card p {
  font-size: 14px;
  color: #000; /* force black */
  line-height: 1.5;
}

/* ---------- SUBTLE DIVIDER ---------- */
.treatment-card::after {
  content: "";
  position: absolute;
  inset: auto 16px 0 16px;
  height: 1px;
  background: linear-gradient(to right, transparent, #e5ebff, transparent);
}

/* ---------- MOBILE ---------- */
@media (max-width: 991px) {
  .treatment-card-grid {
    grid-template-columns: 1fr;
  }

  .treatment-card {
    flex-direction: column;
    text-align: center;
  }

  .treatment-card img {
    width: 100%;
    height: 160px;
  }

  .treatment-hero-simple h1 {
    font-size: 26px;
  }

  .section-title {
    font-size: 22px;
  }
}

/* =========================================
   TREATMENT CTA SECTION
   ========================================= */

.treatment-cta {
  margin-top: 56px;
  background: linear-gradient(135deg, #2fb7a3, #2f4fa1);
  border-radius: 18px;
  padding: 40px 28px;
  text-align: center;
  color: #fff;
}

.treatment-cta h2 {
  font-size: 26px;
  margin-bottom: 12px;
  color: #fff;
}

.treatment-cta p {
  font-size: 16px;
  max-width: 620px;
  margin: 0 auto 22px;
  color: #eef5ff;
}

/* CTA Button */
.btn-primary {
  display: inline-block;
  background: #ffffff;
  color: #2f4fa1;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-primary:hover {
  background: #f2f6ff;
  transform: translateY(-2px);
}

/* Mobile */
@media (max-width: 767px) {
  .treatment-cta {
    padding: 32px 20px;
  }

  .treatment-cta h2 {
    font-size: 22px;
  }
}/* End custom CSS */