
```
```css
/* Privacy Policy Styles */
body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #1e293b;
  margin: 0;
  padding: 0;
}

/* Header */
header {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1rem;
  transition: background 0.3s ease;
}

header a {
  text-decoration: none;
  color: #4f46e5;
  transition: color 0.2s ease;
}

header a:hover {
  color: #3b82f5;
}

/* Main Content */
main {
  padding: 2rem 2rem 0;
  max-width: 1200px;
  margin: 0 auto;
}

/* Hero Section */
.hero {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 2rem;
  padding: 2rem;
  margin-bottom: 2rem;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px rgba(99, 110, 255, 0.1);
}

.hero h1 {
  background: linear-gradient(90deg, #6366f1, #7c38dd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Sections */
.section {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 2rem;
  padding: 2rem;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px rgba(99, 110, 255, 0.05);
  border: 1px solid rgba(31, 41, 55, 0.1);
}

.section h2 {
  background: linear-gradient(90deg, #6366f1, #7c38dd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* List Items */
.section ul {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.section ul li {
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  position: relative;
  font-size: 0.95rem;
  color: #4b5563;
}

/* Buttons */
.btn {
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 1rem;
  transition: all 0.2s ease-in-out;
}

.btn-primary {
  background: #3b82f5;
  color: #ffffff;
  border: none;
}

.btn-primary:hover {
  background: #2563eb;
  transform: translateY(-1px);
}

/* Footer */
footer {
  background: linear-gradient(180deg, #3b82f5, #6366f1);
  color: #ffffff;
  padding: 2rem;
  margin-top: 2rem;
  border-radius: 2rem;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.1);
}

.footer-links a {
  color: #ffffff;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.footer-links a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* Social Icons */
.social-icons svg {
  width: 2rem;
  height: 2rem;
  margin-right: 1rem;
  transition: all 0.2s ease;
  background: #ffffff20;
  border-radius: 9999px;
  padding: 0.5rem;
}

.social-icons svg:hover {
  background: #ffffff30;
}

/* Responsive Design */
@media (max-width: 768px) {
  main {
    padding: 1rem;
  }
}
```