/* Legal Page Styles */
.ec-aboutUs {
    padding-bottom: 190px;
    padding-top: 75px;
    color: rgba(0, 0, 0, 1);
    font-family: 'M PLUS 1', sans-serif !important;

    .page-title {
        font-weight: 700;
        font-style: Bold;
        font-size: 24px;
        line-height: 100%;
        letter-spacing: 0%;
        text-align: center;
        color: #000000;
        margin-bottom: 162px;
    }

    .table-row {
        display: grid;
        grid-template-columns: 300px 1fr;
        min-height: 90px;
    }
    .table-cell {
        padding: 15px;
        border: 1px solid rgba(217, 217, 217, 1);
    }
    .table-cell.table-cell-title {
        font-weight: 700;
        background-color: rgba(244, 244, 244, 1);
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    .table-cell.table-cell-data {
        padding-left: 54px;
        font-weight: 500;
        text-align: left !important;
        display: flex;
        align-items: center;
    }
    .table-cell .link {
        cursor: pointer;
        text-decoration: underline;
    }
    .table-cell.table-cell-data.table-cell-data-group { 
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Tablet Styles */
@media (max-width: 1024px) {
    .ec-aboutUs {
        padding-bottom: 120px;
        padding-top: 60px;
        padding-left: 20px;
        padding-right: 20px;

        .page-title {
            font-size: 22px;
            margin-bottom: 120px;
        }

        .table-row {
            grid-template-columns: 250px 1fr;
            min-height: 80px;
        }

        .table-cell.table-cell-data {
            padding-left: 30px;
        }
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .ec-aboutUs {
        padding-bottom: 80px;
        padding-top: 40px;
        padding-left: 15px;
        padding-right: 15px;

        .page-title {
            font-size: 20px;
            margin-bottom: 80px;
        }

        .table-row {
            grid-template-columns: 120px 1fr;
            min-height: 70px;
        }

        .table-cell {
            padding: 12px 10px;
        }

        .table-cell.table-cell-title {
            font-size: 13px;
            padding: 12px 8px;
            text-align: center;
            word-wrap: break-word;
        }

        .table-cell.table-cell-data {
            padding-left: 15px;
            font-size: 14px;
        }

        .table-cell.table-cell-data.table-cell-data-group {
            gap: 6px;
        }
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .ec-aboutUs {
        padding-bottom: 60px;
        padding-top: 30px;
        padding-left: 10px;
        padding-right: 10px;

        .page-title {
            font-size: 18px;
            margin-bottom: 60px;
        }

        .table-row {
            grid-template-columns: 100px 1fr;
            min-height: 60px;
        }

        .table-cell {
            padding: 10px 6px;
        }

        .table-cell.table-cell-title {
            font-size: 12px;
            padding: 10px 6px;
            text-align: center;
            word-wrap: break-word;
            line-height: 1.2;
        }

        .table-cell.table-cell-data {
            font-size: 13px;
            padding-left: 12px;
        }
    }
}
