/* Full-width section */
.downloads-section {
  width: 100%;
  padding: 60px 40px;
  background: #f9f9f9;
}

.downloads-heading {
  font-size: 4rem;
  text-align: center;
  margin-bottom: 50px;
  font-weight: 700;
}

/* Grid for cards */
.downloads-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

/* Card layout */
.download-card {
  display: flex;
  align-items: flex-start;
  flex: 1 1 calc(50% - 40px);
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.download-card:hover {
  transform: translateY(-5px);
}

/* Image */
.download-icon {
  width: 80px;
  height: 80px;
  margin-right: 25px;
  object-fit: contain;
  border-radius: 8px;
}

/* Text Content */
.download-text h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.download-text p {
  font-size: 1.8rem;
  color: #555;
  margin-bottom: 15px;
}

.download-btn {
  display: inline-block;
  padding: 10px 20px;
  background: #111;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
}

/* Responsive */
@media (max-width: 1024px) {
  .download-card {
    flex: 1 1 100%;
  }

  .downloads-heading {
    font-size: 3rem;
  }

  .download-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .download-icon {
    margin-bottom: 20px;
    margin-right: 0;
  }
}
