main {
  width: 100%;
}
p {
  margin: 0px;
}
.top-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 30px 0px;
}
.page-title {
  font-size: 24px;
  font-weight: bold;
}
.page-sub-title {
  font-size: 14px;
}
.top-slide-image {
  margin: 20px 0px 0px 0px;
  width: 100%;
  min-height: 300px;
  background-image: linear-gradient(rgba(100, 100, 100, 0.1), rgba(100, 100, 100, 0.1)), url("/assets/images/slide/home-slide.jpg");
  background-position: bottom;
}
.privacy-section {
  padding: 0px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 50px;
}
.privacy-intro {
  width: 100%;
  max-width: 900px;
}
.privacy-intro, .rules-contents {
  font-size: 16px;
  line-height: 30px;
}
.privacy-rules {
  display: flex;
  flex-direction: column;
  gap: 50px;
  width: 100%;
  max-width: 900px;
  margin-bottom: 70px;
}
.rules-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.rules-label {
  font-size: 22px;
  font-weight: bold;
}

@media screen and (max-width: 800px) {
  .rules-label {
    font-size: 18px;
  }
  .rules-contents, .privacy-intro p {
    font-size: 14px;
  }
}