:root {
  --brand-orange: rgb(255, 165, 0);
  --light-orange: #fff5e6;
}

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

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

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

.page-hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 20px;
}

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

.page-hero p {
  font-size: 18px;
  line-height: 1.7;
}

.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: var(--light-orange);
  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: var(--brand-orange);
  margin-bottom: 15px;
}

.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);
}


@media (max-width: 900px) {
  .page-hero { height: 45vh; }
  .page-hero h1 { font-size: 34px; }
  .treatment-card img { height: 300px; }
}