/*
Base Styles - Reset, Typography, and Basic Layout
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    line-height: 1.6;
    color: #02020b;
    background-color: #fff;
    padding-top: 80px;
    font-weight: 400;
}

.container {
    max-width: 1186px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-0 {
    margin-bottom: 0;
}

.mt-20 {
    margin-top: 20px;
}

.hidden {
    display: none;
}

/* Accessibility */
.screen-reader-text {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* Focus styles for better accessibility */
a:focus,
button:focus,
input:focus {
    outline: 2px solid #1a936f;
    outline-offset: 2px;
} 