/* Global Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body Styling */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #f5f6fa;
    color: #2c3e50;
    line-height: 1.6;
}

/* Responsive Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Link Styling */
a {
    color: inherit;
    text-decoration: none;
}

/* Button Reset */
button {
    font-family: inherit;
    cursor: pointer;
}

/* Mobile First Media Queries */
@media (max-width: 480px) {
    body {
        font-size: 14px;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    body {
        font-size: 15px;
    }
}

@media (min-width: 769px) {
    body {
        font-size: 16px;
    }
}
