* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #a9a9a9;
    --checkmarkColor: #143882;
    --size: 1.25rem;
    --checkmarkFat: 0.15rem;
}

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 {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

html {
    height: 100%;
}

body {
    line-height: 1;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* Header */

.logo-box {
    padding: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.lemonade-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    padding: 0 1rem;
    margin: 0 auto;
}

.lemonade_img {
    width: 80%;
}

.vertical-line {
    border-left: thin solid lightblue;
    margin-left: 10px;
    height: 50px;
}

.logos {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-img {
    max-width: 150px;
    height: auto;
}

.seen-on-div {
    background-color: lightgray;
}

.seen-on-box {
    height: 60px;
    display: block;
    margin: auto;
}

.a-disclosure {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 767px) {
    .seen-on-box {
        height: 40px;
    }

    .vertical-line {
        margin: 0;
    }

    .logo-img-2 {
        max-width: 120px;
        height: auto;
    }

    .lemonade_img {
        width: 110px;
        height: auto;
    }

    .a-disclosure {
        font-size: 12px;
    }
}

.mainform {
    background-color: #ffffff;
    border-bottom: 2px solid #ececec;
    border-top: 2px solid #2c99dd;
    flex: 1 0 auto;
}

/* Form */

h1 {
    font-size: 36px;
    margin: 24px 0 16px;
}

@media screen and (max-width: 1024px) {
    h1 {
        font-size: 32px;
        margin: 20px 0 14px;
    }
}

@media screen and (max-width: 767px) {
    h1 {
        font-size: 28px;
        margin: 16px 0 12px;
    }
}

.form-body {
    background-color: #ffffff;
    min-height: 500px;
    max-width: 1200px;
    margin: 40px auto;
}

.form-background {
    width: 90%;
    margin: auto;
}

@media screen and (max-width: 767px) {
    .form-body {
        width: 100%;
        margin-top: 0;
    }
}

/* Footer */

footer {
    background-color: #f9f9f9;
    font-family: Arial, sans-serif;
    color: #333;
    flex-shrink: 0;
}

footer p {
    font-size: 0.875rem;
}

footer a {
    font-size: 0.875rem;
    text-decoration: none;
    color: #006EBF;
}

.footer-content {
    padding: 2rem 1rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.disclosure-text {
    font-size: 0.875rem;
    color: #777;
    max-width: 800px;
    margin-top: 15px;
    text-align: left;
}

/* MRC Widget */
.flex-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    gap: 0.5rem;
}

.flag-img {
    height: 30px;
    width: auto;
    flex-shrink: 0;
}

.bullets {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.headlines h1 {
    font-size: 28px;
    margin: 0;
    padding: 0;
}

.headlines p,
.mrc-subheadline {
    font-size: 1.2rem;
    font-weight: 300;
    padding: 0;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.mrc-subheadline {
    max-width: 800px;
}

.bullets {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.icon-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 300;
    color: gray;
    font-size: 1.1rem;
}

.circle {
    position: relative;
    background: var(--primary);
    border-radius: 50%;
    width: var(--size);
    height: var(--size);
    flex-shrink: 0;
}

.checkmark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 0.35rem;
    height: 0.65rem;
    border-right: var(--checkmarkFat) solid var(--checkmarkColor);
    border-bottom: var(--checkmarkFat) solid var(--checkmarkColor);
}

@media screen and (max-width: 767px) {
    .bullets {
        display: none;
    }

    .headlines p {
        display: none;
    }

    .flex-header {
        margin: 1rem 0 0 0;
    }
}

@media screen and (max-width: 500px) {
    .headlines h1 {
        font-size: 20px;
    }
}