.elementor-3983 .elementor-element.elementor-element-1f8077f{--display:flex;}/* Start custom CSS for html, class: .elementor-element-022c811 *//* Section Styling */
.treatment-section {
  padding: 60px 20px;
  background-color: #fff;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.subheading {
  color: #f1876e;
  font-weight: 500;
}

.main-heading {
  font-size: 36px;
  color: #111;
  margin-top: 10px;
}

/* Treatment Cards - using CSS Grid */
.treatment-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: auto;
  padding: 0 10px;
}

.treatment-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
  padding: 30px;
  text-align: left;

  display: flex; /* new */
  flex-direction: column; /* new */
}

.treatment-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 15px;
}

.treatment-title {
  font-size: 20px;
  color: #111;
  margin-bottom: 15px;
}

.treatment-description {
  color: #666;
  font-size: 14px;
  margin-bottom: 20px;
}

/* "Read More" button aligned to bottom */
.read-more {
  color: #00703c;
  font-weight: bold;
  font-size: 14px;
  text-decoration: none;
  margin-top: auto; /* pushes it to the bottom */
  display: inline-block;
  transition: transform 0.3s ease;
}

.read-more:hover {
  transform: translateY(-3px);
}

.read-more:active {
  transform: translateY(-1px);
}/* End custom CSS */