/* Download Button Custom Style */
.download-btn-custom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #FFD600;
  color: #222831;
  font-weight: 600;
  font-size: 16px;
  padding: 12px 28px;
  border-radius: 6px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.10);
  text-decoration: none;
  transition: all 0.2s cubic-bezier(.4, 0, .2, 1);
  border: none;
  outline: none;
  cursor: pointer;
  position: relative;
  margin: 0 auto;
  width: max-content;
  min-width: 300px;
  text-transform: uppercase;
}
.download-btn-custom i {
  font-size: 18px;
  margin-right: 6px;
}
.download-btn-custom:hover {
  background: #009688;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  transform: translateY(-2px) scale(1.04);
}
