main {
  width: 100%;
}
p {
  margin: 0px;
}
.top-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 36px 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;
}
.law-section {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  /* padding: 0px 20px; */
}
.law-wrapper {
  width: 95%;
  max-width: 900px;
  border-top: 1px solid #BABABA;
  margin-bottom: 50px;
}
.law-detail {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 0px;
  border-bottom: 1px solid #BABABA;
}
.law-label {
  width: 30%;
  font-size: 20px;
  font-weight: bold;
}
.law-value {
  width: 70%;
  font-size: 16px;
}



@media screen and (max-width: 800px) {
  .law-detail {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }
  .law-label, .law-value {
    width: 100%;
  }
}