@charset "UTF-8";
/* Reset CSS */
/* Box sizing rules */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

/* Ensure body takes full viewport height */
body {
  min-height: 100vh;
  line-height: 1.5;
  font-family: sans-serif;
  text-rendering: optimizeSpeed;
  -webkit-font-smoothing: antialiased;
    
  position: relative;
}

/* Remove default list styles */
ul, ol {
  list-style: none;
}

/* Remove default anchor styles */
a {
  text-decoration: none;
  color: inherit;
}

/* Remove default button styles */
button, input, textarea, select {
  font: inherit;
  border: none;
  background: none;
  outline: none;
}

/* Ensure buttons are clickable */
button {
  cursor: pointer;
}

/* Ensure images and iframes don't exceed their container */
img, iframe, video {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Normalize heading font-weight and size */
h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  font-size: inherit;
}

/* Reset table styles */
table {
  border-collapse: collapse;
  width: 100%;
}

/* Remove default quotes for blockquote and q */
blockquote, q {
  quotes: none;
}

/* Default focus styles for accessibility */
/*:focus {
  outline: 2px solid #005fcc;
  outline-offset: 2px;
}*/
