:root {
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    min-height: 100%;
}

body {
    font-size: 16px;
    line-height: 21px;
    color: #000;
    font-weight: 400;
    font-family: Verdana, Geneva, sans-serif;
}

#wrapper {
    position: relative;
    max-width: 876px;
    margin: 1rem auto;
    border: 1px solid #000;
    overflow: hidden;
    padding: 80px 100px;
    background-color: #fff;
}

h1 {
    margin: 28px 0 6px;
    font-size: 16px;
    line-height: 22px;
    font-weight: 700;
    text-align: center;
}

h2 {
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
    margin: 16px 0 0;
}

h3 {
    font-size: 13px;
    margin: 16px 0;
    font-weight: 700;
    line-height: 18px;
}

p:not(:last-child) {
    margin-bottom: 1rem;
}

p {
    text-align: justify;
    hyphens: auto;
}

header p:nth-of-type(1) {
    margin-bottom: 9px !important;
}

header {
    align-items: center;
    padding: 0 0 16px;
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    gap: 16px;
}

header p {
    font-weight: 700;
}

.margin {
    margin: 16px 0;
}

.p {
    margin-bottom: 0 !important;
}

:is(a:link, a:visited, a:hover, a:active) {
    color: blue;
    text-decoration: underline;
    white-space: nowrap;
}

a[href^="tel:"] {
    color: #000;
    text-decoration: none;
}

ul {
    margin: 0;
    list-style: none;
}

ul li {
    padding-left: 1.25rem;
}

ul li:before {
    content: "\2022";
    float: left;
    font-size: 13px;
    text-indent: -1.25rem;
}

img {
    max-width: 100%;
}

@media (max-width: 876px) {
    #wrapper {
        margin: 0;
        padding: 1rem;
        border: none;
    }

    :is(p, ul) {
        hyphens: auto;
        text-wrap: pretty;
    }

    p {
        text-align: left;
    }

    br {
        display: none;
    }

    footer br {
        display: inline;
    }
}