
.stats-container_1 {
      display: flex;
      gap: 4rem;
      text-align: center;
      backdrop-filter: blur(10px);
      background: rgba(245, 245, 245, 0.8);
      padding: 2rem 4rem;
      border-radius: 20px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      animation: fadeIn 1s ease-in-out;
	  display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
	  gap: 10rem;
    }

    .stat {
      text-align: center;
    }

	  .stat-number {
	  font-family: 'Roboto Mono', monospace;
	  min-width: 130px;
	  display: inline-block;
	  font-size: 6rem;
	  font-weight: bold;
	  margin-bottom: 1rem;
	  text-align: center;
	}
	
	.stat-number .number {
	color: #F57A0F;
	}

	.stat-number .plus {
	color: #1E74BB;
	}

    .stat-label {
      font-size: 1.5rem;
      color: #333;
	  
    }

    @media (max-width: 768px) {
      .stats-container_1 {
        flex-direction: column;
        gap: 2rem;
      }
    }