@import url("https://fonts.googleapis.com/css2?family=Mada:wght@300..900&display=swap");

:root {
  --bg: #f6f8fb;
  --card: #ffffff;
  --text: #0f172a;
  --muted: #64748b;
  --line: #eeeeee;
  --accent-ink: #0b5bd9;
  --row-hover: #f8fafc;
  --chip: #eef2ff;
  --accent: #4f46e5;
  --accent-hover: #3730a3;
  --accent-light: #f0f0ff;
  --gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Mada", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

body {
  font-family: "Mada", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.privacy-policy {
  padding: 100px 20px;
  background: var(--bg);
}

.privacy-title {
  font-size: 36px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 12px;
  background: var(--gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.privacy-subtitle {
  text-align: center;
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.policy-section {
  background: var(--card);
  padding: 28px;
  border-radius: 14px;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s forwards;
}

.policy-section:nth-child(3) {
  animation-delay: 0.1s;
}
.policy-section:nth-child(4) {
  animation-delay: 0.2s;
}
.policy-section:nth-child(5) {
  animation-delay: 0.3s;
}
.policy-section:nth-child(6) {
  animation-delay: 0.4s;
}
.policy-section:nth-child(7) {
  animation-delay: 0.5s;
}

.policy-section h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--accent);
}

.policy-section p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}

.policy-section a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.policy-section a:hover {
  color: var(--accent-hover);
}

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

/* Responsive */
@media (max-width: 768px) {
  .privacy-title {
    font-size: 28px;
  }

  .policy-section {
    padding: 22px;
  }
}
