/* Custom styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Smooth transitions */
a,
button {
  transition: all 0.3s ease;
}

/* Mobile menu styles (if needed) */
@media (max-width: 768px) {
  nav {
    padding: 1rem 0.5rem;
  }
}
