/* General body styling */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f9fafb;
  margin: 0;
  padding: 0;
}

/* Smooth hover animations */
a {
  transition: all 0.3s ease;
}

/* Hero section extra polish */
section h2 {
  letter-spacing: -1px;
}

/* Card hover effect */
section a {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
section a:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}