.faq-categories-section {
  background: #ffffff;
  padding: 6rem 2rem;
  margin-bottom: 2rem;
}

.categories-heading {
  font-size: 3.2rem;
  font-weight: bold;
  color: #111;
  text-align: center;
  margin-bottom: 4rem;
  line-height: 1.2;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(35rem, 1fr));
  gap: 3rem;
  max-width: 120rem;
  margin: 0 auto;
}

.category-card {
  background: #f5f5f5;
  padding: 3rem;
  border-radius: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  min-height: 25rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.category-card:hover {
  background: #ffffff;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
  border-color: #111;
  transform: translateY(-0.5rem);
}

.category-icon, .category-fa-icon {
  font-size: 4rem;
  color: #111;
  margin-bottom: 2rem;
  display: block;
}

.category-text h3 {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: #111;
  line-height: 1.3;
}

.category-text p {
  font-size: 1.6rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.question-count {
  display: inline-block;
  background: #111;
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 2rem;
  font-size: 1.4rem;
  font-weight: 600;
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .faq-categories-section {
    padding: 4rem 1.5rem;
  }
  
  .categories-heading {
    font-size: 2.8rem;
    margin-bottom: 3rem;
  }
  
  .categories-grid {
    grid-template-columns: repeat(auto-fit, minmax(28rem, 1fr));
    gap: 2rem;
  }
  
  .category-card {
    padding: 2.5rem;
    min-height: 22rem;
  }
  
  .category-text h3 {
    font-size: 2rem;
  }
  
  .category-text p {
    font-size: 1.6rem;
  }
}

@media (max-width: 468px) {
  .faq-categories-section {
    padding: 3rem 1rem;
  }
  
  .categories-heading {
    font-size: 2.4rem;
    margin-bottom: 2rem;
  }
  
  .categories-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .category-card {
    padding: 2rem;
    min-height: 20rem;
  }
  
  .category-text h3 {
    font-size: 1.8rem;
  }
  
  .category-text p {
    font-size: 1.6rem;
  }
  
  .question-count {
    font-size: 1.4rem;
  }
}
