* {
    box-sizing: border-box;
}

body {
    font-family: Montserrat, sans-serif;
    background-color: #f9f9f9;

    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 15px;
    line-height: 1.4;
    color: #000;

    overflow-x: hidden;
}

strong {
    font-weight: 500;
}

h2 {
    font-size: 20px;
    font-weight: bold;
    text-align: left;
    margin-bottom: 15px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 25px;
    background: #fff;
}

table:last-of-type {
    margin-bottom: 0;
}

th, td {
    border: 1px solid #ddd;
    padding: 10px 10px;
    text-align: left;
}

th {
    background-color: #f1f1f1;
    font-weight: 600;
}

tr:nth-child(even) {
    background-color: #f9f9f9;
}

.container {
    max-width: 1500px;
    width: 100%;

    margin: auto;

    padding: 20px;

    overflow-x: hidden;
}

.wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    margin-left: -25px;
    margin-right: -25px;

    width: calc(100% + 50px);
}

.col {
    padding: 0 25px;
}

.col:nth-of-type(1) {
    width: 40%;
}

.col:nth-of-type(2) {
    width: 60%;
}