html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  background: linear-gradient(120deg, #5990eb 0%, #8a61db 100%);
  box-sizing: border-box;
  overflow-x: hidden; /* Prevent horizontal scroll */
}

body {
  min-height: 100vh;
  display: block; /* Use block to ensure content starts from the top */
  padding: 20px;
  box-sizing: border-box;
  overflow-y: auto; /* Allow vertical scrolling */
}

.container {
  background: rgba(255,255,255,0.93);
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(90,120,200,0.11);
  padding: 40px 26px 32px 26px;
  max-width: 900px;
  width: 100%;
  text-align: center;
  color: #23224d;
  box-sizing: border-box;
  margin: 0 auto; /* Center horizontally */
}

h1 {
  color: #4b38db;
  margin-bottom: 20px;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -1px;
}

h2 {
  color: #33335d;
  font-size: 1.17rem;
  font-weight: 700;
  margin-bottom: 20px;
  margin-top: 14px;
}

a {
  color: #24c96b;
  font-weight: 500;
  text-decoration: underline;
  word-break: break-all;
  font-size: 1.07em;
}

p {
  font-size: 1.14em;
  margin-bottom: 18px;
  margin-top: 0;
}

ul {
  text-align: left;
  margin-top: 14px;
  margin-bottom: 18px;
  padding-left: 20px; /* Add padding for list readability */
}

.small {
  font-size: 0.97em;
  color: #5a5cb8;
  margin-top: 0;
}

@media (max-width: 700px) {
  .container { padding: 16px 4vw; max-width: 98vw; }
  h1 { font-size: 1.4em; }
  h2 { font-size: 1.07em; }
  p { font-size: 1em; }
}

@media (max-width: 420px) {
  h1, h2 { font-size: 1.08em; }
  .container { padding: 7vw 1vw; }
}
