/* Resetting all margins, padding, and borders */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Resetting HTML5 element styles */
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section {
    display: block;
}

/* Set a base font size and font family */
body {
    line-height: 1.5;
    font-family: sans-serif;
}

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

/* Remove quotes from blockquotes */
blockquote, q {
    quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
    content: '';
    content: none;
}

/* Reset table styles */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* Remove default form element margins */
input, button, textarea, select {
    margin: 0;
    font: inherit;
}

/* Remove the focus outline for better UX (but leave for accessibility if needed) */
:focus {
    outline: none;
}

/* Remove underlines from links */
a {
    text-decoration: none;
    color: inherit;
}
