header {
  padding: 80px 20px 60px;
}

header h1 {
  font-size: 56px;
  margin-bottom: 12px;
}

header p {
  font-size: 20px;
  margin-bottom: 0;
}

.cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.card-link {
  text-decoration: none;
  color: inherit;
}

.card {
  background: #1e293b;
  padding: 30px 20px;
  border-radius: 14px;
  width: 250px;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}

.card h3 {
  margin-bottom: 12px;
  font-size: 30px;
}

.card p {
  font-size: 16px;
  margin: 0;
}

@media (max-width: 768px) {
  header {
    padding: 60px 20px 40px;
  }

  header h1 {
    font-size: 40px;
  }

  header p {
    font-size: 18px;
  }

  .card {
    width: 100%;
    max-width: 320px;
  }
}