/* ============================================================
   PRIVACY POLICY PAGE
   ============================================================ */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Lexend Zetta', sans-serif;
  background: #f5f5f7;
  color: #1a1a2e;
  line-height: 1.7;
  min-height: 100vh;
}

/* ── Header ── */

.header {
  background: #1a1a2e;
  color: #ffffff;
  text-align: center;
  padding: 3rem 1.5rem 2.5rem;
}

.header h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  font-weight: 700;
  letter-spacing: 0.03em;
}

/* ── Main Container ── */

.policy-container {
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 3rem) clamp(1rem, 3vw, 2rem);
}

.policy-container p {
  font-size: clamp(0.85rem, 1.8vw, 0.95rem);
  margin-bottom: 1rem;
  color: #333;
}

/* ── Effective Date ── */

.effective-date {
  font-size: clamp(0.78rem, 1.6vw, 0.88rem);
  color: #666;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #ddd;
}

/* ── Sections ── */

.policy-container section {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e8e8e8;
}

.policy-container section:last-of-type {
  border-bottom: none;
}

.policy-container h2 {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  color: #1a1a2e;
  margin-bottom: 0.75rem;
  padding-left: 12px;
  border-left: 3px solid #3b4cca;
}

.policy-container h3 {
  font-size: clamp(0.9rem, 2vw, 1rem);
  color: #444;
  margin: 1rem 0 0.5rem;
}

/* ── Lists ── */

.policy-container ul {
  list-style: none;
  padding-left: 0;
}

.policy-container ul li {
  font-size: clamp(0.82rem, 1.6vw, 0.9rem);
  color: #444;
  padding: 0.35rem 0 0.35rem 1.4rem;
  position: relative;
}

.policy-container ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #3b4cca;
  font-weight: 700;
}

/* ── Back to Home Button ── */

.back-home-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 1.5rem auto 0;
  padding: 0.7rem 1.8rem;
  font-family: 'Lexend Zetta', sans-serif;
  font-size: clamp(0.78rem, 1.6vw, 0.88rem);
  font-weight: 600;
  color: #fff;
  background: #1a1a2e;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
}

.back-home-btn:hover {
  background: #3b4cca;
  transform: translateY(-1px);
}

.back-home-btn:active {
  transform: translateY(0);
}

.back-home-btn .arrow {
  font-size: 1.1em;
  transition: transform 0.2s ease;
}

.back-home-btn:hover .arrow {
  transform: translateX(-3px);
}

/* ── Fade In Animation ── */

.fadeIn {
  animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Responsive ── */

@media (max-width: 480px) {
  .header {
    padding: 2rem 1rem 1.5rem;
  }

  .policy-container ul li {
    padding-left: 1.2rem;
  }

  .back-home-btn {
    width: 100%;
    justify-content: center;
  }
}
