.page-promotions-new-user {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default light text color for dark body background */
  background-color: #1A202C; /* Ensure consistency with body background */
}

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

.page-promotions-new-user__dark-bg {
  background-color: #1A202C;
  color: #ffffff;
}

.page-promotions-new-user__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-promotions-new-user__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  min-height: 600px;
  overflow: hidden;
}

.page-promotions-new-user__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-promotions-new-user__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image for better text contrast */
}

.page-promotions-new-user__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.page-promotions-new-user__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-promotions-new-user__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-promotions-new-user__btn-primary {
  display: inline-block;
  background-color: #FFD700;
  color: #1A202C;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-promotions-new-user__btn-primary:hover {
  background-color: #e0b800;
  transform: translateY(-2px);
}

.page-promotions-new-user__btn-secondary {
  display: inline-block;
  background-color: #1A202C;
  color: #FFD700;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  border: 1px solid #FFD700;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
}

.page-promotions-new-user__btn-secondary:hover {
  background-color: #FFD700;
  color: #1A202C;
}

.page-promotions-new-user__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 30px;
  color: #FFD700;
}

.page-promotions-new-user__light-bg .page-promotions-new-user__section-title {
  color: #1A202C;
}

.page-promotions-new-user__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #f0f0f0;
}

.page-promotions-new-user__light-bg .page-promotions-new-user__section-description {
  color: #333333;
}

.page-promotions-new-user__promotions-overview {
  padding: 60px 0;
}

.page-promotions-new-user__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-promotions-new-user__promo-card {
  background-color: #f8f8f8;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease;
  color: #333333;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-promotions-new-user__promo-card:hover {
  transform: translateY(-5px);
}

.page-promotions-new-user__promo-card-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-promotions-new-user__promo-card-title {
  font-size: 1.5em;
  color: #1A202C;
  margin-bottom: 15px;
}

.page-promotions-new-user__promo-card-text {
  font-size: 1em;
  color: #555555;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions-new-user__registration-guide {
  padding: 60px 0;
}

.page-promotions-new-user__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.page-promotions-new-user__step-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-new-user__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #FFD700;
  color: #1A202C;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 15px;
}

.page-promotions-new-user__step-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-promotions-new-user__step-text {
  font-size: 0.95em;
  color: #f0f0f0;
}

.page-promotions-new-user__registration-image-wrapper {
  text-align: center;
  margin-bottom: 50px;
}

.page-promotions-new-user__registration-image {
  max-width: 800px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions-new-user__cta-container {
  text-align: center;
}

.page-promotions-new-user__why-choose-us {
  padding: 60px 0;
}

.page-promotions-new-user__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-promotions-new-user__feature-card {
  background-color: #f8f8f8;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
  color: #333333;
}

.page-promotions-new-user__feature-title {
  font-size: 1.5em;
  color: #1A202C;
  margin-bottom: 15px;
}

.page-promotions-new-user__feature-text {
  font-size: 1em;
  color: #555555;
}

.page-promotions-new-user__faq-section {
  padding: 60px 0;
}

.page-promotions-new-user__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-promotions-new-user__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #ffffff;
}

.page-promotions-new-user__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  color: #FFD700;
  transition: background-color 0.3s ease;
}

.page-promotions-new-user__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.page-promotions-new-user__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-promotions-new-user__faq-item.active .page-promotions-new-user__faq-toggle {
  transform: rotate(45deg);
}

.page-promotions-new-user__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #f0f0f0;
}

.page-promotions-new-user__faq-item.active .page-promotions-new-user__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show all content */
  padding: 15px 25px;
}

.page-promotions-new-user__cta-final {
  padding: 60px 0;
  text-align: center;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-promotions-new-user__hero-title {
    font-size: 3em;
  }
  .page-promotions-new-user__section-title {
    font-size: 2em;
  }
  .page-promotions-new-user__hero-section {
    padding: 60px 20px;
  }
}

@media (max-width: 768px) {
  .page-promotions-new-user__hero-section {
    padding: 40px 15px !important; /* Adjust padding for mobile */
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-promotions-new-user__hero-title {
    font-size: 2.5em;
  }
  .page-promotions-new-user__hero-description,
  .page-promotions-new-user__section-description,
  .page-promotions-new-user__promo-card-text,
  .page-promotions-new-user__step-text,
  .page-promotions-new-user__feature-text,
  .page-promotions-new-user__faq-answer p {
    font-size: 1em;
  }
  .page-promotions-new-user__btn-primary,
  .page-promotions-new-user__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-promotions-new-user__cta-container, .page-promotions-new-user__promo-card {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-promotions-new-user__promo-grid,
  .page-promotions-new-user__guide-steps,
  .page-promotions-new-user__features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-promotions-new-user__section-title {
    font-size: 1.8em;
  }
  .page-promotions-new-user__promo-card,
  .page-promotions-new-user__step-item,
  .page-promotions-new-user__feature-card,
  .page-promotions-new-user__faq-item {
    margin-left: 15px;
    margin-right: 15px;
    width: calc(100% - 30px) !important;
    box-sizing: border-box !important;
  }
  .page-promotions-new-user img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-promotions-new-user__section,
  .page-promotions-new-user__card,
  .page-promotions-new-user__container,
  .page-promotions-new-user__registration-image-wrapper,
  .page-promotions-new-user__cta-container,
  .page-promotions-new-user__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden !important;
  }
  .page-promotions-new-user__promo-card-image {
    width: 100%;
    height: auto;
  }
  .page-promotions-new-user__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-promotions-new-user__faq-answer {
    padding: 10px 20px;
  }
}

@media (max-width: 480px) {
  .page-promotions-new-user__hero-title {
    font-size: 2em;
  }
  .page-promotions-new-user__section-title {
    font-size: 1.5em;
  }
  .page-promotions-new-user__hero-description {
    font-size: 0.9em;
  }
  .page-promotions-new-user__btn-primary {
    font-size: 1em;
    padding: 12px 25px;
  }
}