.page-promotions-new-user-bonus {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light body background */
  background-color: #FFFFFF; /* Matches var(--secondary-color) */
  padding-top: var(--header-offset, 120px);
}

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

.page-promotions-new-user-bonus__section-title {
  font-size: 32px;
  color: #017439; /* Brand primary color */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-promotions-new-user-bonus__text-block {
  font-size: 16px;
  margin-bottom: 20px;
  text-align: justify;
}

.page-promotions-new-user-bonus__text-center {
  text-align: center;
}

.page-promotions-new-user-bonus__card {
  background: #ffffff; /* White background for cards */
  color: #333333;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e0e0e0; /* Added border for clarity */
}

.page-promotions-new-user-bonus__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Color Contrast Classes */
.page-promotions-new-user-bonus__dark-bg {
  background-color: #017439; /* Primary brand color */
  color: #ffffff; /* White text for dark background */
}

.page-promotions-new-user-bonus__light-bg {
  background-color: #FFFFFF; /* Auxiliary brand color / White background */
  color: #333333; /* Dark text for light background */
}

/* Hero Section */
.page-promotions-new-user-bonus__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  overflow: hidden;
}

.page-promotions-new-user-bonus__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-promotions-new-user-bonus__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-promotions-new-user-bonus__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-promotions-new-user-bonus__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 0 20px;
}

.page-promotions-new-user-bonus__hero-title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #FFFFFF; /* White text for dark hero background */
}

.page-promotions-new-user-bonus__hero-description {
  font-size: 20px;
  margin-bottom: 30px;
  color: #F0F0F0; /* Slightly off-white for better readability on dark green */
}

.page-promotions-new-user-bonus__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.page-promotions-new-user-bonus__cta-button {
  display: inline-block;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  min-width: 180px;
  text-align: center;
  box-sizing: border-box;
}

.page-promotions-new-user-bonus__btn-register {
  background: #C30808; /* Custom color for register */
  color: #FFFFFF; /* WCAG AA compliant text color */
  border: 2px solid #C30808;
}

.page-promotions-new-user-bonus__btn-register:hover {
  background: #E01010;
  border-color: #E01010;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-promotions-new-user-bonus__btn-download {
  background: #017439; /* Primary brand color */
  color: #FFFFFF; /* White text */
  border: 2px solid #017439;
}