  .counter-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .counter {
    background: #fff;
    padding: 20px;
    text-align: center;
    width: 200px;
    transition: transform 0.3s;
  }
  
  .counter:hover {
    transform: translateY(-10px);
  }
  
  .number {
    font-size: 3rem;
    color: #0066ff;
    font-weight: bold;
    margin-top: 15px;
    margin-bottom: 10px;
  }
  
  p {
    margin: 0;
    color: #333;
    font-size: 1rem;
  }
  