.page-promotions-new-user-bonus {
  --primary-color: #0A2463;
  --secondary-color: #FFD700;
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-light: #f4f7f6;
  --bg-dark: #1a1a1a;
  --border-color: #e0e0e0;
  --accent-color: #FF4500; /* Example for highlight */
}

.page-promotions-new-user-bonus__hero-section {
  position: relative;
  background: linear-gradient(135deg, var(--primary-color) 0%, #1a3a7a 100%);
  color: var(--text-light);
  padding: 80px 20px;
  text-align: center;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.page-promotions-new-user-bonus__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.page-promotions-new-user-bonus__main-title {
  font-size: 3.2em;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--secondary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.page-promotions-new-user-bonus__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.9);
}

.page-promotions-new-user-bonus__cta-button {
  display: inline-block;
  background: var(--secondary-color);
  color: var(--primary-color);
  padding: 18px 45px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
}

.page-promotions-new-user-bonus__cta-button:hover {
  background: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-promotions-new-user-bonus__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.2;
  pointer-events: none;
}

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

.page-promotions-new-user-bonus__section {
  padding: 60px 20px;
  background-color: var(--bg-light);
  color: var(--text-dark);
  border-bottom: 1px solid var(--border-color);
}

.page-promotions-new-user-bonus__section:nth-of-type(even) {
  background-color: #ffffff;
}

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

.page-promotions-new-user-bonus__section-title {
  font-size: 2.5em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-promotions-new-user-bonus__subtitle {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 30px;
  color: #555;
}

.page-promotions-new-user-bonus__content-grid {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
}

.page-promotions-new-user-bonus__text-content {
  flex: 1;
  max-width: 600px;
}

.page-promotions-new-user-bonus__text-content p {
  margin-bottom: 15px;
  line-height: 1.7;
  font-size: 1.05em;
}

.page-promotions-new-user-bonus__image-wrapper {
  flex: 1;
  max-width: 500px;
}

.page-promotions-new-user-bonus__image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-promotions-new-user-bonus__secondary-button {
  display: inline-block;
  background: var(--primary-color);
  color: var(--text-light);
  padding: 12px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1em;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}

.page-promotions-new-user-bonus__secondary-button:hover {
  background: #071b4a;
}

.page-promotions-new-user-bonus__detail-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-promotions-new-user-bonus__card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-promotions-new-user-bonus__card-title {
  font-size: 1.8em;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: bold;
}

.page-promotions-new-user-bonus__card p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.page-promotions-new-user-bonus__list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-promotions-new-user-bonus__list li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
  line-height: 1.5;
}

.page-promotions-new-user-bonus__list li::before {
  content: '✓';
  color: var(--secondary-color);
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.page-promotions-new-user-bonus__list-ordered {
  list-style: decimal;
  padding-left: 25px;
  margin-bottom: 20px;
}

.page-promotions-new-user-bonus__list-ordered li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.page-promotions-new-user-bonus__list-highlight {
  color: var(--primary-color);
}

.page-promotions-new-user-bonus__terms {
  background: #fdfdfd;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 30px;
  margin-top: 40px;
}

.page-promotions-new-user-bonus__terms-title {
  font-size: 1.6em;
  color: var(--accent-color);
  margin-bottom: 20px;
  text-align: center;
}

.page-promotions-new-user-bonus__terms p {
  margin-bottom: 15px;
  line-height: 1.7;
}

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

.page-promotions-new-user-bonus__feature-item {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
}

.page-promotions-new-user-bonus__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

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

.page-promotions-new-user-bonus__feature-item p {
  line-height: 1.6;
}

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

.page-promotions-new-user-bonus__step-item {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  position: relative;
  padding-top: 80px; /* Space for number */
}

.page-promotions-new-user-bonus__step-number {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--secondary-color);
  color: var(--primary-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  border: 3px solid var(--primary-color);
}

.page-promotions-new-user-bonus__step-title {
  font-size: 1.4em;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions-new-user-bonus__step-item p {
  line-height: 1.6;
}

.page-promotions-new-user-bonus__cta-bottom {
  text-align: center;
  margin-top: 40px;
}

.page-promotions-new-user-bonus__cta-large {
  font-size: 1.4em;
  padding: 20px 50px;
}

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

.faq-item {
  margin-bottom: 15px;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-question:hover {
  background: #f5f5f5;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question h3 {
  margin: 0;
  font-size: 1.15em;
  color: var(--primary-color);
  font-weight: 600;
}

.faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--secondary-color);
  transition: transform 0.3s ease;
  line-height: 1;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #f9f9f9;
  border-radius: 0 0 8px 8px;
  border: 1px solid var(--border-color);
  border-top: none;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to contain content */
  padding: 20px 25px;
  border-top: 1px solid var(--border-color);
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: var(--accent-color);
}

.faq-answer p {
  margin: 0;
  line-height: 1.7;
  color: #444;
}

.page-promotions-new-user-bonus__conclusion {
  text-align: center;
  background: linear-gradient(135deg, #1a3a7a 0%, var(--primary-color) 100%);
  color: var(--text-light);
}

.page-promotions-new-user-bonus__conclusion-text {
  font-size: 1.2em;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: rgba(255, 255, 255, 0.9);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-promotions-new-user-bonus__main-title {
    font-size: 2.8em;
  }
  .page-promotions-new-user-bonus__hero-description {
    font-size: 1.15em;
  }
  .page-promotions-new-user-bonus__section-title {
    font-size: 2em;
  }
  .page-promotions-new-user-bonus__content-grid {
    flex-direction: column;
    text-align: center;
  }
  .page-promotions-new-user-bonus__image-wrapper {
    order: -1; /* Image first on mobile */
    margin-bottom: 30px;
  }
  .page-promotions-new-user-bonus__detail-cards,
  .page-promotions-new-user-bonus__feature-grid,
  .page-promotions-new-user-bonus__guide-steps {
    grid-template-columns: 1fr;
  }
  .page-promotions-new-user-bonus__step-item {
    padding-top: 60px;
  }
  .page-promotions-new-user-bonus__step-number {
    width: 40px;
    height: 40px;
    font-size: 1.5em;
    top: 15px;
  }
  .page-promotions-new-user-bonus__cta-large {
    font-size: 1.2em;
    padding: 15px 40px;
  }
}

@media (max-width: 768px) {
  .page-promotions-new-user-bonus__hero-section {
    padding: 60px 15px;
  }
  .page-promotions-new-user-bonus__main-title {
    font-size: 2.2em;
  }
  .page-promotions-new-user-bonus__hero-description {
    font-size: 1em;
  }
  .page-promotions-new-user-bonus__cta-button {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  .page-promotions-new-user-bonus__section {
    padding: 40px 15px;
  }
  .page-promotions-new-user-bonus__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-promotions-new-user-bonus__card-title {
    font-size: 1.5em;
  }
  .page-promotions-new-user-bonus__feature-title {
    font-size: 1.3em;
  }
  .page-promotions-new-user-bonus__feature-icon {
    width: 60px;
    height: 60px;
  }
  .faq-question {
    padding: 15px 20px;
  }
  .faq-question h3 {
    font-size: 1em;
  }
  .faq-toggle {
    font-size: 20px;
  }
  .faq-answer {
    padding: 0 20px;
  }
  .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-promotions-new-user-bonus__main-title {
    font-size: 1.8em;
  }
  .page-promotions-new-user-bonus__hero-description {
    font-size: 0.95em;
  }
  .page-promotions-new-user-bonus__cta-button {
    font-size: 1em;
    padding: 12px 25px;
  }
  .page-promotions-new-user-bonus__section-title {
    font-size: 1.5em;
  }
  .page-promotions-new-user-bonus__card,
  .page-promotions-new-user-bonus__feature-item,
  .page-promotions-new-user-bonus__step-item {
    padding: 20px;
  }
  .page-promotions-new-user-bonus__card-title {
    font-size: 1.3em;
  }
  .page-promotions-new-user-bonus__feature-title {
    font-size: 1.1em;
  }
  .page-promotions-new-user-bonus__step-title {
    font-size: 1.2em;
  }
  .page-promotions-new-user-bonus__cta-large {
    font-size: 1.1em;
    padding: 12px 30px;
  }
}