/* Reset styles for consistent cross-browser styling */

/* Remove default margin and padding */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Remove default list styles */
ul, ol {
    list-style: none;
}

/* Remove anchor text decoration */
a {
    text-decoration: none;
    color: inherit; /* Make sure links inherit text color */
}

/* Remove table border spacing */
table {
    border-collapse: collapse;
}

/* Remove default border for form elements */
input, button, textarea, select {
    border: none;
    outline: none;
}

/* Remove default background colors */
button, input, select, textarea {
    background: none;
    color: inherit;
}

/* Remove default fieldset border and padding */
fieldset {
    border: none;
    padding: 0;
}

/* Normalize font rendering */
html, body {
    font-family: 'Arial', sans-serif;
    font-size: 100%;
    line-height: 1.5;
    color: #333;
}

/* Remove default margin for body */
body {
    margin: 0;
}

/* Make sure images fill their containers */
img {
    display: block;
    max-width: 100%;
    height: auto;
}

/* Clear default padding in form elements */
input, button, textarea, select {
    padding: 0;
    margin: 0;
}

/* Set consistent box-sizing for all elements */
*, *::before, *::after {
    box-sizing: border-box;
}
