html {
  scroll-behavior: smooth;
}

.gradient-text {
  background: linear-gradient(135deg, #6366f1, #8b5cf6, #d946ef);
  background-size: 200% 200%;
  animation: gradient 3s ease infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Responsive Typography and Spacing */
body {
  overflow-x: hidden;
}

main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.prose {
  max-width: none;
}

h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 2rem;
  line-height: 1.2;
}

h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: white;
  line-height: 1.3;
}
.privacy-heading {
  color: #6366f1;
}

h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #f3f4f6;
}

p {
  font-size: 1.125rem;
  line-height: 1.75;
  color: #d1d5db;
  margin-bottom: 1rem;
}

.space-y-8 > * + * {
  margin-top: 2rem;
}

.space-y-8 {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 0.5rem;
}

ul {
  list-style-type: disc;
  padding-left: 2rem;
  margin-left: 1rem;
  padding: 1.5rem 1.5rem 1.5rem 3rem;
  border-radius: 0.5rem;
}

ul li {
  font-size: 1.125rem;
  line-height: 1.75;
  color: #d1d5db;
  margin-bottom: 0.5rem;
}

a {
  color: #818cf8;
  transition: color 0.3s ease;
}

a:hover {
  color: #a5b4fc;
}

strong {
  font-weight: 600;
  color: white;
}

.bg-white\/10 {
  background: rgba(255, 255, 255, 0.1);
}

/* Tablet Devices (768px - 1024px) */
@media (max-width: 1024px) {
  main {
    padding: 3.5rem 1.5rem;
  }

  h1 {
    font-size: 2.25rem;
    margin-bottom: 1.75rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.125rem;
  }

  p,
  ul li {
    font-size: 1.0625rem;
  }

  .space-y-8 {
    padding: 1.75rem;
  }

  ul {
    padding: 1.25rem 1.25rem 1.25rem 2.75rem;
  }
}

/* Mobile Devices (576px - 768px) */
@media (max-width: 768px) {
  body.mt-20 {
    margin-top: 4rem;
  }

  main {
    padding: 2.5rem 1.25rem;
  }

  h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }

  h2 {
    font-size: 1.5rem;
    margin-bottom: 0.875rem;
  }

  h3 {
    font-size: 1.0625rem;
    margin-bottom: 0.625rem;
  }

  p,
  ul li {
    font-size: 1rem;
    line-height: 1.6;
  }

  .space-y-8 {
    padding: 1.5rem;
  }

  .space-y-8 > * + * {
    margin-top: 1.75rem;
  }

  ul {
    padding: 1rem 1rem 1rem 2.25rem;
    margin-left: 0.5rem;
  }

  ul li {
    margin-bottom: 0.625rem;
  }
}

/* Small Mobile Devices (up to 576px) */
@media (max-width: 576px) {
  body.mt-20 {
    margin-top: 3.5rem;
  }

  main {
    padding: 2rem 1rem;
  }

  h1 {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
    line-height: 1.25;
  }

  h2 {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
  }

  h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }

  p,
  ul li {
    font-size: 0.9375rem;
    line-height: 1.6;
  }

  .space-y-8 {
    padding: 1.25rem;
  }

  .space-y-8 > * + * {
    margin-top: 1.5rem;
  }

  ul {
    padding: 0.875rem 0.875rem 0.875rem 2rem;
    margin-left: 0.25rem;
  }

  ul li {
    margin-bottom: 0.5rem;
  }

  .bg-white\/10.p-6 {
    padding: 1.25rem;
  }
}

/* Extra Small Devices (up to 375px) */
@media (max-width: 375px) {
  main {
    padding: 1.5rem 0.75rem;
  }

  h1 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  h2 {
    font-size: 1.25rem;
    margin-bottom: 0.625rem;
  }

  h3 {
    font-size: 0.9375rem;
  }

  p,
  ul li {
    font-size: 0.875rem;
    line-height: 1.5;
  }

  .space-y-8 {
    padding: 1rem;
  }

  ul {
    padding: 0.75rem 0.75rem 0.75rem 1.75rem;
    margin-left: 0;
  }
}

/* Landscape mode adjustments for mobile */
@media (max-height: 600px) and (orientation: landscape) {
  main {
    padding: 2rem 1rem;
  }

  h1 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }

  h2 {
    font-size: 1.375rem;
  }

  .space-y-8 {
    padding: 1rem;
  }
}
