body {
  font-family: "Inter", sans-serif;
  background-color: #f7f7f7;
  color: #111;
}

h2 {
  font-family: "Playfair Display", serif;
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 600;
  font-size: 2.5rem;
  color: #111;
}

.card {
  border-radius: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  background-color: #fff;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
}

.card-title {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.card-text {
  font-size: 0.9rem;
  color: #444;
}

.btn-dark {
  background-color: #111;
  border: none;
  transition: background-color 0.3s ease;
}

.btn-dark:hover {
  background-color: #333;
}

@media (max-width: 768px) {
  .card-img-top {
    height: 220px;
  }
}
