

/* CARD */
.pharma-single-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* HEADER */
.pharma-single-header {
  background: linear-gradient(135deg, var(--primary-blue), #1c2480);
  padding: 25px;
  text-align: center;
}

.pharma-single-header h1 {
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  margin: 0;
  letter-spacing: 1px;
}

/* CONTENT */
.pharma-single-content {
  padding: 30px;
}

.pharma-single-content p {
  color: #444;
  line-height: 1.9;
  font-size: 16px;
  text-align: justify;
}

/* DECORATIVE ACCENT LINE */
.pharma-single-content::before {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: var(--accent-red);
  margin-bottom: 20px;
  border-radius: 2px;
}

/* HOVER EFFECT */
.pharma-single-card:hover {
  transform: translateY(-5px);
  transition: 0.3s ease;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .pharma-single-content {
    padding: 20px;
  }

  .pharma-single-header h1 {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .pharma-single-header h1 {
    font-size: 22px;
  }
}