.page-section {
    background-color: #f5f5f5;
    padding-bottom: 5vh;
    padding-top: 5vh;
    padding-left: 20vw;
    padding-right: 20vw;
    color: var(--text-dark);
    min-height: 100vh;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.subtitle {
    font-size: 45px;
    font-weight: bold;
    margin-bottom: 20px;
    padding-bottom: 10px;
    color: var(--text-dark);
    display: inline-block;
    position: relative;
}

    .subtitle::after {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 2px;
        content: "";
        background: linear-gradient(90deg, #00a647 0%, rgba(0, 167, 66, 0) 100%);
    }

.page-section--whitebg {
    z-index: 2;
    background-color: #fff;
    box-shadow: 0 0 25px 0 rgba(0, 0, 0, .15);
}

.text {
    font-size: 20px;
    line-height: 1.6;
    text-align: justify;
    margin-bottom: 60px;
    color: var(--text-dark);
    padding-left: 20px;
    padding-right: 20px;
    margin: 30px auto;
}

.table {
    width: 100%;
    max-width: 780px;
    margin: 0 auto;
    padding: 0;
    text-align: center;
    color: #212529;
    border-collapse: collapse;
}
    .table tr td:first-child {
        text-align: left;
        font-weight: 500;
    }
    .table thead tr td {
        color: #00a647 !important;
        font-weight: 500;
    }
    .table tr td {
        font-size: 18px;
        font-weight: 400;
        line-height: 1.5;
        color: #31313f;
        border-bottom: dotted 1px #00a647;
        width: 50%;
        padding-top: 5px;
        padding-bottom: 5px;
    }


@media (max-width: 767px) {
    .page-section {
        padding-left: 15px;
        padding-right: 15px;
    }
    .text {
        font-size: 14px;
    }
    .subtitle {
        font-size: 35px;
        line-height: 50px;
    }
    .table tr td {
        font-size: 13px;
    }

}

@media (max-width: 1023px) {
    .page-section__image img {
        max-width: 100% !important;
    }
}