#top{
    background: linear-gradient(to bottom, #f9f9f9 0%, white 50%);
}
#hero{
    text-align: center;
}
#benefits .benefits {
    display: flex
;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}
#image-hero{
    width: 90%;
    margin: auto;
}
#image-hero .card{
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-direction: row;
    flex-wrap: wrap;
}
#benefits .content{
    background: #F9F9F9;
}
#benefits .content .tag{
    background: var(--yellow);
}
#benefits img{
    width: 7rem;
    height: 7rem;
}
#benefits .benefits{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

  .comparison-grid {
    display: grid;
    grid-template-columns: 1.75fr 1fr 1fr 1fr; /* Wider first column */
    gap: 0;
    background-color: #f9f9f9; /* White background for grid container */
    border-collapse: collapse;
    border-spacing: 0;
    overflow-x: auto; /* Scrollable on smaller screens */
  }
  
  .comparison-grid .header {
    text-align: center; /* Center-align header text */
    font-weight: bold;
    background-color: #f9f9f9; /* Light gray for header row */
    color: #000000;
  }
  
  .comparison-grid .feature {
    color: #333333;
    text-align: left;
    background-color: transparent; /* Transparent for all except specific column */
  }
  .comparison-grid .check img, .cross img{
    width: 2.9rem;
    height: 2.9rem;
  }
  .comparison-grid .header.check img{
    width: unset;
    height: unset;
  }
  .comparison-grid .check {
    text-align: center;
    font-weight: bold;
    background-color: #ffffff; /* Always white for the second column */
  }
  
  .comparison-grid .cross {
    text-align: center;
    font-weight: bold;
    background-color: transparent; /* Transparent for all except specific column */
  }
  .comparison-grid .logoimg{
    max-width: 13.8rem;
  }
  @media screen and (max-width: 768px) {
    .comparison-grid {
      grid-template-columns: repeat(
        4,
        minmax(180px, 1fr)
      ); /* Responsive column sizes */
    }
  
    .comparison-grid .header,
    .comparison-grid .feature {
      font-size: 0.9rem;
    }
  }
  
  @media screen and (max-width: 480px) {
    .comparison-grid {
      grid-template-columns: repeat(4, minmax(180px, 1fr));
    }
  
    .comparison-grid .header,
    .comparison-grid .feature {
      font-size: 0.8rem;
    }
  }
  