.hire-table-section {
    padding: 60px 0;
    width: 100%;
    background-color: #000000;
    display: flex;
    justify-content: center;
}

.hire-table-container {
    width: 100%;
    max-width: 1400px;
    padding: 0 40px;
}

.comparison-table-wrapper {
    width: 100%;
    border: 3px solid #ffffff;
    /* White border as in image */
    border-radius: 15px;
    overflow: hidden;
    background-color: transparent;
}

.comparison-table {
    display: flex;
    flex-direction: column;
}

.table-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    width: 100%;
    border-bottom: 2.5px solid #ffffff;
    /* White horizontal separators */
}

/* Headers and labels styles */
.table-cell {
    background-color: #54b248;
    /* Standard green color from image */
    padding: 20px 25px;
    color: #ffffff;
    /* White text for data rows as requested */
    font-size: 18px;
    font-weight: 700;
    border-right: 2.5px solid #ffffff;
    /* White vertical separators */
    display: flex;
    align-items: center;
    line-height: 1.4;
    font-family: var(--font-body, 'Inter', sans-serif);
}

/* Remove last vertical line in each row */
.table-cell:last-child {
    border-right: none;
}

/* Removing bottom border from the last row */
.total-row {
    border-bottom: none;
}

/* 1st (Header) row: Black text */
.table-header .table-cell {
    color: #000000;
    font-size: 18px;
    padding: 25px;
}

/* Last (Total) row: Black text */
.total-row .table-cell {
    color: #000000;
    font-weight: 700;
    font-size: 18px;
}

/* Responsive adjustments */
@media (max-width: 1100px) {
    .table-cell {
        font-size: 16px;
        padding: 15px 10px;
    }
}

@media (max-width: 768px) {
    .hire-table-container {
        padding: 0 20px;
    }

    .table-row {
        grid-template-columns: 1fr;
        /* Switch to stacked view on small screens */
        border-bottom: none;
    }

    .table-cell {
        border-right: none;
        border-bottom: 2px solid #ffffff;
    }

    .empty-cell {
        display: none;
        /* Hide empty cell on stacked mobile view */
    }

    .table-header .table-cell {
        font-size: 18px;
    }
}