.privacy-page {
  padding: 80px 0 100px;
  position: relative;
  min-height: 100vh;
}
.privacy-page::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #0B0E11;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.16) 1.5px, transparent 1.5px);
  background-size: 22px 22px;
  z-index: -2;
  pointer-events: none;
}
.privacy-page::after {
  content: '';
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  max-width: 800px;
  height: 120vh;
  max-height: 900px;
  background: radial-gradient(ellipse at center, rgba(111, 66, 193, 0.07) 0%, rgba(59, 130, 246, 0.04) 40%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}
.privacy-page .privacy-header {
  text-align: center;
  margin-bottom: 56px;
}
.privacy-page .privacy-header h1 {
  font-family: 'Google Sans Flex', var(--font-sans), sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  padding-top: 120px;
}
.privacy-page .privacy-header .meta {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
}
.privacy-page .privacy-header .meta span {
  margin: 0 8px;
}
.privacy-card {
  background: rgba(255, 255, 255, 0.06);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 48px 52px;
  max-width: 860px;
  margin: 0 auto;
}
.privacy-card section {
  margin-bottom: 40px;
}
.privacy-card section:last-child {
  margin-bottom: 0;
}
.privacy-card h2 {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.privacy-card p {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  line-height: 1.75;
  margin-bottom: 10px;
}
.privacy-card ul {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  line-height: 1.75;
  padding-left: 20px;
  margin-bottom: 10px;
}
.privacy-card ul li {
  margin-bottom: 4px;
}
.privacy-card table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.privacy-card table th {
  background: rgba(255,255,255,0.07);
  color: #fff;
  font-weight: 600;
  padding: 10px 14px;
  text-align: left;
  border: 1px solid rgba(255,255,255,0.1);
}
.privacy-card table td {
  color: rgba(255,255,255,0.7);
  padding: 9px 14px;
  border: 1px solid rgba(255,255,255,0.08);
}
.privacy-card .company-info {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  padding: 18px 22px;
  margin-bottom: 18px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
}
.privacy-card .company-info strong {
  color: #fff;
  display: block;
  font-size: 15px;
  margin-bottom: 6px;
}
@media (max-width: 640px) {
  .privacy-card {
    padding: 28px 20px;
  }
  .privacy-page .privacy-header h1 {
    padding-top: 50px;
  }
}
