.cards {
  padding: 2rem 1rem;
}

.cards h1 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 1rem;
}

.cards .intro {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2rem auto;
  font-size: 1rem;
  color: #555;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.card {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
}

.card h2 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: #0c7510;
}

.card p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #333;
}

footer {
  text-align: center;
  padding: 2rem 1rem;
  color: #888;
  font-size: 0.9rem;
}
