.section-complaint_info_table {}

.complaint_info_table-title {
    max-width: 654px;
    text-align: center;
    margin: auto;
    margin-bottom: 64px;
}

.complaint_info_table-disclaimer {
    max-width: 654px;
    text-align: center;
    font-size: 12px;
    font-weight: 400;
    line-height: 150%;
    margin: auto;
    margin-top: 64px;
}

table a {
    transition: var(--transition);
}

table a:hover {
    color: var(--primary);
    text-decoration-line: underline;
    text-underline-offset: 2px;
}

table {
    display: block;
    width: 100%;
    max-width: 654px;
    border-radius: 12px;
    border: 1px solid #F0F0F0;
    margin: auto;
}

tr:not(:last-child) {
    border-bottom: 1px solid #F0F0F0;
}

th:nth-child(1), td:nth-child(1) {
    border-right: 1px solid #F0F0F0;
}

tr:nth-child(even):not(thead tr) {
    background: #FAFAFA;
}

th, td {
    font-size: 14px;
    font-weight: 400;
    line-height: 150%;
    padding: 16px 24px;
    text-align: left;
}

td:first-child {
    color: var(--black);
    font-weight: 700;
}

th {
    color: var(--black);
    font-size: 12px;
    font-weight: 700;
    line-height: 150%;
    border: none;
}

td:nth-child(1) {
    width: 27%;
}

td:nth-child(2) {
    width: 73%;
}

@media (max-width: 1024px) {
    .complaint_info_table-title {
        font-size: 32px;
        margin-bottom: 56px;
    }

    .complaint_info_table-disclaimer {
        margin-top: 56px;
    }

    table {
        max-width: 704px;
    }
}

@media (max-width: 640px) {
    .complaint_info_table-title {
        font-size: 28px;
        margin-bottom: 48px;
    }

    .complaint_info_table-disclaimer {
        margin-top: 48px;
    }

    tr,
    td:nth-child(1),
    td:nth-child(2) {
        display: block;
        width: 100%;
    }

    th:nth-child(1), td:nth-child(1) {
        border-right: none;
        padding-bottom: 8px;
    }

    th:nth-child(2), td:nth-child(2) {
        padding-top: 0;
    }
}