/* Alapvető reset és globális stílusok */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0;
    font-family:Arial, Helvetica, sans-serif;
    width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}
