
.hep-hero {
  background: linear-gradient(135deg, #fffde7, #fff);
  padding: 40px;
  border-radius: var(--radius);
  border-left: 5px solid #fbc02d;
  margin-bottom: 50px;
  box-shadow: var(--shadow-md);
}
.hep-hero h2 { color: #f9a825; margin-top: 0; }
.hep-hero p { font-size: 1.1rem; color: #444; line-height: 1.6; }

.info-section {
  background: #fff;
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  margin-bottom: 40px;
  border: 1px solid rgba(0,0,0,0.05);
}

.danger-list {
  margin-top: 15px;
  padding-left: 20px;
  color: #d32f2f;
  font-weight: 500;
}

.transmission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}
.trans-card {
  background: #fafafa;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #eee;
  display: flex;
  gap: 15px;
  align-items: start;
}
.trans-icon { font-size: 1.5rem; }

.treatment-box {
  background: #e0f2f1;
  border: 1px solid #80cbc4;
  border-radius: var(--radius);
  padding: 35px;
  margin-bottom: 40px;
}
.treatment-box h3 { color: #00695c; margin-top: 0; }
.treatment-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}
.t-feat {
  background: #fff;
  padding: 10px 15px;
  border-radius: 20px;
  color: #00796b;
  font-weight: 600;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.process-list {
  counter-reset: proc-counter;
  list-style: none;
  padding: 0;
}
.process-item {
  position: relative;
  padding-left: 60px;
  margin-bottom: 25px;
}
.process-item::before {
  counter-increment: proc-counter;
  content: counter(proc-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  background: var(--accent1);
  color: #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  font-weight: bold;
  font-size: 1.2rem;
}
.process-item h4 { margin: 0 0 5px; font-size: 1.15rem; color: #333; }
.process-item p { margin: 0; color: #555; }

.hep-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}
.hep-img {
  height: 400px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.hep-img img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 768px) {
  .hep-images { grid-template-columns: 1fr; }
}
