/* style/index-registration-guide.css */

/* Base Styles */
.page-index-registration-guide {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Body background is #000 (dark), so use light text */
  background-color: #000; /* Ensure main content background matches body */
}

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

.page-index-registration-guide__section {
  padding: 60px 0;
  background-color: #0d0d0d; /* Slightly lighter dark for sections */
}

.page-index-registration-guide__dark-bg {
  background-color: #000000;
  color: #ffffff;
}

.page-index-registration-guide__heading {
  font-size: 36px;
  font-weight: 700;
  color: #FFD700; /* Gold color for headings */
  text-align: center;
  margin-bottom: 30px;
}