 
.custom-container {
  padding: 20px;
  border-radius: 12px;
  margin: 15px 0;
}

.pharma-card {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  background: #fff;
  max-width: 400px;
}

.pharma-image img {
  width: 100%;
  height: auto;
  display: block;
}

.pharma-content {
  padding: 20px;
}

.pharma-content h3 {
  margin-top: 0;
  font-size: 1.25rem;
  font-weight: bold;
}

.pharma-text {
  font-size: 0.95rem;
  margin: 10px 0 15px;
}

.pharma-button {
  display: inline-block;
  margin-bottom: 15px;
  padding: 8px 16px;
  background: #0056b3;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.3s;
}

.pharma-button:hover {
  background: #003d80;
}

