/* CSS Reset and Normalization */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Reset lists */
ul, ol {
    list-style: none;
}

/* Reset links */
a {
    text-decoration: none;
    color: inherit;
}

/* Reset buttons */
button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* Reset inputs */
input, textarea, select {
    font-family: inherit;
    border: none;
    outline: none;
}

/* Reset images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Reset headings */
h1, h2, h3, h4, h5, h6 {
    font-weight: inherit;
    font-size: inherit;
}
