body, html {
    color: #000000;
    background-color: #f2f2f2;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Source Sans 3 VF', sans-serif;
    font-style: normal;
    font-weight: 400;
}

.container {
  width: 94%;
  margin-left: auto;
  margin-right: auto;
  background-color: white;
}

main {
    line-height: 1.8em;
}

.navbar {
    display: flex;
    align-items: center;
    height: 58px;
    background-color: #861a22;
}

.nav-links {
    font-size: 1.4em;
    list-style: none;
    display: flex;
}

.nav-links a {
    text-decoration: none;
    color: white;
    padding: 14px 20px;
    height: 100%;
    transition: background-color 0.6s;
}

.nav-links a:hover {
    text-decoration: none;
    background-color: #424445;
    transition: background-color 0.6s;
}

a {
    color: #000000;
    text-decoration: none;
}

footer a {
    color: #ffffff;
}

a:hover {
    text-decoration: underline;
}

#bttBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    background-color: #424445;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.6s;
    width: 50px;
    height: 50px;
}

#bttBtn:hover {
    opacity: 1.0;
}

.banner {
    width: 100%;
    overflow: hidden;
    padding: 20px 0px;
}

.banner img {
    width: 100%;
    height: auto;
    display: block;
}

section.services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
    font-size: 1.2em;
}

section.privacy {
    font-size: 1.2em;
    margin: 40px;
}

ul.service-list {
    list-style-type: square;
    list-style-position: inside;
    padding-left: 4px;
    text-align: left;
}

ul.service-list > li {
    text-indent: -40px;
    padding-left: 40px;
}

section.services > h2 {
    grid-column: span 3;
    font-size: 1.8em;
}

section.services > section {
    padding: 40px;
    text-align: left;
}

section.services > section > h3 {
    font-size: 1.3em;
}

section.about-contact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    font-size: 1.2em;
}

section.about-contact > section {
    padding: 40px;
    text-align: center;
}

section.about-contact h2 {
    font-size: 1.8em;
}

ul.about-list {
    text-align: center;
    list-style-type: none;
    list-style-position: inside;
    list-style: none;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
}

ul.about-list > li {
    text-indent: -40px;
    /* padding-left: 40px;*/
}

footer {
    background-color: #861a22;
    color: white;
    text-align: center;
    padding: 20px;
}

@media (max-width: 768px) {
    .navbar {
        height: unset;
    }

    .nav-links {
        flex-direction: column;
        gap: 20px;
    }

    .nav-links a:hover {
        background-color: unset;
    }

    section.services {
        grid-template-columns: 1fr;
    }

    section.services > section {
        padding: 20px 40px;
    }

    section.services > h2 {
        grid-column: span 1;
    }

    section.about-contact {
        grid-template-columns: 2fr;
    }

    section.about-contact > section {
        padding: 20px 40px;
    }
}
