.page-promo {
  color: #333333;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

.page-promo__hero-section {
  background-color: #008000;
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-promo__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin-bottom: 40px;
}

.page-promo__hero-title {
  font-size: 3.2em;
  color: #FFD700;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promo__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

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

.page-promo__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  filter: brightness(0.7); /* Darken for text readability */
}

.page-promo__section {
  padding: 60px 0;
  text-align: center;
}

.page-promo__section:nth-of-type(odd) {
  background-color: #f9f9f9;
}

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

.page-promo__section-title {
  font-size: 2.5em;
  color: #008000;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-promo__section-intro {
  font-size: 1.1em;
  color: #555555;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.page-promo__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #000000;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

.page-promo__cta-button--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

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

.page-promo__promo-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.page-promo__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-promo__card-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  min-height: 200px; /* Enforce minimum size */
}

.page-promo__card-title {
  font-size: 1.8em;
  color: #008000;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promo__card-description {
  font-size: 1em;
  color: #666666;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-promo__card-button {
  display: inline-block;
  background-color: #008000;
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-promo__card-button:hover {
  background-color: #006600;
}

.page-promo__full-cta {
  margin-top: 60px;
}

.page-promo__how-to-claim .page-promo__section-title {
  color: #DC143C;
}

.page-promo__steps-list {
  list-style: none;
  padding: 0;
  margin: 60px auto 0 auto;
  max-width: 900px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-promo__step-item {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: left;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-promo__step-number {
  background-color: #FFD700;
  color: #000000;
  font-size: 2.2em;
  font-weight: bold;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  border: 4px solid #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-promo__step-title {
  font-size: 1.5em;
  color: #008000;
  margin-top: 40px;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-promo__step-description {
  font-size: 1em;
  color: #666666;
}

.page-promo__responsible-gaming {
  background-color: #008000;
  color: #ffffff;
  padding: 80px 20px;
}

.page-promo__responsible-gaming .page-promo__section-title {
  color: #FFD700;
}

.page-promo__responsible-gaming .page-promo__section-intro {
  color: #f0f0f0;
}

.page-promo__responsible-gaming .page-promo__cta-button {
  background-color: #FFD700;
  color: #000000;
}

.page-promo__responsible-gaming .page-promo__cta-button:hover {
  background-color: #e6c200;
}

.page-promo__faq {
  padding-bottom: 80px;
}

.page-promo__accordion {
  max-width: 900px;
  margin: 40px auto 0 auto;
  text-align: left;
}

.page-promo__accordion-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}

.page-promo__accordion-header {
  background-color: #008000;
  color: #ffffff;
  padding: 18px 25px;
  width: 100%;
  text-align: left;
  border: none;
  cursor: pointer;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease;
  position: relative;
  padding-right: 50px;
}

.page-promo__accordion-header:hover {
  background-color: #006600;
}

.page-promo__accordion-header::after {
  content: '+';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-promo__accordion-header.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-promo__accordion-content {
  padding: 0 25px;
  background-color: #ffffff;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.page-promo__accordion-content p {
  padding: 15px 0;
  color: #555555;
  font-size: 1em;
  margin: 0;
}

.page-promo__final-cta-section {
  background-color: #FFD700;
  padding: 80px 20px;
  color: #000000;
}

.page-promo__final-cta-section .page-promo__section-title {
  color: #008000;
}

.page-promo__final-cta-section .page-promo__section-intro {
  color: #333333;
}

.page-promo__final-cta-section .page-promo__cta-button {
  background-color: #DC143C;
  color: #ffffff;
}

.page-promo__final-cta-section .page-promo__cta-button:hover {
  background-color: #b20f2f;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-promo__hero-title {
    font-size: 2.5em;
  }

  .page-promo__hero-description {
    font-size: 1em;
  }

  .page-promo__section-title {
    font-size: 2em;
  }

  .page-promo__section-intro {
    font-size: 0.95em;
  }

  .page-promo__promo-grid {
    grid-template-columns: 1fr;
  }

  .page-promo__steps-list {
    grid-template-columns: 1fr;
  }

  .page-promo__step-item {
    padding-top: 50px;
  }

  .page-promo__step-number {
    top: -20px;
    width: 50px;
    height: 50px;
    font-size: 1.8em;
  }

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

  /* Specific override for card images to ensure they don't get too small */
  .page-promo__card-image {
    min-width: 200px;
    min-height: 150px; /* Adjust if needed, but maintain >= 200px on one dimension */
  }

  .page-promo__accordion-header {
    font-size: 1em;
    padding: 15px 20px;
    padding-right: 45px;
  }

  .page-promo__accordion-header::after {
    right: 20px;
  }

  .page-promo__accordion-content {
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .page-promo__hero-title {
    font-size: 2em;
  }

  .page-promo__cta-button {
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-promo__cta-button--large {
    padding: 15px 25px;
    font-size: 1.1em;
  }

  .page-promo__section {
    padding: 40px 0;
  }

  .page-promo__section-title {
    font-size: 1.8em;
  }

  .page-promo__section-intro {
    font-size: 0.9em;
  }

  .page-promo__promo-card {
    padding: 20px;
  }

  .page-promo__card-title {
    font-size: 1.5em;
  }

  .page-promo__card-description {
    font-size: 0.9em;
  }

  .page-promo__card-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
}