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

body {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: #0a0a0f;
  color: #e4e4e7;
  line-height: 1.6;
}

.main-content {
  padding: 96px 0 64px;
  min-height: 100vh;
}

.container {
  max-width: 896px;
  margin: 0 auto;
  padding: 0 16px;
}

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

/* Header */
h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #e4e4e7, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.last-updated {
  color: #a1a1aa;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

/* Policy Content */
.policy-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.policy-section {
  background: #18181b;
  border: 1px solid rgba(139, 92, 246, 0.25);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s;
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.05);
}

.policy-section:hover {
  border-color: rgba(139, 92, 246, 0.5);
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.1);
}

.policy-section h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #e4e4e7;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(139, 92, 246, 0.15);
}

.policy-section h3 {
  font-size: 1.125rem;
  font-weight: 500;
  color: #a78bfa;
  margin-bottom: 12px;
  margin-top: 20px;
}

.policy-section h3:first-of-type {
  margin-top: 0;
}

.policy-section p {
  color: #a1a1aa;
  margin-bottom: 12px;
  line-height: 1.7;
}

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

.policy-section li {
  color: #a1a1aa;
  padding: 8px 0 8px 24px;
  position: relative;
  border-bottom: 1px solid rgba(139, 92, 246, 0.1);
}

.policy-section li:last-child {
  border-bottom: none;
}

.policy-section li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #8b5cf6;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
}

/* Back Button */
.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #a78bfa;
  font-size: 0.9375rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  background: rgba(139, 92, 246, 0.08);
  border: 1px solid rgba(139, 92, 246, 0.2);
  text-decoration: none;
  transition: all 0.2s ease;
}

.back-btn:hover {
  background: rgba(139, 92, 246, 0.15);
  border-color: rgba(139, 92, 246, 0.4);
  color: #c4b5fd;
}

/* Contact Email */
.contact-email {
  display: inline-block;
  color: #8b5cf6;
  text-decoration: none;
  padding: 12px 24px;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 8px;
  margin-top: 8px;
  transition: all 0.3s;
}

.contact-email:hover {
  background: rgba(139, 92, 246, 0.2);
  border-color: #8b5cf6;
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
}

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

/* Responsive */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  .policy-section {
    padding: 20px;
  }

  .policy-section h2 {
    font-size: 1.25rem;
  }
}
