/* Add your CSS reset code here */
/* For example, using a basic reset: */

/* Box sizing reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Typography defaults */
body {
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
}

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

/* Remove link underlines */
a {
    text-decoration: none;
}

/* Reset heading margins */
h1, h2, h3, h4, h5, h6 {
    margin: 0;
}

/* Additional reset rules can be added as needed */
