/* assets/css/reset.css */

/* Box-sizing fix for all elements */
*, *::before, *::after {
    box-sizing: border-box;
}

/* Remove default margins and padding */
body, h1, h2, h3, h4, h5, h6, p, ul, ol, li, figure, figcaption, blockquote, dl, dd {
    margin: 0;
    padding: 0;
}

/* Set default font and line height */
body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.5;
    color: #333333;
}

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

/* Ensure images are responsive */
img {
    max-width: 100%;
    height: auto;
  
}

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

/* Reset buttons */
button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    margin: 0;
}

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

/* Ensure consistent table rendering */
table {
    border-collapse: collapse;
    border-spacing: 0;
}