.page-promo-welcome-bonus-details {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-promo-welcome-bonus-details__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px);
  background-color: #003366; /* Primary color background */
  color: #ffffff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 500px; /* Ensure hero section has a minimum height */
}

.page-promo-welcome-bonus-details__hero-image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.page-promo-welcome-bonus-details__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Slightly dim the image to make text readable */
  display: block;
}

.page-promo-welcome-bonus-details__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 40px 20px;
  background-color: rgba(0, 51, 102, 0.7); /* Semi-transparent primary color overlay for text */
  border-radius: 10px;
  margin: 20px;
}

.page-promo-welcome-bonus-details__hero-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #FFCC00; /* Auxiliary color for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promo-welcome-bonus-details__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-promo-welcome-bonus-details__cta-button {
  display: inline-block;
  background-color: #FFCC00; /* Auxiliary color for primary CTA */
  color: #003366; /* Primary color for text */
  padding: 15px 30px;
  border-radius: 5px;
  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-promo-welcome-bonus-details__cta-button:hover {
  background-color: #e6b800;
  transform: translateY(-2px);
}

.page-promo-welcome-bonus-details__cta-button--secondary {
  background-color: #CC0000; /* Accent color for secondary CTA */
  color: #ffffff;
}

.page-promo-welcome-bonus-details__cta-button--secondary:hover {
  background-color: #a30000;
}

.page-promo-welcome-bonus-details__content-section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.page-promo-welcome-bonus-details__section-title {
  font-size: 2.5em;
  color: #003366; /* Primary color */
  text-align: center;
  margin-bottom: 30px;
  border-bottom: 3px solid #FFCC00; /* Auxiliary color underline */
  padding-bottom: 15px;
}

.page-promo-welcome-bonus-details__sub-title {
  font-size: 1.8em;
  color: #CC0000; /* Accent color */
  margin-top: 30px;
  margin-bottom: 15px;
  padding-left: 10px;
  border-left: 5px solid #FFCC00;
}

.page-promo-welcome-bonus-details__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #333333;
}

.page-promo-welcome-bonus-details__step-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-promo-welcome-bonus-details__list-item {
  background-color: #f9f9f9;
  border-left: 4px solid #003366;
  padding: 15px;
  margin-bottom: 15px;
  font-size: 1.1em;
  line-height: 1.8;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.page-promo-welcome-bonus-details__list-item strong {
  color: #003366;
}

.page-promo-welcome-bonus-details__image-card {
  margin: 30px auto;
  max-width: 800px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.page-promo-welcome-bonus-details__card-image {
  width: 100%;
  height: auto;
  display: block;
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

.page-promo-welcome-bonus-details__card-caption {
  background-color: #003366;
  color: #ffffff;
  padding: 15px;
  font-size: 1em;
  text-align: center;
}

.page-promo-welcome-bonus-details__inline-link {
  color: #003366; /* Primary color for inline links */
  text-decoration: underline;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-promo-welcome-bonus-details__inline-link:hover {
  color: #FFCC00; /* Auxiliary color on hover */
}

.page-promo-welcome-bonus-details__faq-item {
  background-color: #f0f5f9;
  border-radius: 5px;
  margin-bottom: 15px;
  padding: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
}

.page-promo-welcome-bonus-details__faq-question {
  font-size: 1.3em;
  color: #003366;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-promo-welcome-bonus-details__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-promo-welcome-bonus-details__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-promo-welcome-bonus-details__faq-answer {
  font-size: 1.05em;
  color: #555555;
  padding-top: 10px;
  border-top: 1px solid #e0e0e0;
  display: none;
}

.page-promo-welcome-bonus-details__faq-answer.active {
  display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-promo-welcome-bonus-details__hero-title {
    font-size: 2.2em;
  }

  .page-promo-welcome-bonus-details__hero-description {
    font-size: 1em;
  }

  .page-promo-welcome-bonus-details__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-promo-welcome-bonus-details__section-title {
    font-size: 2em;
  }

  .page-promo-welcome-bonus-details__sub-title {
    font-size: 1.5em;
  }

  .page-promo-welcome-bonus-details__text-block,
  .page-promo-welcome-bonus-details__list-item,
  .page-promo-welcome-bonus-details__faq-question,
  .page-promo-welcome-bonus-details__faq-answer {
    font-size: 0.95em;
  }

  .page-promo-welcome-bonus-details__hero-section {
    min-height: 400px;
  }

  .page-promo-welcome-bonus-details__content-section {
    margin: 20px auto;
    padding: 15px;
  }

  .page-promo-welcome-bonus-details__card-image,
  .page-promo-welcome-bonus-details__hero-image {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum size for mobile */
    min-height: 200px; /* Enforce minimum size for mobile */
  }
}

@media (max-width: 480px) {
  .page-promo-welcome-bonus-details__hero-title {
    font-size: 1.8em;
  }

  .page-promo-welcome-bonus-details__hero-description {
    font-size: 0.9em;
  }

  .page-promo-welcome-bonus-details__cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }

  .page-promo-welcome-bonus-details__section-title {
    font-size: 1.8em;
  }

  .page-promo-welcome-bonus-details__sub-title {
    font-size: 1.3em;
  }

  .page-promo-welcome-bonus-details__hero-section {
    min-height: 350px;
  }
}