/* style.css */
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f9f9f9;
  color: #333;
}

a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  color: #0d6efd;
}

.btn-outline-primary {
  border-radius: 20px;
}

.card {
  border: none;
  transition: transform 0.2s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

input[type="text"], input[type="email"], textarea {
  border-radius: 10px !important;
}

footer {
  background: #222;
  color: #aaa;
  padding: 2rem 0;
}
