.exp2023_stats_section {
    padding: 80px 20px;
    background-color: rgba(246, 249, 252, 1);
    margin: 0px 20px;
    border-radius: 40px;
  }
  
  .exp2023_container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .exp2023_content_wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
  }
  
  .exp2023_text_column {
    flex: 0 1 50%;
  }
  
  .exp2023_heading {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
  }
  
  .exp2023_subtitle {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    max-width: 400px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
  }
  
  .exp2023_stats_column {
    flex: 0 1 50%;
    display: flex;
    justify-content: start;
    gap: 48px;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
  }
  
  .exp2023_stat_item {
    text-align: left;
  }
  
  .exp2023_stat_number {
    font-size: 4rem;
    font-weight: 700;
    color: #00A0FA;
    margin: 0 0 8px 0;
  }
  
  .exp2023_stat_label {
    font-size: 0.875rem;
    color: #666;
    margin: 0;
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @media (max-width: 768px) {

    .exp2023_stats_section {
        margin: 0px;
        border-radius: 2px;
      }

    .exp2023_content_wrapper {
      flex-direction: column;
    }
    
    .exp2023_stats_column {
      flex-direction: column;
      gap: 32px;
      width: 100%;
    }
    
    .exp2023_text_column,
    .exp2023_stats_column {
      flex: 0 1 100%;
    }
  }