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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body{
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  color: #333;
  line-height: 1.6;
}

.privacy-container {
  display: flex;
  flex-direction: row;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  background-color: #fff;
  margin-top: 85px;
  margin-bottom: 5rem;
}

/* Sidebar (Table of Contents) */
.toc{
  flex: 0 0 250px;
  margin-right: 20px;
  padding: 15px;
  background-color: #f9f9f9;
  border-right: 1px solid #ddd;
  position: sticky;
  top: 60px;
  height: fit-content;
}

.toc h3{
  font-size: 2.5em;
  margin-bottom: 10px;
  color:  #444;
  font-weight: bold;
}

.toc> .under-list {
  list-style: none;
  padding: 0;
}

.toc >.under-list >li {
  margin-bottom: 10px;
}

.toc >.under-list>li a {
  text-decoration: none;
  color: #1a73e8;
  font-size: 1.1em;
}

.toc >.under-list >li a:hover{
  text-decoration: underline;
}

/* Main content */
.content{
  flex: 1;
}

header h1{
  font-size: 4em;
  margin-bottom: 10px;
  color: #333;
  font-weight: bold;
}

header p{
  font-size: 1.9em;
  color: #666;
  margin-bottom: 30px;
}

.section{
  margin-bottom: 30px;
}

.section p {
  font-size: 1.8em;
}

h2 {
  font-size: 2.8em;
  color: #444;
  margin-bottom: 15px;
  font-weight: bold;
}

 .under-list{
  list-style-type: none;
  padding-left: 20px;
  font-size: 1.5em;
}

.under-list li {
  font-size: 1.1em;
  margin-bottom: 10px;
}

.under-list li a {
  color: #1a73e8;
  text-decoration: none;
}

.under-list li a:hover {
  text-decoration: underline;
}

/* Media Queries for Responsiveness */
@media screen and (max-width: 768px) {
  .container{
    flex-direction: column;
  }

  .toc {
    flex: none;
    margin-bottom: 20px;
    border-right: none;
  }

  .toc h3 {
    font-size: 1.3em;
  }

  .content {
    flex: none;
  }
}
