/* Basic CSS reset and styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
}

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