/* Custom styles beyond Tailwind */
@layer components {
  .service-card {
    @apply bg-white rounded-lg shadow-sm hover:shadow-lg transition-shadow p-6 pt-10;
  }
  
  .nav-link {
    @apply px-3 py-2 rounded-md text-gray-600 hover:bg-blue-50 hover:text-blue-600;
  }
  
  .icon {
    @apply w-6 h-6 text-blue-600;
  }
}