/* Modern CSS Reset with Theme Integration */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: var(--font-size-base);
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--background-light);
}

/* Remove default margins and padding */
h1, h2, h3, h4, h5, h6, p {
    margin: 0;
    padding: 0;
}

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

/* Remove default button styles */
button {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-family: inherit;
}

/* Remove default link styles */
a {
    text-decoration: none;
    color: inherit;
}

/* Remove default form element styles */
input, textarea, select {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
}

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

/* Remove default image styles */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Remove default fieldset styles */
fieldset {
    border: none;
    padding: 0;
    margin: 0;
}

/* Remove default quote styles */
blockquote, q {
    quotes: none;
}

/* Remove default focus outline */
:focus {
    outline: none;
}

/* Remove default audio/video styles */
audio, video {
    max-width: 100%;
    display: block;
}

/* Additional styles */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}

blockquote:before, blockquote:after, q:before, q:after {
    content: "";
}

a {
    position: relative;
    color: #000;
}

table {
    border-collapse: separate;
    border-spacing: 0;
}

:focus {
    outline: 0;
}

img {
    -ms-interpolation-mode: bicubic;
    vertical-align: middle;
}

audio, video, canvas {
    max-width: 100%;
}
 