.page-promo {
  color: #ffffff; /* Text color for dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content clears fixed header */
}

.page-promo__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  background-color: #1A202C;
  gap: 40px;
}

.page-promo__hero-content {
  max-width: 800px;
  z-index: 1;
}

.page-promo__hero-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-promo__hero-description {
  font-size: 1.3em;
  color: #f0f0f0;
  margin-bottom: 30px;
}

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

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

.page-promo__button--primary {
  background-color: #FFD700;
  color: #1A202C;
  border: 2px solid #FFD700;
}

.page-promo__button--primary:hover {
  background-color: #e5c100;
  transform: translateY(-2px);
}

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

.page-promo__button--secondary:hover {
  background-color: rgba(255, 215, 0, 0.1);
  transform: translateY(-2px);
}

.page-promo__hero-image {
  width: 100%;
  max-width: 1000px;
  margin-top: 40px;
}

.page-promo__hero-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-promo__why-us,
.page-promo__promo-types,
.page-promo__claim-guide,
.page-promo__terms-conditions,
.page-promo__responsible-gaming,
.page-promo__faq,
.page-promo__cta-final {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #1A202C;
}

.page-promo__section-title {
  font-size: 2.8em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}

.page-promo__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-promo__section-description {
  font-size: 1.1em;
  color: #f0f0f0;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
}

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

.page-promo__feature-item {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: left;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-promo__feature-item:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.15);
}

.page-promo__feature-heading {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-promo__feature-text {
  font-size: 1em;
  color: #e0e0e0;
}

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

.page-promo__card {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-promo__card:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 215, 0, 0.08);
}

.page-promo__card-image {
  width: 100%;
  height: auto;
  max-width: 400px; /* Ensure images are not too small */
  min-width: 200px;
  min-height: 200px;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

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

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

.page-promo__card .page-promo__button {
  width: fit-content;
  padding: 10px 20px;
  font-size: 0.95em;
  min-width: 150px; /* Smaller min-width for card buttons */
}

.page-promo__steps-list {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.page-promo__step-item {
  background-color: rgba(255, 255, 255, 0.08);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  padding-left: 80px;
}

.page-promo__step-item::before {
  counter-increment: step-counter;
  content: "0" counter(step-counter);
  position: absolute;
  left: 20px;
  top: 30px;
  font-size: 2.5em;
  font-weight: bold;
  color: #FFD700;
  line-height: 1;
}

.page-promo__step-heading {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-promo__step-text {
  font-size: 1em;
  color: #e0e0e0;
}

.page-promo__terms-list,
.page-promo__responsible-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.page-promo__terms-item,
.page-promo__responsible-item {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-left: 4px solid #FFD700;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.page-promo__terms-item:hover,
.page-promo__responsible-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.page-promo__terms-heading {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-promo__terms-text {
  font-size: 0.95em;
  color: #e0e0e0;
}

.page-promo__faq-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.page-promo__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 20px 25px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-promo__faq-item:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.page-promo__faq-question {
  font-size: 1.2em;
  color: #FFD700;
  margin-bottom: 10px;
  position: relative;
  padding-right: 30px;
}

.page-promo__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #FFD700;
}

.page-promo__faq-item.active .page-promo__faq-question::after {
  content: '-';
}

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

.page-promo__faq-item.active .page-promo__faq-answer {
  max-height: 500px; /* Arbitrary large value for smooth transition */
  opacity: 1;
  margin-top: 10px;
}

.page-promo__cta-final .page-promo__section-description {
  margin-bottom: 40px;
}

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

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

@media (max-width: 768px) {
  .page-promo__hero-section {
    flex-direction: column;
    padding: 40px 15px;
  }

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

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

  .page-promo__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-promo__button {
    width: 100%;
    max-width: 300px;
  }

  .page-promo__hero-image {
    margin-top: 30px;
  }

  .page-promo__why-us,
  .page-promo__promo-types,
  .page-promo__claim-guide,
  .page-promo__terms-conditions,
  .page-promo__responsible-gaming,
  .page-promo__faq,
  .page-promo__cta-final {
    padding: 40px 15px;
  }

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

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

  .page-promo__feature-list,
  .page-promo__card-grid,
  .page-promo__terms-list,
  .page-promo__responsible-list {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .page-promo__feature-item,
  .page-promo__card,
  .page-promo__step-item,
  .page-promo__terms-item,
  .page-promo__responsible-item,
  .page-promo__faq-item {
    padding: 20px;
  }

  .page-promo__step-item {
    padding-left: 60px;
  }

  .page-promo__step-item::before {
    left: 15px;
    top: 20px;
    font-size: 2em;
  }

  .page-promo__feature-heading,
  .page-promo__card-title,
  .page-promo__step-heading,
  .page-promo__terms-heading {
    font-size: 1.5em;
  }

  .page-promo__card-image img,
  .page-promo__hero-image img,
  .page-promo__card-image,
  .page-promo__hero-image {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure content images are not too small */
    min-height: 200px;
  }
  
  /* Force all content images to be responsive and not overflow */
  .page-promo img {
    max-width: 100% !important;
    height: auto !important;
  }

  .page-promo__faq-question {
    font-size: 1.1em;
  }

  .page-promo__faq-question::after {
    font-size: 1.2em;
  }

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

  .page-promo__cta-buttons .page-promo__button {
    width: 100%;
    max-width: 300px;
  }
}