  .card-feature {
      box-shadow: 0 4px 10px rgb(0 0 0 / 0.05);
      padding: 2rem;
      background: white;
      transition: transform 0.3s ease;
      height: 100%;
    }
    .card-feature:hover {
      transform: translateY(-6px);
      box-shadow: 0 10px 20px rgb(0 0 0 / 0.1);
    }
   
    @media (max-width: 767.98px) {
      .feature-row {
        row-gap: 2rem;
      }
    }