.page-new-user-promotions {
  color: #ffffff; /* Body background is dark #0a0a0a, so use light text */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-new-user-promotions__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  text-align: center;
  overflow: hidden;
  background-color: #26A9E0; /* Fallback for image */
}

.page-new-user-promotions__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-new-user-promotions__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-new-user-promotions__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  color: #FFFFFF;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text readability */
  border-radius: 8px;
}

.page-new-user-promotions__main-title {
  font-size: clamp(2.2em, 4vw, 3.2em); /* Responsive font size */
  font-weight: bold;
  margin-bottom: 15px;
  color: #FFFFFF;
  line-height: 1.2;
}

.page-new-user-promotions__hero-description {
  font-size: clamp(1em, 1.5vw, 1.2em);
  margin-bottom: 30px;
  color: #FFFFFF;
}

.page-new-user-promotions__cta-button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-new-user-promotions__btn-primary {
  background-color: #26A9E0;
  color: #FFFFFF;
  border: 2px solid #26A9E0;
}

.page-new-user-promotions__btn-primary:hover {
  background-color: #1a7fb3;
  transform: translateY(-2px);
}

.page-new-user-promotions__btn-secondary {
  background-color: #FFFFFF;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-new-user-promotions__btn-secondary:hover {
  background-color: #e0e0e0;
  transform: translateY(-2px);
}

.page-new-user-promotions__section-title {
  font-size: clamp(1.8em, 3vw, 2.8em);
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-new-user-promotions__intro-section,
.page-new-user-promotions__promotions-overview,
.page-new-user-promotions__terms-conditions,
.page-new-user-promotions__faq-section {
  padding: 60px 0;
  color: #333333; /* Dark text for light background */
}

.page-new-user-promotions__dark-bg {
  background-color: #0a0a0a;
  color: #ffffff;
}

.page-new-user-promotions__dark-bg .page-new-user-promotions__section-title,
.page-new-user-promotions__dark-bg .page-new-user-promotions__card-title,
.page-new-user-promotions__dark-bg .page-new-user-promotions__step-title,
.page-new-user-promotions__dark-bg .page-new-user-promotions__feature-title,
.page-new-user-promotions__dark-bg a {
  color: #26A9E0;
}

.page-new-user-promotions__dark-bg .page-new-user-promotions__text-block,
.page-new-user-promotions__dark-bg .page-new-user-promotions__card-text,
.page-new-user-promotions__dark-bg .page-new-user-promotions__step-text,
.page-new-user-promotions__dark-bg .page-new-user-promotions__feature-text,
.page-new-user-promotions__dark-bg .page-new-user-promotions__list-item {
  color: #ffffff;
}

.page-new-user-promotions__light-bg {
  background-color: #FFFFFF;
  color: #333333;
}

.page-new-user-promotions__light-bg .page-new-user-promotions__section-title,
.page-new-user-promotions__light-bg .page-new-user-promotions__card-title,
.page-new-user-promotions__light-bg .page-new-user-promotions__step-title,
.page-new-user-promotions__light-bg .page-new-user-promotions__feature-title,
.page-new-user-promotions__light-bg a {
  color: #26A9E0;
}

.page-new-user-promotions__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-new-user-promotions__text-block a {
  text-decoration: underline;
  font-weight: bold;
}

.page-new-user-promotions__grid-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-new-user-promotions__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;
  align-items: center;
  min-height: 450px;
}

.page-new-user-promotions__dark-bg .page-new-user-promotions__card {
  background-color: rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  color: #ffffff;
}

.page-new-user-promotions__card:hover {
  transform: translateY(-5px);
}

.page-new-user-promotions__card-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-height: 200px;
}

.page-new-user-promotions__card-title {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-new-user-promotions__card-text {
  font-size: 1em;
  color: #555555;
  text-align: left;
}

.page-new-user-promotions__dark-bg .page-new-user-promotions__card-text {
  color: #cccccc;
}

.page-new-user-promotions__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-new-user-promotions__step-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-new-user-promotions__step-number {
  font-size: 2.5em;
  font-weight: bold;
  color: #26A9E0;
  margin-bottom: 15px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px auto;
}

.page-new-user-promotions__step-title {
  font-size: 1.4em;
  font-weight: bold;
  margin-bottom: 10px;
  color: #26A9E0;
}

.page-new-user-promotions__step-text {
  font-size: 1em;
  color: #ffffff;
}

.page-new-user-promotions__image-wrapper {
  text-align: center;
  margin-top: 40px;
}

.page-new-user-promotions__process-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  min-height: 200px;
}

.page-new-user-promotions__list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-new-user-promotions__list-item {
  background-color: #f0f0f0;
  border-left: 5px solid #26A9E0;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  font-size: 1.1em;
  color: #333333;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-new-user-promotions__dark-bg .page-new-user-promotions__list-item {
  background-color: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.page-new-user-promotions__list-item strong {
  color: #26A9E0;
}

.page-new-user-promotions__why-choose-us,
.page-new-user-promotions__conclusion-section {
  padding: 60px 0;
}

.page-new-user-promotions__feature-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 400px;
}

.page-new-user-promotions__feature-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-height: 200px;
}

.page-new-user-promotions__feature-title {
  font-size: 1.4em;
  font-weight: bold;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-new-user-promotions__feature-text {
  font-size: 1em;
  color: #ffffff;
}

.page-new-user-promotions__faq-list {
  margin-top: 30px;
}

.page-new-user-promotions__faq-item {
  background-color: #f8f8f8;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  color: #333333;
}

.page-new-user-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  color: #26A9E0;
  background-color: #eef7fc;
  border-bottom: 1px solid #dddddd;
}

.page-new-user-promotions__faq-item[open] .page-new-user-promotions__faq-question {
  border-bottom: 1px solid #dddddd;
}

.page-new-user-promotions__faq-qtext {
  flex-grow: 1;
}

.page-new-user-promotions__faq-toggle {
  font-size: 1.5em;
  margin-left: 15px;
  color: #26A9E0;
}

.page-new-user-promotions__faq-answer {
  padding: 20px;
  font-size: 1em;
  color: #555555;
  background-color: #ffffff;
}

.page-new-user-promotions__faq-answer p {
  margin-bottom: 10px;
}

.page-new-user-promotions__faq-answer p:last-child {
  margin-bottom: 0;
}

.page-new-user-promotions__dark-bg .page-new-user-promotions__faq-item {
  background-color: rgba(255, 255, 255, 0.05);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-new-user-promotions__dark-bg .page-new-user-promotions__faq-question {
  background-color: rgba(255, 255, 255, 0.1);
  color: #26A9E0;
  border-bottom-color: rgba(255, 255, 255, 0.2);
}

.page-new-user-promotions__dark-bg .page-new-user-promotions__faq-toggle {
  color: #26A9E0;
}

.page-new-user-promotions__dark-bg .page-new-user-promotions__faq-answer {
  background-color: rgba(255, 255, 255, 0.02);
  color: #ffffff;
}

.page-new-user-promotions__button-group {
  text-align: center;
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Responsive styles */
@media (max-width: 768px) {
  .page-new-user-promotions {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-new-user-promotions__container {
    padding: 0 15px;
  }

  .page-new-user-promotions__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }

  .page-new-user-promotions__hero-content {
    padding: 15px;
  }

  .page-new-user-promotions__main-title {
    font-size: 2em; /* Adjusted for mobile */
  }

  .page-new-user-promotions__hero-description {
    font-size: 1em;
  }

  .page-new-user-promotions__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-new-user-promotions__intro-section,
  .page-new-user-promotions__promotions-overview,
  .page-new-user-promotions__terms-conditions,
  .page-new-user-promotions__why-choose-us,
  .page-new-user-promotions__faq-section,
  .page-new-user-promotions__conclusion-section {
    padding: 40px 0;
  }

  .page-new-user-promotions__grid-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-new-user-promotions__card,
  .page-new-user-promotions__feature-card {
    padding: 20px;
    min-height: auto;
  }

  .page-new-user-promotions__card-image,
  .page-new-user-promotions__feature-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    min-height: 200px;
  }

  .page-new-user-promotions__steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-new-user-promotions__process-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-new-user-promotions__list-item {
    padding: 15px;
    font-size: 1em;
  }

  .page-new-user-promotions__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }

  .page-new-user-promotions__faq-answer {
    padding: 15px;
  }

  /* Buttons responsive */
  .page-new-user-promotions__cta-button,
  .page-new-user-promotions__btn-primary,
  .page-new-user-promotions__btn-secondary,
  .page-new-user-promotions a[class*="button"],
  .page-new-user-promotions a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-new-user-promotions__button-group {
    flex-direction: column;
    gap: 10px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-new-user-promotions__section,
  .page-new-user-promotions__card,
  .page-new-user-promotions__container,
  .page-new-user-promotions__hero-section,
  .page-new-user-promotions__intro-section,
  .page-new-user-promotions__promotions-overview,
  .page-new-user-promotions__how-to-claim,
  .page-new-user-promotions__terms-conditions,
  .page-new-user-promotions__why-choose-us,
  .page-new-user-promotions__faq-section,
  .page-new-user-promotions__conclusion-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
}