.comparison-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.comparison-category-card {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: space-around !important;
  min-height: 360px !important;
  background: #FFFFF2;
  border-radius: 20px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0px 10px 34px 0px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease !important;
}

.comparison-category-card:hover {
  transform: translateY(-5px);
  background-color: #FFB200 !important;
}

.category-image img {
  max-width: 100% !important;
  width: 100%;
  height: 130px !important;
  object-fit: contain;
  margin: 0 auto 1rem;
}

.category-title {
  font-size: 22px;
  font-family: 'Poppins' !important;
  font-weight: 600;
  line-height: 26px;
  color: #000 !important;
  margin-bottom: 0.5rem;
}

.category-description {
  color: #292C3F !important;
  font-family: 'Poppins';
  font-size: 15px !important;
  line-height: 22px;
  margin-bottom: 1rem;
}

.category-button {
    background: #27283E !important;
    color: #fff;
    font-family: 'Poppins';
    line-height: 22px;
    padding: 6px 45px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
}
.category-button:hover {
color: #fff !important;
}

.hidden {
  display: none !important;
}

.show-more-wrapper {
  text-align: center;
  margin-top: 100px !important;
}

.show-more-button {
background: #27283E !important;
    color: #fff;
    font-family: 'Poppins' !important;
    font-size: 16px;
    line-height: 22px;
    padding: 10px 60px;
    border-radius: 20px !important;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s ease;
}

.show-more-button:hover {
  background: #ff8c00 !important;
}
