/* ========================================
   NASEER STATIONER – Privacy Policy
   Color palette extracted from app logo:
   - Primary Blue:    #2556B2
   - Deep Navy:       #1A2E5A
   - Accent Purple:   #6A3CE0
   - Light Lavender:  #EDE8F8
   - Warm Yellow:     #F3C52A
   - Soft Green:      #5BCB4B
   - Background:      #F5F6FA
   - Card White:      #FFFFFF
   ======================================== */

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: #F5F6FA;
  color: #2D3348;
  line-height: 1.75;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ---------- Header ---------- */
.pp-header {
  background: linear-gradient(135deg, #1A2E5A 0%, #2556B2 55%, #6A3CE0 100%);
  padding: 56px 24px 52px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pp-header::before {
  content: '';
  position: absolute;
  top: -60%;
  left: -20%;
  width: 140%;
  height: 200%;
  background: radial-gradient(ellipse at 30% 20%, rgba(255,255,255,0.07) 0%, transparent 60%);
  pointer-events: none;
}

.pp-header-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.pp-logo {
  width: 96px;
  height: 96px;
  border-radius: 22px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  margin-bottom: 20px;
  object-fit: cover;
  background: #fff;
}

.pp-app-name {
  font-size: 1.35rem;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: 0.3px;
  margin-bottom: 6px;
  opacity: 0.95;
}

.pp-page-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}

.pp-effective-date {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.72);
  font-weight: 400;
}

/* ---------- Main Content ---------- */
.pp-main {
  max-width: 780px;
  margin: 0 auto;
  padding: 40px 24px 60px;
}

/* Section block */
.pp-section {
  background: #FFFFFF;
  border-radius: 14px;
  padding: 36px 36px 32px;
  margin-bottom: 24px;
  box-shadow: 0 2px 12px rgba(37, 86, 178, 0.06);
  border: 1px solid rgba(37, 86, 178, 0.07);
  transition: box-shadow 0.25s ease;
}

.pp-section:hover {
  box-shadow: 0 4px 20px rgba(37, 86, 178, 0.10);
}

/* Intro section (no heading, just paragraph) */
.pp-section--intro {
  border-left: 4px solid #2556B2;
  background: linear-gradient(to right, #f0f3fb, #ffffff 40%);
}

.pp-section--intro p {
  font-size: 1.02rem;
  color: #3A4060;
}

/* Section heading */
.pp-section__heading {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1A2E5A;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid #EDE8F8;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.35;
}

.pp-section__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 9px;
  background: linear-gradient(135deg, #2556B2, #6A3CE0);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.2px;
}

/* Section text */
.pp-section p {
  font-size: 0.98rem;
  color: #3E4463;
  margin-bottom: 12px;
  line-height: 1.78;
}

.pp-section p:last-child {
  margin-bottom: 0;
}

/* Bullet / item lists */
.pp-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 4px;
}

.pp-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 9px;
  font-size: 0.96rem;
  color: #3E4463;
  line-height: 1.65;
}

.pp-list li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2556B2, #7B4CF5);
}

/* Contact section special */
.pp-contact-detail {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 8px;
}

.pp-contact-detail span {
  font-size: 0.96rem;
  color: #3E4463;
}

.pp-contact-detail strong {
  color: #1A2E5A;
}

.pp-contact-detail a {
  color: #2556B2;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.pp-contact-detail a:hover {
  color: #6A3CE0;
  text-decoration: underline;
}

/* ---------- Divider between sections ---------- */
.pp-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(106, 60, 224, 0.12), transparent);
  margin: 0 0 24px;
  border: none;
}

/* ---------- Footer ---------- */
.pp-footer {
  background: #1A2E5A;
  color: rgba(255,255,255,0.7);
  text-align: center;
  padding: 36px 24px;
  font-size: 0.88rem;
  line-height: 1.8;
}

.pp-footer strong {
  color: #FFFFFF;
  font-weight: 600;
}

.pp-footer a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 0.2s;
}

.pp-footer a:hover {
  color: #F3C52A;
  text-decoration: underline;
}

.pp-footer__divider {
  width: 40px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, #2556B2, #6A3CE0);
  margin: 14px auto;
}

/* ---------- Back-to-Top Button ---------- */
.pp-back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2556B2, #6A3CE0);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 86, 178, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, box-shadow 0.2s ease;
  z-index: 100;
}

.pp-back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.pp-back-to-top:hover {
  box-shadow: 0 6px 24px rgba(106, 60, 224, 0.4);
}

.pp-back-to-top:active {
  transform: scale(0.93);
}

/* ---------- Consent section accent ---------- */
.pp-section--consent {
  border-left: 4px solid #6A3CE0;
  background: linear-gradient(to right, #f5f1fc, #ffffff 40%);
}

/* ---------- Responsive ---------- */
@media (max-width: 640px) {
  .pp-header {
    padding: 40px 18px 38px;
  }

  .pp-logo {
    width: 76px;
    height: 76px;
    border-radius: 18px;
  }

  .pp-app-name {
    font-size: 1.12rem;
  }

  .pp-page-title {
    font-size: 1.7rem;
  }

  .pp-main {
    padding: 24px 10px 40px;
  }

  .pp-section {
    padding: 26px 22px 24px;
    border-radius: 12px;
  }

  .pp-section__heading {
    font-size: 1.14rem;
  }

  .pp-section__number {
    width: 30px;
    height: 30px;
    min-width: 30px;
    font-size: 0.76rem;
  }

  .pp-back-to-top {
    bottom: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 400px) {
  .pp-page-title {
    font-size: 1.45rem;
  }

  .pp-section {
    padding: 22px 16px 20px;
  }

  .pp-section__heading {
    font-size: 1.05rem;
    gap: 8px;
  }
}
