.table-section-container {
    display: flex;
    flex-direction: column;
    text-align: center;
    margin:16px;
}

.table-section-container h2 {
    font-weight: 700;
    font-size: 28px;
    line-height: 36px;
    text-align: center;
}

.table-section-container .finance-table {
    table-layout: fixed;
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.table-section-container .finance-table th {
    background-color: #363534;
    padding: 12px 8px;
}

.table-section-container .finance-table tr {
    border-bottom: 1px solid #d3d3d3;
}

.table-section-container .finance-table tr:nth-child(4n+1),
.table-section-container .finance-table tr:nth-child(4n+2) {
    background-color: #F4F4F4;
}

.table-section-container .finance-table .table-heading {
    color: white;
    background-color: #363534;
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
}

.table-section-container .finance-table .left-description {
    font-size: 14px;
    line-height: 20px;
    padding: 12px 8px;
}

.table-section-container .finance-table .right-description {
    font-size: 14px;
    line-height: 20px;
    padding: 12px 8px;
}

.table-section-container p {
    margin: 0;
}

.table-section-container .finance-table .left-description .section-month-title {
    padding-bottom: 25px;
}

.table-section-container .finance-table .table-description-justify .section-subtitle {
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    margin: 0 0 16px 0;
}

.table-section-container .finance-table .table-description-justify .section-description {
    font-size: 14px;
    line-height: 20px;
}

.table-section-container .finance-table .table-description-justify .section-description p {
    margin: 0 0 16px;
}

.table-section-container .finance-table .table-description-justify .section-description a {
    color: black;
}

.table-section-container .table-footer {
    font-size: 12px;
    line-height: 16px;
    text-align: left;
    margin-top: 10px;
}

@media only screen and (min-width: 768px) {

    .table-section-container .finance-table .table-description-justify {
        text-align: justify;
    }

    .table-section-container {
        margin: 24px 48px;
    }

    .table-section-container .finance-table .left-description p,
    .table-section-container .finance-table .right-description p {
        margin-left: 18px;
    }

    .table-section-container th p {
        margin-left: 18px;
    }

    .table-section-container .finance-table .left-description a {
        margin-left: 18px;
    }

    .table-section-container .finance-table .left-description .section-month-title {
        padding-bottom: 0px;
    }

    .table-section-container .finance-table .table-description-justify .section-description {
        margin: 16px;
    }

    .table-section-container .finance-table .table-description-justify .section-subtitle {
        margin-left: 16px;
    }
}

@media only screen and (min-width: 1024px) {
    .table-section-container {
        margin: 24px 156px;
    }
}