/* CSS Reset */

/* Reset box-sizing to border-box */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Remove margin and padding */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul,
li,
figure,
figcaption,
blockquote,
dl,
dd {
    margin: 0;
    padding: 0;
}

/* Remove list styles (bullet points) */
ul,
ol {
    list-style: none;
}

/* Set default font styles */
body {
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
}

/* Remove hyperlink styles */
a {
    text-decoration: none;
    color: inherit;
}

/* Remove underline on links when hovered */
a:hover {
    text-decoration: none;
}

/* Remove default button styles */
button,
input,
optgroup,
select,
textarea {
    margin: 0;
    padding: 0;
    border: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

/* Remove outline on focus */
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: none;
}

/* Set max-width to 100% to ensure responsiveness */
img {
    max-width: 100%;
    height: auto;
}

/* Add CSS reset specific to form elements if necessary */