/* ================================================
   Privacy Policy Page
   ================================================ */

/* Hero */
.pp-hero {
  position: relative;
  overflow: hidden;
  padding: 6rem 0 4rem;
  background: linear-gradient(135deg, var(--dark) 0%, #1a2a3a 100%);
  text-align: center;
}

.pp-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  pointer-events: none;
}

.pp-hero-orb-1 {
  width: 400px;
  height: 400px;
  background: var(--blue);
  top: -100px;
  left: -100px;
}

.pp-hero-orb-2 {
  width: 300px;
  height: 300px;
  background: var(--yellow);
  bottom: -80px;
  right: -60px;
}

.pp-hero-content h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.pp-hero-content p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

/* Body Section */
.pp-body-section {
  padding: 4rem 0 6rem;
  background: var(--light);
}

.pp-doc-wrap {
  max-width: 800px;
  margin: 0 auto;
}

/* Callout Box */
.pp-callout {
  background: rgba(170, 191, 222, 0.12);
  border: 1px solid rgba(170, 191, 222, 0.35);
  border-left: 4px solid var(--blue);
  border-radius: 10px;
  padding: 1.125rem 1.375rem;
  margin-bottom: 2.5rem;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.65;
}

.pp-callout strong {
  color: var(--dark);
}

/* Each Section */
.pp-section {
  margin-bottom: 2.75rem;
}

.pp-section h2 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--dark);
  border-left: 3px solid var(--yellow);
  padding-left: 0.875rem;
  margin-bottom: 0.875rem;
  line-height: 1.3;
}

.pp-section h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  margin: 1.125rem 0 0.5rem;
}

.pp-section p {
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 0.75rem;
  line-height: 1.72;
}

.pp-section a {
  color: var(--blue);
  text-decoration: underline;
}

.pp-section a:hover {
  color: var(--yellow);
}

.pp-section ul {
  padding-left: 1.25rem;
  margin-bottom: 0.75rem;
}

.pp-section ul li {
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 0.4rem;
  line-height: 1.65;
}

.pp-section code {
  background: rgba(0, 0, 0, 0.06);
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
  font-size: 0.85rem;
  font-family: monospace;
}

/* Tables */
.pp-section table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
  border-radius: 8px;
  overflow: hidden;
}

.pp-section table th {
  background: var(--dark);
  color: var(--white);
  text-align: left;
  padding: 0.625rem 0.875rem;
  font-weight: 600;
  font-size: 0.8rem;
}

.pp-section table td {
  padding: 0.625rem 0.875rem;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  vertical-align: top;
}

.pp-section table tr:nth-child(even) td {
  background: rgba(170, 191, 222, 0.07);
}

/* Contact Block */
.pp-contact-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.375rem 1.5rem;
  margin-top: 0.5rem;
}

.pp-contact-block p {
  margin-bottom: 0.3rem;
}

/* ================================================
   Cookie Consent Banner
   ================================================ */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--dark);
  border-top: 2px solid rgba(170, 191, 222, 0.2);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  animation: cookieSlideUp 0.35s ease;
}

@keyframes cookieSlideUp {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

.cookie-banner-text {
  flex: 1;
  min-width: 200px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.5;
}

.cookie-banner-text a {
  color: var(--yellow);
  text-decoration: underline;
}

.cookie-banner-actions {
  display: flex;
  gap: 0.625rem;
  flex-shrink: 0;
}

.cookie-btn-accept {
  background: var(--yellow);
  color: var(--dark);
  border: none;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.cookie-btn-accept:hover {
  opacity: 0.88;
}

.cookie-btn-decline {
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.85rem;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.2s, color 0.2s;
}

.cookie-btn-decline:hover {
  border-color: rgba(255, 255, 255, 0.45);
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 640px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.875rem;
  }

  .pp-section table {
    font-size: 0.8rem;
  }

  .pp-section table th,
  .pp-section table td {
    padding: 0.5rem 0.625rem;
  }
}
