.downloads-wrapper {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.download-section {
  background-color: #fef9c3; 
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  color: #1e293b;
  transition: transform 0.2s ease;
}

.download-section h3 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: #1e1b4b;
}

.download-section strong {
  display: block;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #1e1b4b;
}

.download-files {
  list-style: none;
  padding: 0;
  margin: 0;
}

.download-files li {
  margin-bottom: 0.75rem;
}

.download-files a {
  color: #1e1b4b;
  font-weight: 500;
  transition: color 0.2s ease;
}

.download-files a:hover {
  color: #1e40af;
}

