/* Reset and fonts */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f8f9ff;
  color: #333;
  line-height: 1.6;
}

/* Header */
.top-bar {
  background-color: #410093;
  padding: 15px 30px;
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  height: 34px;
}
.help-button {
  background: white;
  color: #410093;
  font-weight: bold;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}
.help-button:hover {
  background: #e0e0ff;
}

/* Content Area */
.container {
  max-width: 900px;
  background: #fff;
  margin: 40px auto;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.intro {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
  text-align: center;
}
h1 {
  font-size: 26px;
  color: #410093;
  margin-bottom: 20px;
  text-align: center;
}
h2 {
  color: #410093;
  font-size: 20px;
  margin-top: 30px;
  margin-bottom: 10px;
}
ol.steps, ul {
  margin-left: 20px;
  margin-bottom: 20px;
}
li {
  margin-bottom: 8px;
}
a {
  color: #410093;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* CTA Button */
.cta-button {
  display: block;
  width: fit-content;
  margin: 40px auto 0;
  background-color: #410093;
  color: white;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  transition: background 0.3s ease;
}
.cta-button:hover {
  background-color: #2d006c;
}
