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

/* Special layout for the bottom two cards */
.benefits-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin: 40px 0;
}

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

.benefits-cards-bottom-row .benefit-card {
  flex: 1;
  max-width: none;
  width: calc(50% - 12.5px);
}

.benefit-card {
  background-color: var(--light-color);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  padding: 25px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
  border-top: 4px solid var(--primary-color);
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-hover);
}

.benefit-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.benefit-icon {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-right: 12px;
  min-width: 24px;
}

.benefit-description {
  color: var(--dark-gray);
  margin-bottom: 0;
  flex-grow: 1;
}

@media (max-width: 992px) {
  .benefits-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .benefits-cards-bottom-row {
    flex-direction: row;
    flex-wrap: wrap;
  }
  
  .benefits-cards-bottom-row .benefit-card {
    width: calc(50% - 12.5px);
  }
}

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