.statistics {
  background-image: url(../images/statistics_img.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: #1B1AFF99;
  background-blend-mode: overlay;
  height: 398px;
  color: #fff;
  text-align: center;
  margin-bottom: 98px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.inner_statistics {
  display: flex;
  align-items: start;
  justify-content: space-around;
  flex-wrap: wrap;
}
.statistics h1 {
  font-size: 64px;
  margin-bottom: 30px;
  line-height: 81px;
}

.statistics p {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 32px;
  max-width: 200px;
  width: 100%;
}

@media (max-width: 480px) {
  .statistics {
    height: auto;
    margin-bottom: 80px;
  }

  .statistics h1 {
    font-size: 36px;
    line-height: 48px;
    margin-bottom: 20px;
  }

  .statistics p {
    font-size: 18px;
    max-width: 150px;
    margin: 10px auto;
  }

  .inner_statistics {
    flex-direction: column;
    align-items: center;
  }

  .inner_statistics div {
    margin: 20px 0;
  }
}

@media (min-width: 481px) and (max-width: 768px) {
  .statistics {
    height: auto; /* Allow height to adapt */
    margin-bottom: 100px;
  }

  .statistics h1 {
    font-size: 48px;
    line-height: 60px;
    margin-bottom: 25px;
  }

  .statistics p {
    font-size: 24px;
    max-width: 180px;
    margin: 15px auto;
  }

  .inner_statistics {
    justify-content: center;
  }

  .inner_statistics div {
    max-width: 250px;
    width: 100%;
    margin: 20px 0;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .statistics {
    height: 380px;
    margin-bottom: 110px;
  }

  .statistics h1 {
    font-size: 54px;
    line-height: 70px;
  }

  .statistics p {
    font-size: 28px;
    max-width: 180px;
  }

  .inner_statistics {
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
