section.page-title{
    padding-top: 80px;
    text-align: center;
}
section.page-title h1{    
    font-size: 32px;    
    font-weight: 800;
    margin: 80px auto 0;
}
section .container{
   width: clamp(320px, 1240px, 100%);
   margin-inline: auto;
   display: flex;
   flex-direction: column;
   gap: 40px;
   padding-top: 80px;
}
.privacy-policy section .container > section h2{
   font-size: 18px;
   margin-bottom: 8px;
}
.privacy-policy ol, .privacy-policy ul {
   display: flex;
   flex-direction: column;
   gap: 8px;
   margin-block: 14px;
}
.privacy-policy ul li ul li{
   list-style: disc;
   margin-left: 32px;
   padding-left: 0;
}
.privacy-policy table, th, td {
   border: 1px solid black; /* Sets a 1px solid black border */
   padding: 8px;
}
.privacy-policy table {
   border-collapse: collapse; /* Collapses adjacent cell borders */
}
.privacy-policy p{
   padding: 8px 0;
}
@media (max-width: 819px){
   section .container{
      padding: 40px 24px;
   }
   section.page-title h1{
      font-size: 28px;
      margin-top: 40px;
   }
   .privacy-policy table, th, td{
      font-size: 14px;
   }
}