/* General Layout */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f8f9fa;
  color: #333;
  margin: 0;
  padding: 0;
}

/* Wellness Section */
.therapy-section {
  padding: 4rem 2rem;
  background-color: #ffffff;
}

/* Headings */
.therapy-section h1,
.therapy-section h2 {
  font-weight: 700;
  color: #212529;
}

/* Paragraphs */
.therapy-section p {
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Image Styling */
.therapy-img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.therapy-img:hover {
  transform: scale(1.02);
}

/* List Styling */
.therapy-section ul {
  padding-left: 0;
  margin-top: 1rem;
}

.therapy-section ul li {
  list-style: none;
  background: #fff;
  border-left: 4px solid #28a745;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  font-size: 1.05rem;
}

.therapy-section ul li::before {
  content: "🌿 ";
  margin-right: 0.5rem;
  color: #28a745;
  font-weight: bold;
}

/* Responsive Layout */
@media (max-width: 992px) {
  .therapy-section .row {
    flex-direction: column-reverse;
  }

  .therapy-img {
    margin-bottom: 2rem;
    max-height: 300px;
  }

  .therapy-section h1,
  .therapy-section h2 {
    text-align: center;
  }

  .therapy-section ul li {
    font-size: 1rem;
  }
}
