.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin: 40px 0;
}

.faq-cards-bottom-row {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 25px;
  margin-top: 10px;
  width: 100%;
}

.faq-cards-bottom-row .feature-item {
  flex: 1;
  max-width: none;
  width: calc(50% - 12.5px);
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .faq-cards-bottom-row {
    flex-direction: column;
    align-items: center;
  }
  
  .faq-cards-bottom-row .feature-item {
    width: 100%;
    max-width: 100%;
  }
}
