body {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans TC", "PingFang TC", sans-serif;
}

.counter-section {
  color: white;
  padding: 0px 20px;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 80px;
}

.counter-section2 {
  color: white;
  padding: 30px 20px 60px 20px;
}

.counter-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.counter-number {
  font-size: 69px;
  font-weight: 700;
}

.counter-label {
  margin-top: 10px;
  font-size: 24px;
  opacity: 0.9;
}

.title{
font-size: 40px;
  color: white;
  font-weight: 700;
    display: flex;
    text-align: center;
    justify-content: center;
      line-height: 0.8;



}
/* RWD */
@media (max-width: 768px) {
  .counter-section {
    flex-direction: column;
    gap: 40px;
  }

  .counter-number {
    font-size: 48px;
  }
}

