/* Service Error Codes Section */

.service-error-codes {
    padding: 70px 0;
    background: #000000;
    color: #ffffff;
    font-family: var(--font-family);
}

.service-error-codes__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-error-codes__header {
    text-align: center;
    margin-bottom: 32px;
}

.service-error-codes__title {
    margin: 0;
    font-size: 32px;
    font-weight: 600;
    line-height: 120%;
    color: #ffffff;
}

.service-error-codes__table-wrapper {
    overflow-x: auto;
    background: #000000;
}

.service-error-codes-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 880px;
    border: none;
}

.service-error-codes-table__row {
    background: #000000;
    transition: background-color 0.2s ease;
    border: none;
}

.service-error-codes-table__row:nth-child(odd) {
    background: #000000;
}

.service-error-codes-table__row:nth-child(even) {
    background: #222222;
}

.service-error-codes-table__row:hover {
    background: #333333;
}

.service-error-codes-table__cell {
    padding: 18px 20px;
    font-size: 15px;
    line-height: 160%;
    color: #ffffff;
    vertical-align: top;
    border: none;
}

.service-error-codes-table__cell--code {
    font-weight: 600;
    color: #ff6b6b;
    white-space: nowrap;
}

.service-error-codes-table__cell:nth-child(2) {
    color: #ffffff;
    font-weight: 500;
}

.service-error-codes-table__cell p {
    margin: 0 0 12px;
    color: #ffffff;
}

.service-error-codes-table__cell p:last-child {
    margin-bottom: 0;
}

.service-error-codes-table__row:last-child {
    border-bottom: none;
}

.service-error-codes__footnote {
    margin-top: 24px;
    padding-top: 20px;
    color: #ffffff;
    font-size: 14px;
    line-height: 160%;
}

.service-error-codes__footnote p {
    color: #ffffff;
    margin: 0 0 8px;
}

.service-error-codes__footnote p:last-child {
    margin-bottom: 0;
}

@media (max-width: 743px) {
    .service-error-codes {
        padding: 50px 0;
    }

    .service-error-codes__container {
        padding: 0 16px;
    }

    .service-error-codes__title {
        font-size: 26px;
    }

    .service-error-codes-table {
        min-width: 720px;
    }

    .service-error-codes-table__cell {
        padding: 14px 16px;
        font-size: 14px;
    }
}

@media (min-width: 1024px) {
    .service-error-codes {
        padding: 90px 0;
    }

    .service-error-codes__title {
        font-size: 38px;
    }
}
