/* style/new-user-guide.css */

/* Base styles for the page content */
.page-new-user-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Body background is #000000, so use light text */
  background-color: #000000; /* Explicitly set for clarity, though shared.css likely handles */
}

.page-new-user-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

.page-new-user-guide__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-new-user-guide__section:last-of-type {
  border-bottom: none;
}