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

/* Base styles for the page content */
.page-promotions-new-user {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Dark background #121212, so light text */
  background-color: transparent; /* Inherit from body or shared */
}

/* Section general styles */
.page-promotions-new-user__section-title {
  font-size: 2.5em;
  color: #26A9E0; /* Brand color for titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-promotions-new-user__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #26A9E0;
  border-radius: 2px;
}

.page-promotions-new-user__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
  color: #f0f0f0; /* Slightly off-white for body text */
}

.page-promotions-new-user__highlight {
  color: #EA7C07; /* Login color for highlights */
  font-weight: bold;
}

.page-promotions-new-user__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}