body {
  min-height: 100vh;
  background: linear-gradient(135deg, #e3d7f7 0%, #b7d8f6 50%, #f9d6e5 100%);
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  color: #3a3557;
  margin: 0;
  padding: 0;
}

main {
  padding: 2rem 1rem;
}

section {
  background: rgba(255,255,255,0.85);
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(120, 120, 180, 0.08);
  padding: 2.5rem 2rem;
  margin: 2rem auto;
  max-width: 600px;
}

h1, h2 {
  color: #7b6ee6;
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
}

h1 {
  font-size: 2.3rem;
  margin-bottom: 0.5rem;
}

h2 {
  font-size: 1.3rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

a {
  color: #7b6ee6;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

a:hover {
  color: #f9a8c2;
}

ul {
  padding-left: 1.2rem;
}

li {
  margin-bottom: 0.7rem;
}

button, .button {
  background: linear-gradient(90deg, #b7d8f6 0%, #f9a8c2 100%);
  color: #3a3557;
  border: none;
  border-radius: 16px;
  padding: 0.7rem 1.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(120, 120, 180, 0.08);
  margin-top: 1rem;
  transition: background 0.2s;
}

button:hover, .button:hover {
  background: linear-gradient(90deg, #f9a8c2 0%, #b7d8f6 100%);
}

.privacy-box {
  background: #f9f6fd;
  border-radius: 16px;
  padding: 1.2rem;
  margin: 2rem auto;
  max-width: 500px;
  color: #3a3557;
  box-shadow: 0 2px 8px rgba(120, 120, 180, 0.08);
}

.logo {
  display: block;
  margin: 0 auto 2rem auto;
  max-width: 220px;
  border-radius: 24px;
  box-shadow: 0 2px 12px rgba(120, 120, 180, 0.10);
} 