.stats-section {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 3rem 2rem;
  margin: 0 250px;

  .stat-title {
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: normal;
    font-size: 2rem;
    color: var(--theme-primary-dark);
    text-align: center;
    font-family: 'IBM Plex Sans', sans-serif;
    width: min-content;
  }

  .stat-box {
    background: var(--theme-primary);
    color: var(--theme-black);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    min-width: 120px;

    span {
      font-size: 3rem;
      font-family: var(--font-technomat);
    }
  }
}

@media (max-width: 768px) {
  .stats-section {
    flex-direction: column !important;
    align-items: center;
    margin: 0 50px;
  }
  .stat-box {
    width: 100%;
    max-width: 250px;
  }
}
