.img-text-row {
    display: flex;
    width: 100%;
    margin: 0;
    padding: 20px 0;
    gap: 20px;
    box-sizing: border-box;
}

.img-col {
    width: 50%;
    box-sizing: border-box;
}

.img-col img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;

}

.text-col {
    width: 50%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    padding: 10px 0;
}

.text-col p {
    margin: 0;
    line-height: 1.8;
    font-size: 24px;
    color: #333;
}

@media (max-width: 768px) {

    .img-text-row table,
    .img-text-row tr {
        display: flex;
        flex-direction: column;
    }

    .img-text-row td {
        order: 1;
    }

    .img-text-row td.accent-cell {
        order: 2;
    }

    .img-col,
    .text-col {
        width: 100% !important;

    }

    .text-col {
        align-items: flex-start;
        padding: 0;
    }

    .text-col p {
        font-size: 14px;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .text-col p {
        font-size: 13px;
    }
}

.content-section-body {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-content {
    width: 100%;
    box-sizing: border-box;
}

.table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.styled-table {
    width: 100%;
    max-width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    overflow-x: auto;
}

.styled-table th,
.styled-table td {
    border: none;
    padding: 20px;
    vertical-align: top;
    text-align: justify;
}

.text-wrap {
    word-wrap: break-word;
    white-space: normal;
    line-height: 1.6;
    vertical-align: top;
}

.description-text {
    display: flex;
    padding-top: 14px;
    padding-left: 14px;
}

th:nth-child(1) {
    width: 50%;
}

th:nth-child(2) {
    width: auto;
}

.image-cell {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 360px;
    padding: 20px;
}

.table-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.accent-cell {
    position: relative;
    padding-left: 30px;
    padding-top: 10px;
    vertical-align: top;
    text-align: left;
}

.accent-cell::before {
    content: "";
    position: absolute;
    left: 0px;
    top: 40px;
    height: 160px;
    width: 15px;
    background: linear-gradient(#219077, #59cc86);
    border-radius: 4px;
}