:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-b5d3895 *//* =========================================
   TREATMENT INDEX (MASTER PAGES)
   Arthritis / Back Pain / Neck Pain etc.
   ========================================= */

.treatment-index {
  background: #f3f6ff;
  padding-bottom: 64px;
}

/* ---------- HERO ---------- */
.treatment-index .treatment-hero-simple {
  margin: 40px auto 32px;
}

.treatment-index .treatment-hero-simple .container {
  background: linear-gradient(135deg, #2f4fa1, #2fb7a3);
  border-radius: 18px;
  padding: 28px 24px;
  text-align: center;
}

.treatment-index .treatment-hero-simple h1 {
  color: #ffffff;
  font-size: 28px;
  margin-bottom: 6px;
}

.treatment-index .treatment-hero-simple p {
  color: #eef4ff;
  font-size: 15px;
  max-width: 720px;
  margin: 0 auto;
}

/* ---------- INFO BOX ---------- */
.treatment-index .info-box {
  background: #ffffff;
  border-radius: 14px;
  padding: 26px;
  margin-bottom: 32px;
}

.treatment-index .info-box h2 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #2f4fa1;
}

.treatment-index .info-box p {
  font-size: 15px;
  line-height: 1.6;
  color: #000;
}

/* ---------- SECTION TITLE ---------- */
.section-title-center {
  text-align: center;
  font-size: 24px;
  margin: 32px 0 24px;
  color: #2f4fa1;
}

/* ---------- CARD GRID ---------- */
.condition-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* ---------- CARD ---------- */
.condition-card {
  display: flex;
  gap: 16px;
  background: #ffffff;
  border-radius: 14px;
  padding: 16px;
  text-decoration: none;
  color: inherit;
  border: 1px solid #e4ebff;
  transition: all 0.25s ease;
}

.condition-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

/* ---------- THUMB ---------- */
.condition-thumb {
  width: 96px;
  flex-shrink: 0;
}

.condition-thumb img {
  width: 100%;
  height: 96px;
  object-fit: cover;
  border-radius: 10px;
}

/* ---------- CONTENT ---------- */
.condition-content h3 {
  font-size: 18px;
  margin-bottom: 6px;
  color: #2f4fa1;
}

.condition-content p {
  font-size: 14px;
  line-height: 1.5;
  color: #000;
}

/* ---------- CTA ---------- */
.treatment-index .treatment-cta {
  margin-top: 48px;
  background: linear-gradient(135deg, #2fb7a3, #2f4fa1);
  border-radius: 18px;
  padding: 36px 24px;
  text-align: center;
  color: #ffffff;
}

.treatment-index .treatment-cta h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #ffffff;
}

.treatment-index .treatment-cta p {
  font-size: 15px;
  max-width: 640px;
  margin: 0 auto 20px;
  color: #eef5ff;
}

.treatment-index .btn-primary {
  display: inline-block;
  background: #ffffff;
  color: #2f4fa1;
  padding: 12px 28px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

.treatment-index .btn-primary:hover {
  background: #f2f6ff;
  transform: translateY(-2px);
}

/* ---------- MOBILE ---------- */
@media (max-width: 992px) {
  .condition-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  .treatment-index .treatment-hero-simple h1 {
    font-size: 24px;
  }

  .condition-card-grid {
    grid-template-columns: 1fr;
  }

  .condition-card {
    flex-direction: column;
    text-align: center;
  }

  .condition-thumb {
    width: 100%;
  }

  .condition-thumb img {
    height: 160px;
  }
}/* End custom CSS */