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

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

.page-promo__section-title {
  font-size: 2.5em;
  color: #007bff; /* Primary brand color */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

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

.page-promo__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-align: center;
  cursor: pointer;
  white-space: nowrap;
}

.page-promo__button--primary {
  background-color: #007bff; /* Primary brand color */
  color: #ffffff;
  border: 2px solid #007bff;
}

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

.page-promo__button--secondary {
  background-color: transparent;
  color: #007bff; /* Primary brand color */
  border: 2px solid #007bff;
}

.page-promo__button--secondary:hover {
  background-color: #e6f2ff;
  color: #0056b3;
  transform: translateY(-2px);
}

.page-promo__button--small {
  padding: 8px 18px;
  font-size: 0.9em;
}

.page-promo__button--large {
  padding: 15px 35px;
  font-size: 1.2em;
}

.page-promo__button--inline {
  padding: 5px 10px;
  font-size: 0.85em;
  margin-top: 10px;
  background-color: #28a745; /* Secondary brand color */
  color: #ffffff;
  border: 1px solid #28a745;
}

.page-promo__button--inline:hover {
  background-color: #1e7e34;
  border-color: #1e7e34;
}

/* Hero Section */
.page-promo__hero-section {
  position: relative;
  background-color: #f8f9fa;
  padding: 0; /* Adjust padding as image will fill */
  overflow: hidden;
}

.page-promo__hero-container {
  position: relative;
  width: 100%;
  max-height: 700px; /* Limit hero height */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-promo__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.6); /* Darken image slightly for text readability, NO color change */
}

.page-promo__hero-content {
  position: absolute;
  z-index: 2;
  color: #ffffff;
  text-align: center;
  max-width: 900px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text readability */
  border-radius: 10px;
}

.page-promo__main-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  color: #ffffff;
}

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

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

/* Featured Promotions */
.page-promo__featured-promotions {
  padding: 80px 0;
  background-color: #f0f8ff;
}

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

.page-promo__promo-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-promo__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-promo__card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

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

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

/* How to Claim */
.page-promo__how-to-claim {
  padding: 80px 0;
  background-color: #ffffff;
}

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

.page-promo__step-card {
  background-color: #f0f8ff;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.page-promo__step-card:hover {
  transform: translateY(-5px);
}

.page-promo__step-title {
  font-size: 1.4em;
  color: #007bff;
  margin-bottom: 15px;
  font-weight: bold;
}

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

.page-promo__claim-cta {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  background-color: #e6f2ff;
  border-radius: 12px;
  border: 1px dashed #007bff;
}

.page-promo__claim-cta p {
  font-size: 1.2em;
  margin-bottom: 25px;
  color: #333333;
  font-weight: 500;
}

/* Types of Bonuses */
.page-promo__types-of-bonuses {
  padding: 80px 0;
  background-color: #f8f9fa;
}

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

.page-promo__bonus-type-card {
  background-color: #ffffff;
  border-left: 5px solid #28a745; /* Secondary brand color accent */
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.page-promo__bonus-type-title {
  font-size: 1.5em;
  color: #28a745;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-promo__bonus-type-text {
  font-size: 1em;
  color: #666666;
}

/* Terms & Conditions */
.page-promo__terms-conditions {
  padding: 80px 0;
  background-color: #ffffff;
}

.page-promo__terms-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promo__terms-item {
  background-color: #f0f8ff;
  border-left: 4px solid #007bff;
  margin-bottom: 15px;
  padding: 15px 20px;
  border-radius: 8px;
  color: #444444;
  font-size: 1em;
}

.page-promo__terms-item strong {
  color: #007bff;
}

.page-promo__terms-note {
  text-align: center;
  margin-top: 30px;
  font-size: 1.1em;
  color: #555555;
}

.page-promo__link {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}

.page-promo__link:hover {
  text-decoration: underline;
  color: #0056b3;
}

/* Why Choose 8k8 */
.page-promo__why-choose-8k8 {
  padding: 80px 0;
  background-color: #f0f8ff;
}

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

.page-promo__feature-card {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.page-promo__feature-card:hover {
  transform: translateY(-5px);
}

.page-promo__feature-icon {
  width: 80px; /* Enforced minimum 200px display, this is for placeholder aspect ratio */
  height: 80px;
  margin-bottom: 15px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  object-fit: contain; /* Ensure icons are contained */
  min-width: 200px; /* Ensure display size is not less than 200px */
  min-height: 200px;
}

.page-promo__feature-title {
  font-size: 1.5em;
  color: #007bff;
  margin-bottom: 10px;
  font-weight: bold;
}

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

/* FAQ Section */
.page-promo__faq-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.page-promo__faq-accordion {
  max-width: 900px;
  margin: 40px auto 0 auto;
}

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

.page-promo__faq-question {
  background-color: #007bff;
  color: #ffffff;
  padding: 18px 25px;
  margin: 0;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-promo__faq-question::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

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

.page-promo__faq-answer {
  padding: 20px 25px;
  background-color: #f9f9f9;
  color: #444444;
  font-size: 1em;
  display: none; /* Hidden by default */
}

.page-promo__faq-answer p {
  margin-bottom: 15px;
}

/* Final CTA */
.page-promo__final-cta {
  padding: 80px 0;
  background-color: #007bff; /* Primary brand color */
  color: #ffffff;
  text-align: center;
}

.page-promo__final-cta .page-promo__section-title {
  color: #ffffff;
  font-size: 2.8em;
}

.page-promo__final-cta .page-promo__section-description {
  color: #f0f8ff;
  margin-bottom: 40px;
}

.page-promo__final-cta .page-promo__button--primary {
  background-color: #28a745; /* Secondary brand color for contrast */
  border-color: #28a745;
}

.page-promo__final-cta .page-promo__button--primary:hover {
  background-color: #1e7e34;
  border-color: #1e7e34;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-promo__main-title {
    font-size: 3em;
  }
  .page-promo__hero-description {
    font-size: 1.1em;
  }
  .page-promo__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-promo__hero-section {
    padding: 0;
  }
  .page-promo__hero-content {
    max-width: 90%;
  }
  .page-promo__main-title {
    font-size: 2.2em;
  }
  .page-promo__hero-description {
    font-size: 1em;
  }
  .page-promo__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-promo__button--large {
    width: 100%;
  }
  .page-promo__featured-promotions, .page-promo__how-to-claim, .page-promo__types-of-bonuses, .page-promo__terms-conditions, .page-promo__why-choose-8k8, .page-promo__faq-section, .page-promo__final-cta {
    padding: 60px 0;
  }
  .page-promo__promo-grid, .page-promo__steps-grid, .page-promo__bonus-types-grid, .page-promo__features-grid {
    grid-template-columns: 1fr;
  }
  /* Mobile content area image constraint */
  .page-promo img {
    max-width: 100%;
    height: auto;
  }
  .page-promo__feature-icon {
    min-width: 200px; /* Still ensure minimum display size */
    min-height: 200px;
  }
  .page-promo__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-promo__faq-answer {
    padding: 15px 20px;
  }
  .page-promo__final-cta .page-promo__section-title {
    font-size: 2em;
  }
  .page-promo__hero-image {
    height: 500px;
  }
}

@media (max-width: 480px) {
  .page-promo__main-title {
    font-size: 1.8em;
  }
  .page-promo__hero-description {
    font-size: 0.9em;
  }
  .page-promo__section-title {
    font-size: 1.8em;
  }
  .page-promo__section-description {
    font-size: 0.9em;
  }
  .page-promo__button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-promo__hero-image {
    height: 400px;
  }
}