
/* Reset styles for consistency */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
}

body {
    font-family: var(--font-family);
    color: var(--primary-text);
    background-color: var(--background-gray);
    line-height: 1.6;
}

main {
    padding: 1rem !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-family);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

h1 {
    font-size: var(--font-heading1);
}

h2 {
    font-size: var(--font-heading2);
}

h3 {
    font-size: var(--font-heading3);
}

p {
    font-size: var(--font-body);
    /* margin-bottom: var(--spacing-md); */
}

a {
    color: var(--brand-main);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
