/* Base styles */

body {
    font-family: 'Montserrat', sans-serif;
    /* Keep the document canvas pure white; sections opt into muted surfaces locally. */
    background-color: var(--color-surface);
    margin: 0;
    padding: 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Utility classes */
.hidden-mobile {
    display: none;
}

@media (min-width: 768px) {
    .hidden-mobile {
        display: block;
    }
}

/* Button styles */
.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--color-navy);
    color: white;
    text-decoration: none;
    border-radius: 5px;
}



