/* TABLE WRAPPER */
.responsive-table {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 8px;
     padding-bottom: 30px;
}

/* TABLE */
.comparison-table {
    width: 100%;
    min-width: 700px;
    border-collapse: separate;
    border-spacing: 0;
    font-family: "Inter", sans-serif;
    background: #ffffff;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    overflow: hidden;
   
}

/* HEADER */
.comparison-table thead th {
    background: #e63e38;
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    padding: 18px 20px;
    border-right: 1px solid rgba(255,255,255,0.25);
}

.comparison-table thead th:last-child {
    border-right: none;
}

/* BODY */
.comparison-table tbody td {
    padding: 17px 20px;
    font-size: 15px;
    line-height: 1.6;
    color: #333333;
    border-bottom: 1px solid #e8e8e8;
    border-right: 1px solid #e8e8e8;
    vertical-align: middle;
}

/* FIRST COLUMN */
.comparison-table tbody td:first-child {
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    color: #222222;
    background: #fafafa;
}

/* REMOVE BORDERS */
.comparison-table tbody td:last-child {
    border-right: none;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

/* HOVER */
.comparison-table tbody tr {
    transition: background-color 0.3s ease;
}

.comparison-table tbody tr:hover {
    background-color: rgba(230, 62, 56, 0.05);
}

.comparison-table tbody tr:hover td:first-child {
    color: #e63e38;
}

/* MOBILE */
@media (max-width: 767px) {

    .responsive-table {
        overflow-x: auto;
        margin: 0;
        padding-bottom: 8px;
        padding-bottom: 30px;
    }

    .comparison-table {
        min-width: 650px;
    }

    .comparison-table thead th {
        font-size: 14px;
        padding: 14px 15px;
    }

    .comparison-table tbody td {
        font-size: 14px;
        padding: 14px 15px;
    }
}