* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
    color: #212529;
    background-color: #f9f9f9;
    line-height: 1.6;
    position: relative;
    overflow-x: hidden;
}

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

/* Common headings and text elements */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 0.5em;
    font-weight: 700;
    line-height: 1.2;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: #0066cc;
    transition: color 0.2s;
}

a:hover {
    color: #0052a3;
}

/* Common utility classes */
.mt-20 {
    margin-top: 20px;
}

.hidden {
    display: none;
}