.privacy-policy-page {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.06), transparent 20%),
    linear-gradient(180deg, #0b1020 0%, #070b16 100%);
  color: #fff;
  min-height: 100vh;
}

.privacy-policy-hero {
  position: relative;
  padding: 82px 0 46px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.privacy-policy-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 20%, rgba(255, 255, 255, 0.08), transparent 20%),
    radial-gradient(circle at 25% 30%, rgba(225, 27, 34, 0.08), transparent 18%);
  pointer-events: none;
}

.privacy-policy-hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.privacy-policy-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(225, 27, 34, 0.12);
  border: 1px solid rgba(225, 27, 34, 0.28);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.privacy-policy-hero-content h1 {
  font-size: clamp(34px, 5vw, 60px);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.privacy-policy-hero-content p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

.privacy-policy-content {
  padding: 40px 0 70px;
}

.privacy-policy-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 24px;
  align-items: start;
}

.privacy-policy-card {
  background: linear-gradient(180deg, rgba(17, 22, 36, 0.98), rgba(10, 14, 24, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.sticky-card {
  position: sticky;
  top: 110px;
  padding: 24px 22px;
}

.sticky-card h3 {
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 16px;
}

.sticky-card ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sticky-card a {
  display: block;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  line-height: 1.5;
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.sticky-card a:hover {
  color: #fff;
  transform: translateX(3px);
}

.privacy-policy-main {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.privacy-policy-main .privacy-policy-card {
  padding: 28px 26px;
}

.privacy-policy-main h2 {
  font-size: 24px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 14px;
  color: #fff;
}

.privacy-policy-main p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 14px;
}

.privacy-policy-main p:last-child {
  margin-bottom: 0;
}

@media (max-width: 1024px) {
  .privacy-policy-layout {
    grid-template-columns: 1fr;
  }

  .sticky-card {
    position: static;
  }
}

@media (max-width: 768px) {
  .privacy-policy-hero {
    padding: 64px 0 34px;
  }

  .privacy-policy-content {
    padding: 28px 0 54px;
  }

  .privacy-policy-main .privacy-policy-card,
  .sticky-card {
    padding: 22px 18px;
    border-radius: 20px;
  }

  .privacy-policy-main h2 {
    font-size: 21px;
  }

  .privacy-policy-main p {
    font-size: 15px;
    line-height: 1.7;
  }
}
