.privacy-page {
  width: 100%;
  padding: 90px 64px 80px;
  position: relative;
  z-index: 2;
}

.privacy-hero {
  max-width: 1100px;
  margin: 0 auto 48px;
  text-align: center;
}

.privacy-badge {
  width: fit-content;
  margin: 0 auto 20px;
  padding: 11px 18px;
  border-radius: 999px;
  background: rgba(123,44,255,0.12);
  border: 1px solid rgba(123,44,255,0.22);
  color: #c084fc;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
}

.privacy-hero h1 {
  font-size: 72px;
  line-height: 1.05;
  font-weight: 850;
  letter-spacing: -3px;
  margin-bottom: 18px;
}

.privacy-hero h1 span {
  background: linear-gradient(135deg, #a855f7, #7b2cff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.privacy-hero p {
  color: rgba(255,255,255,0.65);
  font-size: 20px;
  line-height: 1.7;
}

.privacy-card {
  max-width: 1180px;
  margin: 0 auto;
  padding: 42px;
  border-radius: 32px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(24px);
  box-shadow: 0 25px 90px rgba(123,44,255,0.08);
}

.privacy-section {
  padding: 26px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.privacy-section:first-child {
  padding-top: 0;
}

.privacy-section:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.privacy-section h2 {
  color: white;
  font-size: 26px;
  margin-bottom: 14px;
}

.privacy-section p {
  color: rgba(255,255,255,0.68);
  font-size: 17px;
  line-height: 1.9;
}

.footer {
  margin-top: 90px;
}

@media (max-width: 850px) {

  .privacy-page {
    padding: 60px 22px 60px;
  }

  .privacy-hero h1 {
    font-size: 48px;
  }

  .privacy-hero p {
    font-size: 17px;
  }

  .privacy-card {
    padding: 28px;
    border-radius: 26px;
  }

  .privacy-section h2 {
    font-size: 22px;
  }

  .privacy-section p {
    font-size: 15px;
  }

}