/* Base Typography */
body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  background-color: #ffffff;
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

/* Privacy Container */
.container {
  max-width: 700px;
  padding: 40px 20px;
  text-align: left;
}

/* Headings */
h1 {
  font-size: 48px;
  line-height: 56px;
  font-weight: 600;
  color: rgb(41, 41, 41);
  margin-bottom: 20px;
}

h2 {
  font-size: 28px;
  line-height: 36px;
  font-weight: 600;
  color: rgb(41, 41, 41);
  margin-top: 40px;
  margin-bottom: 15px;
}

/* Paragraphs */
p {
  line-height: 1.6;
  margin: 10px 0;
}

/* Lists */
ul {
  padding-left: 20px;
  margin-bottom: 30px;
}

li {
  margin-bottom: 10px;
  line-height: 1.6;
}

/* Back Button */
.go-back {
  position: fixed;
  top: 20px;
  left: 20px;
  background-color: #c7c7c7;
  color: #000;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s;
}

.go-back:hover {
  background-color: #a0a0a0;
}
