.stats {
  padding: 30px 0;
  background: var(--primary-color);
  margin-bottom: 0px;
}
.stats .stats-title {
  font-size: 60px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 12px;
  line-height: 62px;
  max-width: 800px;
  justify-self: center;
}
.stats .stats-description {
  text-align: center;
  max-width: 700px;
  margin-bottom: 24px;
  justify-self: center;
  font-size: 18px;
  line-height: 1.5;
}
.stats .stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 700px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .stats .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.stats .stat-item {
  background: var(--color-white);
  border-radius: 10px;
  padding: 24px;
  text-align: center;
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.stats .stat-item:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}
.stats .stat-item .stat-number {
  font-size: 31px;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 14px;
}
.stats .stat-item .stat-text {
  font-size: 16px;
  line-height: 1.4;
}