.box {
    padding: 50px 0px 0px;
}

.box h2 {
    font-size: 42px;
    line-height: 48px;
    color: #1b1a1a;
    text-align: center;
}

.table-holder {
    display: flex;
    flex-direction: column;
    max-width: 900px;
    margin: 0 auto;
}

.table-header {
    display: flex;
    background-color: rgba(0, 148, 206, 0.1);
}

.table-header-left,
.table-header-right {
    padding: 10px;
    color: #1b1a1a;
    font-weight: 600;
}

.table-header-left {
    flex: 1;
    padding-right: 30px;
}

.table-header-right {
    width: 300px;
    text-align: right;
}

.table-inner {
    display: flex;
    flex-direction: column;
}

.table-item {
    display: flex;
    border-bottom: 1px solid #f2f2f2;
}

.table-inner {
    border-left: 1px solid #f2f2f2;
    border-right: 1px solid #f2f2f2;
}

.table-left,
.table-right {
    padding: 10px;
}

.table-left {
    flex: 1;
    padding-right: 30px;
}

.table-right {
    width: 300px;
    text-align: right;
    font-style: italic;
    color: #1b1a1a;
    font-weight: 600;
}

.box-notes {
    max-width: 900px;
    margin: 20px auto 0;
}

.box-notes ul {
    margin: 0px;
    padding-left: 20px;
}

.box-notes p,
.box-notes ul li {
    font-style: italic;
}

.message {
    color: #0094CE;
    max-width: 900px;
    margin: 30px auto 50px;
    font-weight: 600;
}

@media screen and (max-width: 600px) {
    .box h2 {
        font-size: 40px;
        line-height: 50px;
    }
    .table-header-left,
    .table-header-right,
    .table-left,
    .table-right {
        flex: none;
        padding-right: 10px;
        width: 50%;
    }
}

@media screen and (max-width: 480px) {
    .box h2 {
        font-size: 30px;
        line-height: 40px;
    }
}