/* Default Desktop Styles */
.personal {
    padding: 30px !important;
}

.personal ul li {
    margin-top: 10px;
}

.table-bordered {
    border-collapse: collapse;
    width: 100%;
    table-layout: fixed;
    font-size: 14px;
}

.table-bordered th,
.table-bordered td {
    border: 1px solid #000;
    padding: 10px;
    text-align: left;
    vertical-align: top;
    height: 100%; /* Important: Unifies cell height */
}

.termspage .web-browser th:first-child {
    width: 20%;
}
.termspage .mobile-browser th:first-child
{
    width: 20%;
}
.termspage .mobile-browser th:nth-child(2)
{
    width: 25%;
}

.td-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; /* Vertical top alignment */
    height: 100%; /* Unifies height within the cell */
}

.label-icon {
    width: 70px;
    height: 80px;
    margin: 10px 0;
}

.list-tit {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    box-sizing: border-box;
    margin: 30px 0 10px 0;
    vertical-align: middle;
}

.list-icon img {
    width: 31px;
    height: 36px;
    margin-right: 5px;
}

.ua_box dl dt {
    margin-top: 10px;
}

.termspage a {
    color: #44a5f8 !important;
    text-decoration: underline !important;
}

/* ---------------------------------- */
/* 1. Small Desktops / Large Tablets (992px and below) */
/* ---------------------------------- */
@media screen and (max-width: 992px) {
    .personal {
        padding: 20px !important; /* Reduce padding */
    }

    .list-tit {
        font-size: 17px; /* Slightly smaller title */
        margin-top: 25px;
    }

    .label-icon {
        width: 60px;
        height: 70px;
    }
}

/* ---------------------------------- */
/* 2. Tablets (760px and below) */
/* ---------------------------------- */
@media screen and (max-width: 760px) {
    .table-bordered {
        font-size: 13px; /* Smaller table font */
    }

    .table-bordered th,
    .table-bordered td {
        padding: 8px; /* Reduce cell padding */
    }

    .label-icon {
        width: 50px; /* Smaller icon */
        height: 60px;
    }

    .list-tit {
        font-size: 16px;
    }
}

/* ---------------------------------- */
/* 3. Mobile (576px and below) */
/* ---------------------------------- */
@media screen and (max-width: 576px) {
    .personal {
        padding: 15px !important; /* Further reduce padding for mobile */
    }

    .table-bordered {
        font-size: 12px; /* Even smaller font for mobile readability */
    }

    .label-icon {
        width: 35px; /* Even smaller icon for tight spaces */
        height: 40px;
        margin: 5px 0;
    }

    .list-tit {
        font-size: 15px;
        margin-top: 20px;
    }
}
