.page-promo {
  color: #333333; /* Dark text for default light body background */
  line-height: 1.6;
  font-family: Arial, sans-serif;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
}

.page-promo__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #0A2463; /* Primary color fallback */
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  padding: 40px 20px;
}

.page-promo__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.7;
}

.page-promo__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
  max-width: 900px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 10px;
}

.page-promo__main-title {
  font-size: 3.2em;
  margin-bottom: 15px;
  color: #FFD700; /* Secondary color for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-promo__intro-text {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-promo__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.page-promo__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  min-width: 200px;
  text-align: center;
}

.page-promo__cta-button--primary {
  background-color: #FFD700; /* Secondary color */
  color: #0A2463; /* Primary color */
  border: 2px solid #FFD700;
}

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

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

.page-promo__cta-button--secondary:hover {
  background-color: #FFD700;
  color: #0A2463;
  transform: translateY(-2px);
}

.page-promo__section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  border-bottom: 1px solid #eee;
}

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

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

.page-promo__section-title {
  font-size: 2.5em;
  color: #0A2463; /* Primary color */
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.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-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #555;
}

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

.page-promo__card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;
}

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

.page-promo__card-title {
  font-size: 1.8em;
  color: #0A2463;
  margin-bottom: 15px;
  padding: 0 20px;
}

.page-promo__card-text {
  font-size: 1em;
  color: #666;
  margin-bottom: 25px;
  flex-grow: 1;
  padding: 0 20px;
}

.page-promo__card-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A2463;
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin-top: auto;
}

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

.page-promo__disclaimer-text {
  text-align: center;
  font-size: 0.9em;
  color: #888;
  margin-top: 30px;
}

.page-promo__promo-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 40px;
}

.page-promo__promo-item {
  display: flex;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.page-promo__promo-image {
  width: 40%;
  height: auto;
  object-fit: cover;
}

.page-promo__promo-content {
  padding: 30px;
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-promo__promo-title {
  font-size: 2em;
  color: #0A2463;
  margin-bottom: 15px;
}

.page-promo__promo-text {
  font-size: 1.1em;
  color: #555;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-promo__promo-button {
  display: inline-block;
  background-color: #0A2463;
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  align-self: flex-start;
}

.page-promo__promo-button:hover {
  background-color: #1a3c7a;
  transform: translateY(-2px);
}

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

.page-promo__advantage-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
}

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

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

.page-promo__advantage-text {
  font-size: 1em;
  color: #666;
}

.page-promo__cta-center {
  text-align: center;
  margin-top: 50px;
}

.page-promo__steps-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  list-style: none;
  padding: 0;
}

.page-promo__step-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.page-promo__step-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.page-promo__step-text {
  font-size: 1em;
  color: #666;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-promo__step-button {
  display: inline-block;
  background-color: #0A2463;
  color: #ffffff;
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin-top: auto;
}

.page-promo__step-button:hover {
  background-color: #1a3c7a;
  transform: translateY(-2px);
}

.page-promo__faq-items {
  margin-top: 40px;
}

.page-promo__faq-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
  overflow: hidden;
}

.page-promo__faq-question {
  font-size: 1.3em;
  color: #0A2463;
  padding: 20px 30px;
  margin: 0;
  cursor: pointer;
  position: relative;
  background-color: #f5f5f5;
  border-bottom: 1px solid #eee;
}

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

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

.page-promo__faq-answer {
  font-size: 1em;
  color: #666;
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-promo__faq-answer.active {
  max-height: 200px; /* Adjust as needed */
  padding: 20px 30px;
}

.page-promo__cta-final-content {
  text-align: center;
}

.page-promo__small-print {
  font-size: 0.9em;
  color: #888;
  margin-top: 30px;
}

.page-promo__responsible-gaming-link {
  color: #0A2463;
  text-decoration: none;
  font-weight: bold;
}

.page-promo__responsible-gaming-link:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promo__main-title {
    font-size: 2.8em;
  }

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

  .page-promo__promo-item {
    flex-direction: column;
  }

  .page-promo__promo-image,
  .page-promo__promo-content {
    width: 100%;
  }

  .page-promo__promo-image {
    height: 300px;
  }

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

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

  .page-promo__cta-button {
    min-width: unset;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .page-promo__hero-section {
    min-height: 400px;
    padding: 30px 15px;
  }

  .page-promo__main-title {
    font-size: 2.2em;
  }

  .page-promo__intro-text {
    font-size: 1.1em;
  }

  .page-promo__cta-group {
    flex-direction: column;
    gap: 15px;
  }

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

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

  .page-promo__section-description {
    font-size: 1em;
    margin-bottom: 30px;
  }

  .page-promo__bonus-cards,
  .page-promo__advantages-grid,
  .page-promo__steps-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-promo__card-image,
  .page-promo__advantage-image {
    height: 200px;
  }

  .page-promo__promo-image {
    height: 250px;
  }

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

  .page-promo__promo-text {
    font-size: 0.95em;
  }

  .page-promo__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-promo__faq-question::after {
    right: 20px;
  }

  /* Ensure all content area images are responsive and don't overflow */
  .page-promo img {
    max-width: 100%;
    height: auto;
  }

  .page-promo__card-image,
  .page-promo__promo-image,
  .page-promo__advantage-image,
  .page-promo__hero-image {
    max-width: 100%;
    height: auto;
  }
}

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

  .page-promo__intro-text {
    font-size: 0.95em;
  }

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

  .page-promo__card-title,
  .page-promo__advantage-title,
  .page-promo__step-title {
    font-size: 1.4em;
  }

  .page-promo__promo-title {
    font-size: 1.3em;
  }
}