:root {
    --primary-color: #ffae42;
    --secondary-color:#1986a0;
    --button-color: #ffae42;
    --dark-color: #31352e;
    --white-color: #fff;
    --grey-color: #f1f1f6;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-font-smoothing: antialiased;
}

body {
    min-height: 100vh;
    line-height: 1;
    color: var(--dark-color);
    background: #f8f9fa;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue",
        sans-serif;
    font-size: 1rem;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

main {
    min-height: calc(100vh - 80px);
}

/* Utility Improvements */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0px 1000px transparent inset !important;
    box-shadow: 0 0 0px 1000px transparent inset !important;
    background: transparent !important;
    transition: background-color 5000s ease-in-out 0s;
}

img,
svg {
    display: block;
    max-width: 100%;
}

button {
    cursor: pointer;
}