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

body {
  background: #000;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  padding: 24px 32px;
}

header img {
  height: 40px;
}

main {
  flex: 1;
  padding: 0 16px 40px;
}

.content {
  background: #fff;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 12px;
  padding: 48px;
}

.content h1 {
  color: #111;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 32px;
}

.content h2 {
  color: #222;
  font-size: 20px;
  font-weight: 600;
  margin-top: 32px;
  margin-bottom: 12px;
}

.content p {
  color: #333;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.content ul {
  color: #333;
  font-size: 16px;
  line-height: 1.7;
  padding-left: 24px;
  margin-bottom: 16px;
}

.content li {
  margin-bottom: 8px;
}

.content strong {
  color: #111;
}

footer {
  text-align: center;
  padding: 32px;
  color: #666;
  font-size: 14px;
}

footer a {
  color: #9F00FC;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  header {
    padding: 16px 20px;
  }

  .content {
    padding: 24px;
    border-radius: 8px;
  }

  .content h1 {
    font-size: 22px;
  }

  .content h2 {
    font-size: 18px;
  }
}
