.page-promo {
  color: #333333; /* Dark text for light body background */
  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 {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 500px;
  background-color: #0A2463; /* Dark blue background for hero text */
  color: #ffffff;
}

.page-promo__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.4; /* Slightly dim the image for text readability */
}

.page-promo__hero-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 40px 20px;
}

.page-promo__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for emphasis */
  line-height: 1.2;
}

.page-promo__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-promo__hero-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #0A2463; /* Dark blue 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;
}

.page-promo__hero-button:hover {
  background-color: #e6c200; /* Darker gold on hover */
  transform: translateY(-2px);
}

.page-promo__section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.page-promo__section-title {
  font-size: 2.5em;
  color: #0A2463;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

.page-promo__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-promo__section-text {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-promo__promo-list {
  margin-top: 60px;
}

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

.page-promo__card {
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-promo__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.page-promo__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-promo__card-title {
  font-size: 1.6em;
  color: #0A2463;
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-promo__card-title a {
  color: #0A2463;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promo__card-title a:hover {
  color: #FFD700;
}

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

.page-promo__card-button {
  display: inline-block;
  background-color: #0A2463;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  margin-top: 10px;
  transition: background-color 0.3s ease;
}

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

.page-promo__card-button--primary {
  background-color: #FFD700;
  color: #0A2463;
  margin-left: 10px;
}

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

.page-promo__how-to-claim-content {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 30px;
}

.page-promo__how-to-claim-image {
  flex: 1;
  max-width: 50%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-promo__steps-list {
  flex: 1;
  list-style: none;
  padding: 0;
}

.page-promo__step-item {
  background-color: #f0f4f8;
  border-left: 5px solid #0A2463;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-promo__step-title {
  font-size: 1.4em;
  color: #0A2463;
  margin-bottom: 10px;
}

.page-promo__step-description {
  font-size: 1em;
  color: #555555;
  margin-bottom: 15px;
}

.page-promo__step-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A2463;
  padding: 8px 18px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9em;
  transition: background-color 0.3s ease;
}

.page-promo__step-button:hover {
  background-color: #e6c200;
}

.page-promo__terms-conditions .page-promo__terms-content {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 30px;
}

.page-promo__terms-conditions .page-promo__terms-image {
  flex: 1;
  max-width: 50%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-promo__pagcor-advantage .page-promo__pagcor-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  margin-top: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-promo__responsible-gaming-button {
  display: inline-block;
  background-color: #0A2463;
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}

.page-promo__responsible-gaming-button:hover {
  background-color: #071a4f;
}

.page-promo__responsible-gaming-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  margin-top: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-promo__faq-item {
  background-color: #f0f4f8;
  border-left: 4px solid #FFD700;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-promo__faq-question {
  font-size: 1.3em;
  color: #0A2463;
  margin-bottom: 10px;
}

.page-promo__faq-answer {
  font-size: 1em;
  color: #555555;
}

.page-promo__faq-button {
  display: inline-block;
  background-color: #0A2463;
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}

.page-promo__faq-button:hover {
  background-color: #071a4f;
}

.page-promo__cta {
  text-align: center;
  padding: 50px 20px;
  background-color: #0A2463;
  color: #ffffff;
  border-radius: 8px;
  margin-bottom: 40px;
}

.page-promo__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A2463;
  padding: 18px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.3em;
  margin-top: 30px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 992px) {
  .page-promo__hero-title {
    font-size: 2.8em;
  }
  .page-promo__section-title {
    font-size: 2em;
  }
  .page-promo__how-to-claim-content,
  .page-promo__terms-conditions .page-promo__terms-content {
    flex-direction: column;
    text-align: center;
  }
  .page-promo__how-to-claim-image,
  .page-promo__terms-conditions .page-promo__terms-image {
    max-width: 80%;
  }
  .page-promo__steps-list {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .page-promo__hero-title {
    font-size: 2.2em;
  }
  .page-promo__hero-description {
    font-size: 1em;
  }
  .page-promo__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promo__section-title {
    font-size: 1.8em;
  }
  .page-promo__cards-grid {
    grid-template-columns: 1fr;
  }
  .page-promo__card-image {
    height: 200px;
  }
  .page-promo__card-title {
    font-size: 1.4em;
  }
  .page-promo__card-button,
  .page-promo__card-button--primary {
    width: calc(100% - 20px); /* Adjust for margin */
    margin-left: 0;
    margin-right: 0;
    margin-top: 10px;
  }
  .page-promo__how-to-claim-image,
  .page-promo__terms-conditions .page-promo__terms-image {
    max-width: 100%;
  }
  .page-promo__section-text,
  .page-promo__step-description,
  .page-promo__faq-answer {
    font-size: 0.95em;
  }

  /* Critical mobile image overflow fix */
  .page-promo img {
    max-width: 100%;
    height: auto;
  }
  .page-promo__cta-button {
    font-size: 1.1em;
    padding: 15px 30px;
  }
}

@media (max-width: 480px) {
  .page-promo__hero-title {
    font-size: 1.8em;
  }
  .page-promo__hero-container {
    padding: 30px 15px;
  }
  .page-promo__section-title {
    font-size: 1.6em;
  }
  .page-promo__section {
    padding: 15px;
  }
}