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

/* HEADER */
.pharma-header {
  background: linear-gradient(135deg, var(--primary-blue), #1c2480);
  color: #fff;
  padding: 20px 30px;
}

.pharma-header.second {
  margin-top: 30px;
  border-radius: 10px;
}

.pharma-header h1 {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
}

/* BODY */
.pharma-body {
  padding: 30px;
}

/* TEXT */
.pharma-body p {
  line-height: 1.8;
  color: #444;
  margin-bottom: 15px;
}

/* LIST BLOCK */
.pharma-block {
  background: var(--bg-light);
  padding: 20px;
  border-radius: 10px;
  margin: 20px 0;
}

.pharma-block.small {
  background: #f9f9f9;
}

/* LIST */
.pharma-block ul,
.pharma-section-box ul {
  padding-left: 20px;
}

.pharma-block li,
.pharma-section-box li {
  margin-bottom: 10px;
  line-height: 1.7;
}

.pharma-block li::marker,
.pharma-section-box li::marker {
  color: var(--accent-red);
  font-weight: bold;
}

/* SECTION BOX */
.pharma-section-box {
  margin-top: 30px;
  padding: 20px;
  border-left: 4px solid var(--accent-red);
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.pharma-section-box h2 {
  color: var(--primary-blue);
  margin-bottom: 10px;
  font-size: 22px;
}

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

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

  .pharma-section-box h2 {
    font-size: 20px;
  }
}

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