:root {
    --primary: #00E38C;
    --text-dark: #111111;
    --text-secondary: #6B7280;
    --border: #E5E7EB;
    --bg-secondary: #F7F7F7;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: white;
    color: var(--text-dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

::-webkit-scrollbar {
    display: none;
}

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    border:none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1:focus{
    outline:none;
}
