/* ---------------- DOWNLOAD PAGE ---------------- */

.download-card {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 24px;
  background: #fff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  align-items: center;
}

.download-desc h1 {
  color: var(--orange);
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.download-desc p {
  font-size: 16px;
  line-height: 1.8;
}

.download-image img {
  max-height: 180px;
  width: auto;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.download-image img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 28px rgba(0,0,0,0.18);
}

.btn-download {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  padding: 14px 26px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn-download:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}

/* Mobile */
@media (max-width: 768px) {
  .download-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
