.page-promotions-new-user-bonus {
  background-color: #F4F7FB;
  color: #1F2D3D;
  font-family: Arial, sans-serif;
}

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

.page-promotions-new-user-bonus__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: #2F6BFF; /* Primary color for hero background */
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.page-promotions-new-user-bonus__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit hero image height */
  overflow: hidden;
}

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

.page-promotions-new-user-bonus__hero-content {
  padding: 40px 20px;
  max-width: 900px;
  z-index: 1;
}

.page-promotions-new-user-bonus__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  max-width: 600px; /* Constraint H1 width */
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-new-user-bonus__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
}

.page-promotions-new-user-bonus__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-promotions-new-user-bonus__cta-button:hover {
  opacity: 0.9;
}

.page-promotions-new-user-bonus__section-title {
  font-size: 2.2em;
  color: #1F2D3D;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 40px;
}

.page-promotions-new-user-bonus__benefits-section {
  padding: 60px 0;
  background-color: #F4F7FB;
}

.page-promotions-new-user-bonus__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-promotions-new-user-bonus__benefit-card {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  border: 1px solid #D6E2FF;
}

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

.page-promotions-new-user-bonus__benefit-icon {
  width: 250px; /* Minimum 200px */
  height: 167px; /* Minimum 200px, aspect ratio */
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-promotions-new-user-bonus__benefit-title {
  font-size: 1.4em;
  color: #1F2D3D;
  margin-bottom: 15px;
}

.page-promotions-new-user-bonus__benefit-description {
  color: #1F2D3D;
  line-height: 1.6;
}

.page-promotions-new-user-bonus__how-to-claim-section {
  padding: 60px 0;
  background-color: #F4F7FB;
}

.page-promotions-new-user-bonus__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-promotions-new-user-bonus__step-card {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid #D6E2FF;
}

.page-promotions-new-user-bonus__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #2F6BFF;
  color: #FFFFFF;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
}

.page-promotions-new-user-bonus__step-title {
  font-size: 1.4em;
  color: #1F2D3D;
  margin-bottom: 15px;
}

.page-promotions-new-user-bonus__step-description {
  color: #1F2D3D;
  line-height: 1.6;
}

.page-promotions-new-user-bonus__cta-area {
  text-align: center;
  margin-top: 50px;
  padding: 30px;
  background-color: #6FA3FF;
  border-radius: 12px;
  color: #FFFFFF;
}

.page-promotions-new-user-bonus__cta-text {
  font-size: 1.5em;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-promotions-new-user-bonus__cta-button--secondary {
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
}

.page-promotions-new-user-bonus__terms-section {
  padding: 60px 0;
  background-color: #F4F7FB;
}

.page-promotions-new-user-bonus__terms-intro {
  font-size: 1.1em;
  margin-bottom: 25px;
  color: #1F2D3D;
  text-align: center;
}

.page-promotions-new-user-bonus__terms-list {
  list-style: disc;
  margin-left: 20px;
  color: #1F2D3D;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
}

.page-promotions-new-user-bonus__terms-item {
  margin-bottom: 10px;
  line-height: 1.6;
}

.page-promotions-new-user-bonus__read-more-link {
  display: block;
  text-align: center;
  margin-top: 30px;
  color: #2F6BFF;
  text-decoration: none;
  font-weight: bold;
}

.page-promotions-new-user-bonus__read-more-link:hover {
  text-decoration: underline;
}

.page-promotions-new-user-bonus__faq-section {
  padding: 60px 0;
  background-color: #F4F7FB;
}

.page-promotions-new-user-bonus__faq-item {
  background-color: #FFFFFF;
  border: 1px solid #D6E2FF;
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 25px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions-new-user-bonus__faq-question {
  font-size: 1.3em;
  color: #2F6BFF;
  margin-bottom: 10px;
}

.page-promotions-new-user-bonus__faq-answer {
  color: #1F2D3D;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .page-promotions-new-user-bonus__hero-content {
    padding: 30px 15px;
  }

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

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

  .page-promotions-new-user-bonus__section-title {
    font-size: 1.8em;
    margin-top: 40px;
    margin-bottom: 30px;
  }

  .page-promotions-new-user-bonus__benefits-grid,
  .page-promotions-new-user-bonus__steps-grid {
    grid-template-columns: 1fr;
  }

  .page-promotions-new-user-bonus__benefit-icon {
    max-width: 100%;
    height: auto;
  }

  .page-promotions-new-user-bonus__cta-text {
    font-size: 1.2em;
  }

  .page-promotions-new-user-bonus__terms-list,
  .page-promotions-new-user-bonus__faq-item {
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Ensure content images do not overflow */
  .page-promotions-new-user-bonus img {
    max-width: 100%;
    height: auto;
  }
}