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

html {
    background-color: #EDE7DB;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Open Sans', sans-serif;
    color: #1B1B18;
    background-color: #EDE7DB;
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

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

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

/* Buttons */
button {
    cursor: pointer;
    background: none;
    border: none;
    font: inherit;
    color: inherit;
}

/* Forms */
input, textarea, select {
    font: inherit;
}

/* Prevent text selection on UI elements */
button, a {
    user-select: none;
}

/* Hide scrollbar but keep functionality */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Prevent body scroll when modal is open */
body.no-scroll {
    overflow: hidden;
}
