:root {
  --primary-color: #017439; /* Brand primary green */
  --secondary-color: #FFFFFF; /* Brand secondary white */
  --accent-color-register: #C30808; /* Register button red */
  --text-dark: #333333;
  --text-light: #ffffff;
  --border-color: #e0e0e0;
  --header-offset: 120px; /* Fallback for header offset, actual value from shared.css */
}

.page-promotions-new-user-bonus-details {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark); /* Default text color for light background */
  background-color: var(--secondary-color); /* Explicitly white background */
}

.page-promotions-new-user-bonus-details__section {
  padding: 60px 20px;
  text-align: center;
}

.page-promotions-new-user-bonus-details__dark-bg {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.page-promotions-new-user-bonus-details__light-bg {
  background-color: var(--secondary-color);
  color: var(--text-dark);
}

.page-promotions-new-user-bonus-details__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px; /* Added padding for smaller screens */
  box-sizing: border-box;
}

/* Hero Section */
.page-promotions-new-user-bonus-details__hero-section {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px; /* Ensure hero section has a minimum height */
  padding-top: var(--header-offset); /* Ensure content is below fixed header */
  background-color: var(--primary-color); /* Hero section uses primary color as background */
  color: var(--text-light);
  text-align: center;
}

.page-promotions-new-user-bonus-details__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.2; /* Make image subtle background */
}

.page-promotions-new-user-bonus-details__hero-section > .page-promotions-new-user-bonus-details__container {
  position: relative;
  z-index: 1;
  padding-top: 50px; /* Additional padding to push content down */
  padding-bottom: 50px;
}

.page-promotions-new-user-bonus-details__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: var(--text-light);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Enhance readability on image */
}

.page-promotions-new-user-bonus-details__lead-text {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-light);
}

/* Buttons */
.page-promotions-new-user-bonus-details__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  border: none;
  max-width: 100%; /* Ensure button responsiveness */
  box-sizing: border-box; /* Ensure padding is included in width */
  white-space: normal; /* Allow text to wrap */
  word-wrap: break-word; /* Break long words */
}

.page-promotions-new-user-bonus-details__btn-register {
  background-color: var(--accent-color-register); /* Red for register */
  color: var(--text-light); /* White text for contrast */
}

.page-promotions-new-user-bonus-details__btn-register:hover {
  background-color: #a00606; /* Slightly darker red on hover */
  transform: translateY(-2px);
}

/* Titles and Descriptions */
.page-promotions-new-user-bonus-details__section-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: inherit; /* Inherit color from parent section (dark/light bg) */
}

.page-promotions-new-user-bonus-details__section-description {
  font-size: 1.1em;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: inherit;
}

/* Offer Grid */
.page-promotions-new-user-bonus-details__offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions-new-user-bonus-details__card {
  background-color: var(--secondary-color);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: left;
  color: var(--text-dark);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-new-user-bonus-details__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-promotions-new-user-bonus-details__card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px; /* Minimum size requirement */
  min-height: 200px;
}

.page-promotions-new-user-bonus-details__card-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.page-promotions-new-user-bonus-details__card-text {
  font-size: 1em;
  color: var(--text-dark);
}

/* Lists */
.page-promotions-new-user-bonus-details__list {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 800px;
  margin: 40px auto;
}

.page-promotions-new-user-bonus-details__list-item {
  background-color: rgba(255, 255, 255, 0.1); /* Subtle background for list items in dark section */
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  font-size: 1.1em;
  color: var(--text-light);
}

.page-promotions-new-user-bonus-details__list-item strong {
  color: var(--secondary-color); /* Highlight strong text */
}

/* Guide Steps */
.page-promotions-new-user-bonus-details__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions-new-user-bonus-details__step-card {
  background-color: var(--secondary-color);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 25px;
  text-align: center;
  color: var(--text-dark);
}

.page-promotions-new-user-bonus-details__step-image {
  width: 100%;
  height: 180px; /* Fixed height for consistency */
  object-fit: contain; /* Use contain for step images */
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-promotions-new-user-bonus-details__step-title {
  font-size: 1.4em;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.page-promotions-new-user-bonus-details__step-text {
  font-size: 0.95em;
  color: var(--text-dark);
}

.page-promotions-new-user-bonus-details__cta-wrapper {
  margin-top: 50px;
}

/* FAQ Section */
.page-promotions-new-user-bonus-details__faq-list {
  max-width: 900px;
  margin: 40px auto 0;
  text-align: left;
}

.page-promotions-new-user-bonus-details__faq-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-promotions-new-user-bonus-details__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  color: var(--text-light);
  background-color: rgba(0, 0, 0, 0.1); /* Slightly darker background for question */
  transition: background-color 0.3s ease;
}

.page-promotions-new-user-bonus-details__faq-question:hover {
  background-color: rgba(0, 0, 0, 0.2);
}

.page-promotions-new-user-bonus-details__faq-question h3 {
  margin: 0;
  color: inherit;
}

.page-promotions-new-user-bonus-details__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  width: 24px;
  text-align: center;
  transition: transform 0.3s ease;
}

.page-promotions-new-user-bonus-details__faq-item.active .page-promotions-new-user-bonus-details__faq-toggle {
  transform: rotate(45deg); /* Rotate for 'x' effect */
}

.page-promotions-new-user-bonus-details__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--text-light);
  font-size: 1em;
}

.page-promotions-new-user-bonus-details__faq-item.active .page-promotions-new-user-bonus-details__faq-answer {
  max-height: 1000px !important; /* Sufficiently large for content */
  padding: 15px 25px 25px;
}

.page-promotions-new-user-bonus-details__faq-answer p {
  margin: 0;
  color: inherit;
}

/* Feature Grid (Why Choose Section) */
.page-promotions-new-user-bonus-details__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions-new-user-bonus-details__feature-card {
  background-color: var(--secondary-color);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 25px;
  text-align: center;
  color: var(--text-dark);
}

.page-promotions-new-user-bonus-details__feature-icon {
  width: 100px; /* Adjusted icon size, but min-width/height will ensure it's larger */
  height: 100px;
  object-fit: contain;
  margin-bottom: 15px;
  min-width: 200px; /* Minimum size for content images */
  min-height: 200px;
}

.page-promotions-new-user-bonus-details__feature-title {
  font-size: 1.3em;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.page-promotions-new-user-bonus-details__feature-text {
  font-size: 0.95em;
  color: var(--text-dark);
}

/* Final CTA Section */
.page-promotions-new-user-bonus-details__cta-section {
  padding: 80px 20px;
  background-color: var(--primary-color);
  color: var(--text-light);
}

.page-promotions-new-user-bonus-details__cta-final-button {
  margin-top: 30px;
  padding: 18px 40px;
  font-size: 1.3em;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions-new-user-bonus-details__main-title {
    font-size: 2.8em;
  }
  .page-promotions-new-user-bonus-details__section-title {
    font-size: 2em;
  }
}

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

  .page-promotions-new-user-bonus-details__hero-section {
    min-height: 400px;
    padding-top: var(--header-offset, 120px) !important; /* Ensure mobile header offset */
  }

  .page-promotions-new-user-bonus-details__hero-section > .page-promotions-new-user-bonus-details__container {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .page-promotions-new-user-bonus-details__main-title {
    font-size: 2.2em;
  }

  .page-promotions-new-user-bonus-details__lead-text {
    font-size: 1em;
  }

  .page-promotions-new-user-bonus-details__section {
    padding: 40px 15px;
  }

  .page-promotions-new-user-bonus-details__section-title {
    font-size: 1.8em;
  }

  .page-promotions-new-user-bonus-details__section-description {
    font-size: 1em;
  }

  .page-promotions-new-user-bonus-details__offer-grid,
  .page-promotions-new-user-bonus-details__guide-steps,
  .page-promotions-new-user-bonus-details__feature-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-promotions-new-user-bonus-details__card,
  .page-promotions-new-user-bonus-details__step-card,
  .page-promotions-new-user-bonus-details__feature-card {
    padding: 20px;
  }

  /* Images responsive for mobile */
  .page-promotions-new-user-bonus-details img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* All containers for images/content responsive for mobile */
  .page-promotions-new-user-bonus-details__section,
  .page-promotions-new-user-bonus-details__card,
  .page-promotions-new-user-bonus-details__container,
  .page-promotions-new-user-bonus-details__offer-grid,
  .page-promotions-new-user-bonus-details__guide-steps,
  .page-promotions-new-user-bonus-details__feature-grid,
  .page-promotions-new-user-bonus-details__faq-list,
  .page-promotions-new-user-bonus-details__cta-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden !important; /* Prevent horizontal scroll */
  }

  /* Buttons responsive for mobile */
  .page-promotions-new-user-bonus-details__cta-button,
  .page-promotions-new-user-bonus-details__btn-register {
    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;
  }
}