* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: 'Product Sans';
  src: url('fonts/ProductSans-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Product Sans';
  src: url('fonts/ProductSans-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'KohSantepheap';
  src: url('fonts/KohSantepheap-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'KohSantepheap';
  src: url('fonts/KohSantepheap-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

body {
  font-family: 'Product Sans', 'KohSantepheap', sans-serif !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Product Sans', 'KohSantepheap', sans-serif !important;
  font-weight: 700;
}

p {
  font-family: 'Product Sans', 'KohSantepheap', sans-serif !important;
  font-weight: 400;
}
  

.privacy-container {
  margin-bottom: 1rem;
}

.title {
  font-size: 20px;
}

.subtitle {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 4px;
}

ul li {
  margin-top: 4px;
  list-style-type: disc;
  margin-left: 16px;
  margin-bottom: 4px;
}

.ul li:last-child {
  margin-bottom: 0;
}

ul li span {
  font-weight: bold;
}

.w-default {
  padding: 1rem;
  margin: 10 auto;
}

.space-y-2 > * + * {
  margin-top: 0.5rem;
}