.rows {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 30px;
  }
  .service {
    text-align: center;
    padding: 25px 10px;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    background: transparent;
    transition: transform 0.5s, background 0.5s;
    border: 1px solid #a11b34;
  }
  
  .service i {
    font-size: 40px;
    margin-bottom: 10px;
    color: #a11b34;
  }
  
  .service h2 {
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 20px;
  }
  
  .service:hover {
    background: #a11b34;
    color: #fff;
    transform: scale(1.05);
  }
  
  .service:hover h2 {
    color: #fff;
  }
  .service:hover p {
    color: #fff;
  }
  .service:hover i {
    color: #fff;
  }