<style>
.table-container {
    width: 100%;
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 1em;
    text-align: left;
    min-width: 600px;
}

.comparison-table thead tr {
    background-color: #F59000;
    color: #ffffff;
    text-align: left;
}

.comparison-table th, .comparison-table td {
    padding: 12px 15px;
    border: 1px solid #dddddd;
}

.comparison-table tbody tr:nth-of-type(even) {
    background-color: #f3f3f3;
}

.comparison-table tbody tr:hover {
    background-color: #f1f1f1;
}
</style>