.stats-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 80px;
    color: rgb(0, 0, 0);
  }
  
  .stat-item {
    text-align: center;
  }
  
  .stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 8px;
  }
  
  .stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .stats-container {
      flex-direction: column;
      padding: 20px;
      gap: 20px;
    }
    
    .stat-number {
      font-size: 2.5rem;
    }
  }
