.updated-healing-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 70px 20px;
  background: #f7f7f7;
}

/* Main Box */
.updated-healing-box {
  position: relative;
  height: 200px;
  border-radius: 22px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.updated-healing-box:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 65px rgba(0, 0, 0, 0.28);
}

/* Overlay with perfect center alignment */
.updated-healing-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0, 0, 0, 0.55),
    rgba(0, 0, 0, 0.65)
  );
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 25px;
}

/* Heading */
.updated-healing-overlay h3 {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.3;
}

/* Paragraph */
.updated-healing-overlay p {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  color: #f1f1f1;
  max-width: 280px;
  margin-bottom: 22px;
  line-height: 1.7;
}

/* Button */
.updated-healing-btn {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: #ffffff;
  padding: 12px 30px;
  border-radius: 30px;
  background: linear-gradient(135deg, #ff3b3b, #ff6f61);
  box-shadow: 0 10px 25px rgba(255, 79, 79, 0.5);
  transition: all 0.3s ease;
}

.updated-healing-btn:hover {
  background: linear-gradient(135deg, #ff6f61, #ff3b3b);
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(255, 79, 79, 0.7);
}

/* Responsive */
@media (max-width: 768px) {
  .updated-healing-box {
    height: 340px;
  }

  .updated-healing-overlay h3 {
    font-size: 21px;
  }

  .updated-healing-overlay p {
    font-size: 14px;
  }
}
