/* ========== HAIR TREATMENT PAGE STYLES ========== */

.service-section {
     background-color: #fbf8f7;
  padding: 60px 0;
  font-family: "Montserrat", sans-serif;
  color: #333;
}

.service-section .container {
  max-width: 90%;
  margin: 0 auto;
  padding: 0 20px;
}

/* Headings */
.service-section h1 {
  font-size: 2.2rem;
  color: #1b1b1b;
  text-align: center;
  margin-bottom: 25px;
  font-weight: 700;
  line-height: 1.3;
}

.service-section h2 {
  font-size: 1.7rem;
  color: #3a7c7c;
  margin-top: 50px;
  margin-bottom: 15px;
  font-weight: 600;
}

.service-section h3 {
  font-size: 1.3rem;
  color: #007b7f;
  margin-top: 35px;
  margin-bottom: 10px;
  font-weight: 600;
}

/* Paragraphs */
.service-section p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #555;
}

/* List Styles */
.service-section ul {
  list-style: none;
  margin: 20px 0;
  padding-left: 0;
}

.service-section ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  line-height: 1.6;
  color: #444;
}

.service-section ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #3a7c7c;
  font-weight: bold;
  font-size: 1.1rem;
}

/* Emphasis */
.service-section strong {
  color: #007b7f;
}

/* Call-to-action emphasis */
.service-section p strong:last-of-type {
  display: inline-block;
  margin-top: 10px;
  font-size: 1.05rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .service-section {
    padding: 60px 20px;
  }

  .service-section h1 {
    font-size: 1.8rem;
  }

  .service-section h2 {
    font-size: 1.4rem;
  }

  .service-section h3 {
    font-size: 1.1rem;
  }

  .service-section p {
    font-size: 0.95rem;
  }
}

/* Optional: Subtle divider lines between treatment types */
.service-section h3 + p {
  border-left: 3px solid #cce3e3;
  padding-left: 15px;
  background: rgba(245, 249, 249, 0.7);
  border-radius: 6px;
}

/* Optional: Smooth fade-in effect */
.service-section .container {
  animation: fadeIn 0.8s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ========== IMAGE + CONTENT SECTIONS ========== */

.treatment {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 50px 0;
  background: #fdfefe;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.treatment:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

/* .treatment img {
  width: 45%;
  border-radius: 0;
  object-fit: cover;
  height: 300px;
} */

.treatment-content {
  /* width: 55%; */
  padding: 25px 30px;
}

.treatment-content h3 {
  color: #007b7f;
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.treatment-content p {
  color: #555;
  /* line-height: 1.7; */
}

/* Alternate layout (for variety) */
/* .treatment:nth-child(even) {
  flex-direction: row-reverse;
  background: #f9fdfd;
} */

/* Responsive Design */
@media (max-width: 900px) {
  .treatment {
    flex-direction: column;
    text-align: center;
  }

  .treatment img {
    width: 100%;
    height: 250px;
  }

  .treatment-content {
    width: 100%;
    padding: 20px;
  }
}
