/* ========== SKIN TREATMENT PAGE STYLES ========== */

.service-section {
    
     background-color: #fbf8f7;
  padding: 80px 0;
  font-family: "Montserrat", sans-serif;
  color: #333;
}

.service-section .container {
  max-width: 90%;
  margin: 0 auto;
  padding: 0 20px;
}

.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;
}

.service-section p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #555;
}

.service-section ul {
  list-style: none;
  margin: 20px 0;
  padding-left: 0;
}

.service-section ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  color: #444;
}

.service-section ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: #3a7c7c;
  font-weight: bold;
  font-size: 1.1rem;
}

/* ========== IMAGE 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%;
  height: 300px;
  object-fit: cover;
} */

.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;
  }
}

/* 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); }
}
