/* Reset and Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #17202A;
    background-color: #FFFFFF;
    padding-top: 80px; /* Account for fixed header */
    overflow-x: hidden; /* Prevent accidental horizontal scroll / white edge */
}
