body {
  background: #101b32;
  color: #e5ecff;
  font-family: 'Poppins', Arial, sans-serif;
  margin: 0;
  min-height: 100vh;
}
.section-container {
  background: #161f36;
  max-width: 860px;
  margin: 48px auto 48px auto;
  padding: 44px 30px;
  border-radius: 22px;
  box-shadow: 0 8px 44px #0005;
}
h1, h2 {
  color: #e6ff2e;
  font-weight: 700;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.1rem;
  text-align: center;
  margin-bottom: 28px;
  letter-spacing: 0.01em;
}
h2 {
  font-size: 1.27rem;
  margin-top: 34px;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 18px;
  color: #f7f9ff;
}
a {
  color: #ffcc1e;
  text-decoration: underline;
  transition: color 0.18s;
}
a:hover {
  color: #a3ff19;
}
p {
  line-height: 1.7;
  margin-bottom: 16px;
}
.section-container > p:last-child {
  margin-bottom: 0;
}
@media (max-width: 700px) {
  .section-container {
    padding: 22px 7vw;
  }
  h1 { font-size: 1.3rem; }
  h2 { font-size: 1.05rem; }
}
::-webkit-scrollbar {
  width: 10px;
  background: #101b32;
}
::-webkit-scrollbar-thumb {
  background: #192040;
  border-radius: 6px;
}
