/* css/index.css */
body {
  background-color: #f4f7fa;
  font-family: 'Segoe UI', sans-serif;
}

.card {
  border: none;
  border-radius: 12px;
  transition: transform 0.2s;
}

.card:hover {
  transform: scale(1.03);
}

.card-title {
  font-size: 1.25rem;
}

h2 {
  font-weight: 700;
}

.btn-lg {
  font-weight: 600;
}
