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

.pdf-card {
  display: flex;
  gap: 20px;
  background: #F4F6F8; /* Secondary */
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  padding: 20px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.pdf-thumbnail img {
  width: 260px;
  height: auto;
  border-radius: 10px;
  border: 3px solid #FF7F50; /* Accent */
}

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

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

.pdf-desc {
  color: #2E2E2E; /* Charcoal */
  font-size: 16px;
  margin-bottom: 20px;
}

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

.pdf-btn:hover {
  background: #FF7F50; /* Accent hover */
  transform: translateY(-3px);
}