main {
  min-height: 70vh;
}

.download-section {
  width: 90%;
  display: flex;
  justify-content: space-around;
  gap: 20px;
  margin: 20px 0;
}

.download-card {
  background-color: #f8f9fa;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  width: 300px;
  height: 250px; /* Povećana visina kartica */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.download-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.download-card i {
  margin-bottom: 10px;
}

.download-card p {
  margin-bottom: 20px;
}

.download-card .btn {
  background-color: #39b766;
  border: none;
  color: white;
}

.download-card .btn:hover {
  background-color: #2e8b57;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .download-section {
    flex-direction: column;
    align-items: center;
  }

  .download-card {
    width: 90%;
    margin-bottom: 20px;
  }
}
