* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background: #f5f7fc;
  color: #444;
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
}

.privacy-policy-page {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 100vh;
  padding: 20px;
}

@media (min-width: 768px) {
  .privacy-policy-page {
    display: grid;
    grid-template-columns: 2fr 4fr 1fr;
    gap: 20px;
    padding: 100px 80px;
  }
}

.logo-column {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  order: 1;
  padding-top: 20px;
}

@media (min-width: 768px) {
  .logo-column {
    order: 0;
  }
}

.logo-link {
  color: #111420;
  font-family: "Space Grotesk", "Avenir Next", "Segoe UI", sans-serif;
  font-size: 2rem;
  letter-spacing: -0.05em;
  text-decoration: none;
}

.logo-link sup {
  margin-left: 0.08em;
  font-size: 0.45em;
  color: rgba(17, 20, 32, 0.45);
  vertical-align: top;
}

.text-column {
  order: 0;
  padding: 15px;
  color: #444;
}

@media (min-width: 768px) {
  .text-column {
    padding: 20px;
  }
}

.text-column ::selection {
  background: #bfbaff;
  color: #1a1a1a;
}

.text-column h1 {
  margin: 0 0 10px;
  color: #1a1a1a;
  font-size: 2rem;
  font-weight: 800;
}

@media (min-width: 768px) {
  .text-column h1 {
    font-size: 3rem;
  }
}

.text-column h2 {
  margin-top: 20px;
  color: #2d2d2d;
  font-size: 1.25rem;
}

@media (min-width: 768px) {
  .text-column h2 {
    font-size: 1.5rem;
  }
}

.text-column h3 {
  margin-top: 15px;
  color: #444;
  font-size: 1.1rem;
}

@media (min-width: 768px) {
  .text-column h3 {
    font-size: 1.2rem;
  }
}

.text-column p {
  margin-bottom: 15px;
  color: #555;
  font-size: 0.9rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .text-column p {
    font-size: 1rem;
    line-height: 1.5;
  }
}

.text-column ul {
  margin-bottom: 15px;
  padding-left: 1.2rem;
  color: inherit;
  list-style-type: disc;
}

@media (min-width: 768px) {
  .text-column ul {
    padding-left: 1.5rem;
  }
}

.text-column li {
  margin-bottom: 0.5rem;
  color: inherit;
  font-size: 0.9rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .text-column li {
    font-size: 1rem;
    line-height: 1.5;
  }
}

.empty-column {
  display: none;
}

@media (min-width: 768px) {
  .empty-column {
    display: block;
    width: 300px;
  }
}
