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

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

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

::-webkit-scrollbar-thumb {
  background: #d6d3d1;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #a8a29e;
}

/* Base styles cleanup */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* FAQ Animation Helper */
.faq-answer {
  transition: max-height 0.3s ease-in-out, padding-bottom 0.3s ease-in-out;
}
