/* ===== DATASETS PAGE ===== */
/* If the datasets page structure mirrors products page, reuse the same styles */
.datasets-section {
  padding: 70px 24px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.datasets-section h1 {
  color: #0056d1;
  margin-bottom: 50px;
  font-size: 2.8em;
}

.dataset-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 36px;
}

.dataset-card {
  background: #ffffff;
  border: 1px solid #e0e6eb;
  border-radius: 14px;
  width: 320px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.dataset-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.10);
}

.dataset-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
}

.dataset-card-body {
  padding: 24px;
  text-align: left;
}

.dataset-card-body h3 {
  margin: 0 0 14px;
  font-size: 22px;
  color: #2e3a45;
}

.dataset-card-body p {
  font-size: 15px;
  color: #4a5766;
  line-height: 1.6;
}

.dataset-card-body a {
  display: inline-block;
  margin-top: 18px;
  background-color: #1ec8c8;
  color: white;
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.dataset-card-body a:hover {
  background-color: #17b4b4;
}

@media (max-width: 768px) {
  .dataset-grid {
    flex-direction: column;
    align-items: center;
  }
}
