@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700;900&display=swap');

* {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Print styles */
@media print {
  header {
    position: static !important;
  }
  
  .step-section {
    page-break-inside: avoid;
  }
  
  button {
    display: none;
  }
}

/* Animations */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.step-section {
  animation: slideIn 0.5s ease-out;
}

/* Hover effects */
.step-section:hover {
  transform: translateY(-2px);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #F5F5DC;
}

::-webkit-scrollbar-thumb {
  background: #0051BA;
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background: #003d8f;
}