/* Normalize box model and set default styles */
/* Box sizing rules */
html {
    box-sizing: border-box;
  }
  *, *::before, *::after {
    box-sizing: inherit;
  }
  /* Root font size */
  body{
    font-size: 16px;
  }
  /* Remove margin, padding, and border on all elements */
  body, h1, h2, h3, h4, h5, h6, p, blockquote, pre, dl, dd, ol, ul, figure, hr, fieldset, legend, button, input, textarea, th, td {
    margin: 0;
    padding: 0;
    border: 0;
  }
  /* Remove default list styles (bullets/numbers) */
  ul, ol {
    list-style: none;
  }
  /* Typography reset */
  body, button, input, optgroup, select, textarea {
    font-family: sans-serif;
   /* Set your preferred font stack here */
  }
  h1, h2, h3, h4, h5, h6 {
    font-size: 1em;
   /* Adjust as needed */
    font-weight: bold;
   /* Adjust as needed */
  }
  p {
    line-height: 1.5;
   /* Adjust as needed */
  }
  a {
    text-decoration: none;
  }
  /* Form elements reset */
  button, input, optgroup, select, textarea {
    margin: 0;
   /* Avoid top margin */
    padding: 0;
   /* Reset padding */
    background-color: transparent;
   /* Reset background color */
    border-radius: 0;
   /* Reset border-radius */
    color: inherit;
   /* Inherit text color */
    font-size: 100%;
   /* Avoid text size inconsistencies */
    line-height: 1.15;
   /* Adjust as needed */
    outline: none;
   /* Remove default outline style */
  }
  button, input {
   /* Reset specific form element styles */
    overflow: visible;
   /* Remove unwanted padding in IE */
  }
  select {
   /* Normalize select element */
    text-transform: none;
  }
  /* Clear floating elements */
  .clearfix::after {
    content: "";
    display: table;
    clear: both;
  }
  /* Normalize table styles */
  table {
    border-collapse: collapse;
    border-spacing: 0;
  }
  /* Normalize blockquote styles */
  blockquote {
    margin: 0 0 1em;
    padding: 0 1em;
    border-left: 2px solid #ccc;
  }
  /* Reset hidden attribute styles */
  [hidden] {
    display: none;
  }
  /* Improve accessibility for hidden content */
  .visually-hidden {
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    white-space: nowrap;
  }