.pdf-download-section {
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 15px;
}

.pdf-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* Mobile */
@media (max-width: 768px) {
  .pdf-grid {
    grid-template-columns: 1fr;
  }
}

.pdf-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #f4e5e8;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 6px 20px rgba(10, 42, 112, 0.15);
}

.pdf-icon {
  width: 70px;
  height: 70px;
  background: #800000;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pdf-icon svg {
  width: 40px;
  height: 40px;
  fill: #fff;
}

.pdf-icon text {
  fill: #fff;
  font-family: Arial, sans-serif;
}

.pdf-name {
  font-size: 20px;
  color: #800000;
  font-weight: 700;
}

.pdf-desc {
  font-size: 15px;
  color: #333;
  margin: 6px 0 12px;
}

.pdf-btn {
  background: #800000;
  color: #fff;
  padding: 8px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}
