:root {
  --privacy-bg: #f8fafc;
  --privacy-text: #1e293b;
  --privacy-muted: #64748b;
  --privacy-accent: #6b21e8;
  --privacy-card-bg: #ffffff;
  --privacy-border: #e2e8f0;
}

.privacy-hero {
  background: radial-gradient(circle at top right, rgba(107, 33, 232, 0.05), transparent),
              radial-gradient(circle at bottom left, rgba(6, 182, 212, 0.05), transparent);
  padding: 120px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.privacy-hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 16px;
  color: #0f172a;
}

.privacy-last-updated {
  font-size: 0.95rem;
  color: var(--privacy-muted);
  font-weight: 500;
}

.privacy-content-section {
  padding: 80px 0;
  background-color: var(--privacy-bg);
}

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

.privacy-card {
  background: var(--privacy-card-bg);
  border-radius: 24px;
  padding: 60px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 10px 15px -3px rgba(0, 0, 0, 0.02);
  border: 1px solid var(--privacy-border);
}

.privacy-body {
  color: var(--privacy-text);
  line-height: 1.8;
  font-size: 1.1rem;
}

.privacy-body h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 40px 0 20px;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 12px;
}

.privacy-body h2::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 24px;
  background: var(--privacy-accent);
  border-radius: 2px;
}

.privacy-body h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 24px 0 12px;
  color: #1e293b;
}

.privacy-body p {
  margin-bottom: 20px;
}

.privacy-body ul {
  margin-bottom: 24px;
  padding-left: 20px;
}

.privacy-body li {
  margin-bottom: 12px;
  list-style-type: none;
  position: relative;
  padding-left: 24px;
}

.privacy-body li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--privacy-accent);
  font-weight: bold;
}

.privacy-highlight-box {
  background: rgba(107, 33, 232, 0.03);
  border-left: 4px solid var(--privacy-accent);
  padding: 24px;
  border-radius: 0 12px 12px 0;
  margin: 32px 0;
}

.privacy-contact-info {
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--privacy-border);
}

.privacy-contact-info h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--privacy-muted);
}

.contact-detail {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.contact-label {
  font-weight: 600;
  min-width: 80px;
}

.contact-value {
  color: var(--privacy-accent);
  text-decoration: none;
  font-weight: 500;
}

@media (max-width: 768px) {
  .privacy-card {
    padding: 32px 24px;
    border-radius: 16px;
  }
  
  .privacy-hero {
    padding: 100px 0 40px;
  }
  
  .privacy-body h2 {
    font-size: 1.5rem;
  }
}
