:root {
    --red: #C3051E;
    --muted: #6b6b6b;
}

.page-container {
    margin-top: 7rem;
}

.left-card {
    padding: 40px 30px;
    border-radius: 4px;
}

.label-small {
    color: var(--red);
    font-weight: 700;
    margin-bottom: 12px;
    display: block;

    font-weight: 600;
    font-size: 20px;
    line-height: 150%;
    letter-spacing: 4%;
}

.page-title {
    color: var(--red);
    margin-bottom: 12px;

    font-weight: 800;
    font-size: 48px;
    line-height: 120%;
    letter-spacing: 2%;
}

.lead-small {
    color: var(--red);

    font-weight: 500;
    font-style: Medium;
    font-size: 20px;
    line-height: 150%;
    letter-spacing: 0%;
}

.download-btn {
    background: var(--red);
    color: #fff;
    padding: 1rem 1.5rem;
    display: inline-block;
    text-decoration: none;
    margin-top: 12px;

    font-weight: 700;
    font-style: Bold;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 4%;
    vertical-align: middle;
}

.download-btn:hover {
    background: #9b141d;
    color: #fff;
    text-decoration: none;
}

/* Right content */
.section {
    padding: 20px 30px;
}

.section p,
ul.bullet-list li {
    color: #333;

    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    letter-spacing: 0%;
    text-align: justify;
}

.section h5.section-title {
    color: var(--red);
    margin-top: 14px;
    margin-bottom: 12px;

    font-weight: 700;
    font-style: Bold;
    font-size: 20px;
    line-height: 150%;
    letter-spacing: 0%;
    text-align: justify;
}

.hr-accent {
    height: 4px;
    width: 100%;
    background: linear-gradient(45deg, var(--red) 20%, #111 80%);
    margin: 16px 0 22px 0;
}

ul.bullet-list {
    color: #333;
}

ul.bullet-list li {
    margin-bottom: 8px;
}

/* FAQ accordion custom */
.accordion-button::after {
    /* use default caret */
}

.accordion-item {
    border: unset;
}

.accordion-item button:focus {
    border-radius: unset;
    background-color: #ffc4c86b;
    border-color: #C3051E;
    box-shadow: unset;
}

.accordion-button:not(.collapsed) {
    background-color: #ffc4c86b;
    box-shadow: unset;
}

.accordion-item:first-of-type .accordion-button{
    border-radius: unset;
    box-shadow: unset;
}

.faq-q {
    color: var(--red);
    font-weight: 700;
    font-style: Bold;
    font-size: 20px;
    line-height: 150%;
    letter-spacing: 0%;
}

.faq-a {
    color: #444;
}

/* Layout spacing */
@media (min-width: 992px) {
    .left-wrapper {
        padding-right: 40px;
    }

    .right-wrapper {
        padding-left: 40px;
    }
}

@media (max-width: 991px) {
    .page-title {
        font-size: 1.8rem;
    }

    .hr-accent {
        width: 120px;
    }
}