
.page-hero {
  position: relative;
  height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  overflow: hidden;
}

.sourcing-hero {
  background: url('../images/prod1.jpg') center/cover no-repeat;
}

.page-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 165, 0, 0.3); 
  z-index: 1;
}

.page-hero h1 {
  font-size: 46px;
  margin-bottom: 15px;
  text-shadow: 2px 4px 8px rgba(0,0,0,0.5); 
}

.page-hero p {
  font-size: 18px;
  line-height: 1.7;
  text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.4);
}


.treatment-cards {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.treatment-cards .container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.treatment-card {
  background-color: #fff5e6; 
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.treatment-card img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.treatment-text {
  padding: 30px 20px;
  text-align: center;
}

.treatment-text h3 {
  font-size: 28px;
  color: rgb(255, 165, 0); 
  margin-bottom: 15px;
  text-shadow: 1px 1px 2px rgba(255, 165, 0, 0.1);
}

.treatment-text p {
  font-size: 18px;
  color: #333333;
  line-height: 1.6;
}

.treatment-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 165, 0, 0.2);
}


/* Responsive */
@media (max-width: 900px) {
  .page-hero { height: 45vh; }
  .treatment-card img { height: 300px; }
  .nav { background-color: var(--brand-orange); }
}