

/* HERO */
.pharma-hero {
  text-align: center;
  margin-bottom: 30px;
}

.pharma-hero h1 {
  font-size: 32px;
  font-weight: 800;
  color: var(--primary-blue);
  position: relative;
}

.pharma-hero h1::after {
  content: "";
  width: 70px;
  height: 4px;
  background: var(--accent-red);
  display: block;
  margin: 10px auto 0;
}

/* INTRO */
.pharma-intro {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 30px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.pharma-intro p {
  line-height: 1.8;
  color: #444;
}

/* GRID */
.pharma-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

/* CARD */
.pharma-card {
  background: #fff;
  padding: 22px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  transition: 0.3s;
}

.pharma-card:hover {
  transform: translateY(-5px);
}

/* WIDE CARD */
.pharma-card.wide {
  grid-column: span 2;
}

/* TITLE */
.pharma-card h3 {
  color: var(--primary-blue);
  margin-bottom: 10px;
  position: relative;
}

.pharma-card h3::after {
  content: "";
  width: 40px;
  height: 3px;
  background: var(--accent-red);
  position: absolute;
  bottom: -5px;
  left: 0;
}

/* LIST */
.pharma-card ul {
  padding-left: 20px;
}

.pharma-card li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.pharma-card li::marker {
  color: var(--accent-red);
}

/* TEXT */
.pharma-card p {
  color: #444;
  line-height: 1.7;
}

/* FINAL HIGHLIGHT */
.pharma-highlight {
  margin-top: 40px;
  padding: 30px;
  background: linear-gradient(135deg, var(--primary-blue), #1d2a7a);
  color: #fff;
  border-radius: 14px;
}

.pharma-highlight h2 {
  margin-bottom: 15px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .pharma-grid {
    grid-template-columns: 1fr;
  }

  .pharma-card.wide {
    grid-column: span 1;
  }
}

@media (max-width: 576px) {
  .pharma-hero h1 {
    font-size: 26px;
  }
}