<style>
  .comparison-table-container {
    display: flex;
    justify-content: center;
    margin: 20px 0;
  }

  .comparison-table {
    width: 80%;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
    margin: 0 auto;
  }

  .comparison-table th, .comparison-table td {
    border: 1px solid #ddd;
    text-align: center;
    padding: 10px;
  }

  .comparison-table th {
    background-color: #f9f9f9;
    font-size: 16px;
    font-weight: bold;
  }

  .comparison-table .feature-available {
    color: #28a745;
    font-size: 18px;
    font-weight: bold;
  }

  .comparison-table .feature-limited {
    color: #ffc107;
    font-size: 18px;
    font-weight: bold;
  }

  .comparison-table .feature-not-available {
    color: #dc3545;
    font-size: 18px;
    font-weight: bold;
  }
</style>