.card-section {
  background: #fafafa;
  padding: 40px 20px;
}

.card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: auto;
}

.card-box {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  padding: 24px;
  line-height: 1.6;
}

.card-box h2 {
  color: #d63384;
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.card-box p {
  margin-bottom: 12px;
  color: #333;
}

.card-box ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.card-box ul li {
  list-style-type: disc;
  margin-bottom: 8px;
}

.btn-link {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 16px;
  background-color: #d63384;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-link:hover {
  background-color: #840135;
}
