/* Base styles */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  line-height: 1.6;
}

/* Feather icons adjustment */
.feather {
  width: 1em;
  height: 1em;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .md\:grid-cols-3 {
    grid-template-columns: 1fr;
  }
  
  .md\:text-3xl {
    font-size: 1.5rem;
  }
  
  .md\:text-2xl {
    font-size: 1.25rem;
  }
}

/* Sticky mobile bar spacing */
body {
  padding-bottom: 60px;
}

/* Focus states for accessibility */
a:focus, button:focus {
  outline: 2px solid #4f46e5;
  outline-offset: 2px;
}