/* Soulcare Page */
.bodycare-page,
.soulcare-page {
  padding: 60px 20px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  margin: 40px auto;
  max-width: 1200px;
}

/* Page Title & Intro */
.container h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #333;
}

.soulcare-page .intro {
  text-align: center;
  font-size: 1.15rem;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #333;
}

/* Service Section - Full Width Alternating */
.service-block {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 80px;
  align-items: center;
  gap: 30px;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease-in-out;
}

.service-block.visible {
  opacity: 1;
  transform: translateY(0);
}

.service-block:nth-child(even) {
  flex-direction: row-reverse;
}

.service-block img {
  width: 100%;
  max-width: 600px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-block:hover img {
  transform: scale(1.03);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.service-text {
  flex: 1;
  min-width: 300px;
}

.service-text h3 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #d17ba3;
}

.service-text h4 {
  margin-top: 20px;
  margin-bottom: 10px;
  color: #555;
}

.service-text p {
  margin-bottom: 15px;
  line-height: 1.7;
  color: #444;
}

.service-text ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-text ul li {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  color: #444;
}

.service-text ul li::before {
  content: "\f00c"; /* Font Awesome check icon */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 10px;
  color: #d17ba3;
}

.btn-small {
  display: inline-block;
  padding: 10px 20px;
  background: #d17ba3;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
  margin-top: 10px;
}

.btn-small:hover {
  background: #a0527d;
}

.content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
  margin-left: 15px;
  margin-bottom: 15px;
}

.collapsible {
  cursor: pointer;
  position: relative;
  padding-right: 20px;
}

.collapsible::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 0;
  top: 0;
}

.collapsible.active::after {
  content: "\f077";
}

/* Responsive */
@media (max-width: 992px) {
  .service-block {
    flex-direction: column !important;
    text-align: center;
  }

  .service-block img {
    margin: 0 auto;
  }

  .service-text {
    min-width: unset;
  }
}

@media (max-width: 576px) {
  .container h2 {
    font-size: 2rem;
  }

  .soulcare-page .intro {
    font-size: 1rem;
  }

  .service-text h3 {
    font-size: 1.5rem;
  }
}
