/* CSS Reset - Common Practice to Remove Browser Default Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  line-height: 1.5;
  font-family: sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

button, input, select, textarea {
  font: inherit;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
    padding-left:0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Additional reset to handle specific elements */
blockquote, q {
  quotes: none;
}

fieldset {
  border: none;
}

/* Set consistent border and appearance for form elements */
button, input, select, textarea {
  border: none;
  appearance: none;
}

/* Set base styles for root elements */
body {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}  

/* Ensure iframe content fits the container */
iframe {
  border: 0;
}

/* Ensure consistent handling of media elements */
audio, video {
  display: inline-block;
} 

/* Normalize scroll behavior */
html {
  scroll-behavior: smooth;
}
