body {
    background-color: lightgray;
}

 .table-container {
  width: 100%;
  overflow-x: auto;
}

.comparison-title {
  font-size: 36px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 25px;
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 1px;
}


.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
}


.comparison-table th,
.comparison-table td {
  border: 2px solid #000;
  padding: 18px 10px;
  font-size: 20px;
}


.comparison-table th[scope="row"] {
  text-transform: uppercase;
  text-align: left;
  font-weight: bold;
}


.header-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 18px;
}


.header-wrap img {
  width: 300px;
  height: 100x;
}


.highlight,
.comparison-table th.highlight {
  background-color: #a6ce39;
  font-weight: bold;
}

.table-note {
  text-align: center;       
  margin-top: 20px;     
  font-size: 24px;         
  font-style: italic;
  font-weight: bold;   
  color: black;             
}
 .home-link {
    display: block;
    margin-top: 10px;
    color: black;
 }


/*===========================Mobile Devices===============================
==========================================================================*/

@media (max-width: 768px) {

  
  .comparison-title {
    font-size: 28px;
    margin-bottom: 15px;
  }

  
  .comparison-table th,
  .comparison-table td {
    font-size: 16px;
    padding: 12px 8px;
  }


  .header-wrap img {
    width: 40px;
    height: 40px;
  }

  .comparison-table {
    min-width: 600px;  
  }


  .header-wrap {
    font-size: 14px;
    gap: 4px;
  }

 
  .comparison-table th[scope="row"] {
    font-size: 14px;
  }
}