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

.page-promo-welcome-bonus__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-promo-welcome-bonus__hero-section {
  position: relative;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Adjust for fixed header */
  background-color: #0A192F;
  color: #ffffff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-promo-welcome-bonus__hero-content {
  position: relative;
  z-index: 10;
  padding: 60px 20px;
  max-width: 800px;
}

.page-promo-welcome-bonus__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.page-promo-welcome-bonus__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-promo-welcome-bonus__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Overlay to make text readable */
}

.page-promo-welcome-bonus__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold accent color */
  color: #0A192F; /* Dark text on gold button */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promo-welcome-bonus__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-promo-welcome-bonus__overview-section,
.page-promo-welcome-bonus__how-to-claim-section,
.page-promo-welcome-bonus__terms-section,
.page-promo-welcome-bonus__maximise-section,
.page-promo-welcome-bonus__faq-section {
  padding: 80px 0;
  background-color: #ffffff;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
}

.page-promo-welcome-bonus__overview-section {
  background-color: #f9f9f9;
}

.page-promo-welcome-bonus__section-title {
  font-size: 2.5em;
  color: #0A192F;
  text-align: center;
  margin-bottom: 40px;
}

.page-promo-welcome-bonus__section-text {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 30px auto;
  text-align: center;
}

.page-promo-welcome-bonus__features-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.page-promo-welcome-bonus__features-item {
  background-color: #e0e0e0;
  padding: 15px 20px;
  border-radius: 5px;
  font-size: 1.05em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.page-promo-welcome-bonus__features-item::before {
  content: '✓';
  color: #0A192F;
  font-weight: bold;
  font-size: 1.2em;
}

.page-promo-welcome-bonus__steps-grid,
.page-promo-welcome-bonus__tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promo-welcome-bonus__step-card,
.page-promo-welcome-bonus__tip-card {
  background-color: #fefefe;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-promo-welcome-bonus__step-card:hover,
.page-promo-welcome-bonus__tip-card:hover {
  transform: translateY(-5px);
}

.page-promo-welcome-bonus__step-card img,
.page-promo-welcome-bonus__tip-card img {
  width: 100%; /* Ensure images fill card width */
  max-width: 400px; /* Limit max width to prevent distortion */
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  min-height: 200px; /* Enforce minimum height */
}

.page-promo-welcome-bonus__step-title,
.page-promo-welcome-bonus__tip-title {
  font-size: 1.8em;
  color: #0A192F;
  margin-bottom: 15px;
}

.page-promo-welcome-bonus__step-description,
.page-promo-welcome-bonus__tip-description {
  font-size: 1em;
  color: #555555;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promo-welcome-bonus__step-button {
  display: inline-block;
  background-color: #0A192F;
  color: #FFD700;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  margin-top: auto; /* Push button to bottom */
}

.page-promo-welcome-bonus__step-button:hover {
  background-color: #1a3359;
}

.page-promo-welcome-bonus__terms-list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 0 auto 30px auto;
}

.page-promo-welcome-bonus__terms-item {
  background-color: #f0f0f0;
  border-left: 5px solid #FFD700;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 5px;
  font-size: 1.05em;
}

.page-promo-welcome-bonus__terms-item strong {
  color: #0A192F;
}

.page-promo-welcome-bonus__cta-section {
  background: linear-gradient(135deg, #0A192F, #1a3359);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  border-radius: 8px;
  margin-top: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.page-promo-welcome-bonus__cta-container {
  max-width: 900px;
}

.page-promo-welcome-bonus__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFD700;
}

.page-promo-welcome-bonus__cta-text {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-promo-welcome-bonus__cta-button--primary {
  background-color: #FFD700;
  color: #0A192F;
  margin-right: 15px;
}

.page-promo-welcome-bonus__cta-button--primary:hover {
  background-color: #e6c200;
}

.page-promo-welcome-bonus__cta-button--secondary {
  background-color: transparent;
  border: 2px solid #FFD700;
  color: #FFD700;
}

.page-promo-welcome-bonus__cta-button--secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
}

.page-promo-welcome-bonus__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-promo-welcome-bonus__faq-item {
  background-color: #fefefe;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px 25px;
}

.page-promo-welcome-bonus__faq-question {
  font-size: 1.5em;
  color: #0A192F;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-promo-welcome-bonus__faq-answer {
  font-size: 1.0em;
  color: #555555;
  padding-left: 10px;
  display: none; /* Hidden by default, toggled by JS */
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-promo-welcome-bonus__hero-title {
    font-size: 2.8em;
  }
  .page-promo-welcome-bonus__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-promo-welcome-bonus__hero-section {
    padding: 40px 15px;
  }
  .page-promo-welcome-bonus__hero-title {
    font-size: 2.2em;
  }
  .page-promo-welcome-bonus__hero-description {
    font-size: 1em;
  }
  .page-promo-welcome-bonus__cta-button {
    font-size: 1.1em;
    padding: 12px 25px;
  }
  .page-promo-welcome-bonus__overview-section,
  .page-promo-welcome-bonus__how-to-claim-section,
  .page-promo-welcome-bonus__terms-section,
  .page-promo-welcome-bonus__maximise-section,
  .page-promo-welcome-bonus__faq-section,
  .page-promo-welcome-bonus__cta-section {
    padding: 50px 0;
  }
  .page-promo-welcome-bonus__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-promo-welcome-bonus__features-list {
    grid-template-columns: 1fr;
  }
  .page-promo-welcome-bonus__steps-grid,
  .page-promo-welcome-bonus__tips-grid {
    grid-template-columns: 1fr;
  }
  .page-promo-welcome-bonus__cta-title {
    font-size: 2em;
  }
  .page-promo-welcome-bonus__cta-text {
    font-size: 1.1em;
  }
  .page-promo-welcome-bonus__cta-button--primary,
  .page-promo-welcome-bonus__cta-button--secondary {
    margin-right: 0;
    margin-bottom: 15px;
    width: 100%;
    max-width: 300px; /* Constrain button width */
  }
  .page-promo-welcome-bonus__faq-question {
    font-size: 1.3em;
  }
  .page-promo-welcome-bonus__faq-answer {
    font-size: 0.95em;
  }

  /* Ensure images do not overflow */
  .page-promo-welcome-bonus__step-card img,
  .page-promo-welcome-bonus__tip-card img {
    max-width: 100%;
    height: auto;
  }
  .page-promo-welcome-bonus__hero-image img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-promo-welcome-bonus__hero-title {
    font-size: 1.8em;
  }
  .page-promo-welcome-bonus__section-title {
    font-size: 1.5em;
  }
  .page-promo-welcome-bonus__cta-title {
    font-size: 1.8em;
  }
  .page-promo-welcome-bonus__features-item {
    font-size: 0.95em;
  }
  .page-promo-welcome-bonus__faq-question {
    font-size: 1.1em;
  }
}

/* Ensure content area images are at least 200px in display size */
.page-promo-welcome-bonus img {
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
}

/* Override specific card image sizes to ensure min 200px */
.page-promo-welcome-bonus__step-card img,
.page-promo-welcome-bonus__tip-card img {
  min-width: 200px;
  min-height: 200px;
}