/* PDF SECTION */
.pdf-download-section {
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 15px;
  text-align: center;
}

.pdf-card {
  display: flex;
  gap: 20px;
  background: #eef2ff; /* light theme tone */
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(10, 42, 112, 0.15);
  padding: 20px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.pdf-thumbnail img {
  width: 260px;
  height: auto;
  border-radius: 10px;
  border: 3px solid #0a2a70;
}

.pdf-content {
  max-width: 500px;
  text-align: left;
}

.pdf-name {
  font-size: 24px;
  color: #0a2a70;
  font-weight: 700;
  margin-bottom: 10px;
}

.pdf-desc {
  color: #333;
  font-size: 16px;
  margin-bottom: 20px;
}

.pdf-btn {
  display: inline-block;
  background: #0a2a70;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s;
}

.pdf-btn:hover {
  background: #1e57d6; /* accent highlight */
  transform: translateY(-3px);
}
