html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video,
button {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
    background-color: transparent;
    color: inherit;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #f5f5f5;
}

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

button {
    appearance: none;
}

.policy-header {
    background-color: var(--primary);
    color: white !important;


}

.policy-header-content {
    padding: 1rem 2em;
    display: flex;
    justify-content: space-between;
    align-items: center;

}

.policy {
    padding: 4em 2em;
    display: flex;
    flex-direction: column;
    gap: 1em;
    font-size: 16px;
}

.policy-button {
    text-align: left;
}

.policy-heading-1 {
    font-weight: bold;
    font-size: 2em;
}

.policy-heading-2 {
    font-weight: bold;
    font-size: 1.5em;
    margin-bottom: 1em;

}

.policy-heading-3 {
    font-weight: bold;
    font-size: 1.25em;
}

.policy-list {
    margin-left: .8em;
    display: flex;
    flex-direction: column;
    gap: .5em;

}

.policy-list li {
    list-style-type: disc;

}

@media screen and (max-width: 768px) {


    .policy-heading-1 {
        font-size: 1.5em;
    }

    .policy-heading-2 {
        font-size: 1.25em;
    }

    .policy-heading-3 {
        font-size: 1em;
    }

}