/* Styles across all pages */
body {
    text-align: center;
    margin-top: 35px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.content {
    width: 90%;
    margin: 0 auto;
}
.header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.header img {
    height: 70px;
    width: auto;
    display: block;
}

.header p {
    font-size: 25px;
    color: #a0843c;
    font-weight: bold;
    align-self: center;
    text-align: left;
}

@media (max-width: 700px) {
    .header {
        display: block;
    }
}

.banner {
    width: 100%;
    height: auto;
}

.navbar {
    background-color: #555555;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
}

.navbar button {
    float: left;
    height: 36px;
    background-color: #555555;
    color: white;
    border: 0;
    font: inherit;
    font-weight: 200;
    font-size: 14px;
    cursor: pointer;
    padding: 0 15px;
}

.navbar button:hover {
    background-color: #999999;
}

.navbar a {
    color: white;
    text-decoration: none;
}

.navbar .active-page {
    background-color: #118ade;
}

.footer {
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #555555;
    padding: 10px 0;
}

.footer span {
    color: white;
    font-size: 12px;
    position: relative;
    top: 25%;
}

/* Content Styles */
h1 {
    font-size: 28px;
    font-weight: bold;
    color: #006699;
    margin: 15px 0 10px 0;
}

h2 {
    color: #555555;
    font-size: 22px;
    margin: 30px 0 10px 0;
}

h3 {
    color: #ab8433;
    text-align: left;
    font-size: 14px;
    font-weight: bold;
}

p {
    text-align: left;
    color: #555555;
    font-size: 14px;
    line-height: 20px;
}

strong {
    font-size: 16px;
    color: #555555;
}

a {
    color: #009ae5;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* FAQ */
ul {
    margin: 0;
    padding-left: 0;
    list-style-type: none;
}

li::before {
    content: '\2022';
    padding-right: 10px;
    font-weight: 900;
}

li {
    text-align: left;
    color: #555555;
    font-size: 14px;
    line-height: 20px;
}

.small-title {
    text-align: left;
    font-size: 20px;
    font-weight: bold;
    color: #006699;
}

/* New Styles */
.faq-question {
    text-align: left;
    color: #555555;
    font-size: 14px;
    line-height: 20px;
    font-weight: bold;
}

.faq-answer {
    text-align: left;
    /*color: #555555;*/
    font-size: 14px;
    line-height: 20px;
    margin: 0 10px;
    border-left: 1px solid black;
    padding-left: 10px !important;
}

.ql-editor ul {
    padding: 0 !important;
    margin: 0;
}

.ql-editor ol {
    padding: 0 !important;
    margin: 0;
}

.ql-editor li.faq-answer {
    padding-left: 2.5em !important;
}
