/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;  /* Base size for rem calculations */
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background: #fff;
    color: #000;
    overflow-x: hidden;  /* Prevent horizontal scroll */
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;  /* Better text rendering on Mac/iOS */
    -moz-osx-font-smoothing: grayscale;   /* Better text rendering on Firefox */
}

/* Prevent text size adjustment on mobile */
body {
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

/* Ensure images are responsive by default */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Better tap targets on mobile */
button,
a {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
}