.page-promotions {
  color: #ffffff; /* Body background is dark, so text is light */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-promotions__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-promotions__section-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #FFD700; /* Highlight titles with accent color */
  line-height: 1.2;
}

.page-promotions__section-description {
  font-size: 18px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #f0f0f0;
}

.page-promotions__text-link {
  color: #FFD700;
  text-decoration: underline;
}

.page-promotions__text-link:hover {
  color: #ffffff;
}

/* Buttons */
.page-promotions__btn-primary,
.page-promotions__btn-secondary {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

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

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

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

.page-promotions__btn-secondary:hover {
  background-color: #FFD700;
  color: #1A2B4C;
  transform: translateY(-2px);
}

/* --- Hero Section --- */
.page-promotions__hero-section {
  padding: 0; /* Assuming shared.css handles body padding-top */
  position: relative;
  overflow: hidden;
  background: #1A2B4C; /* Main brand color */
  color: #ffffff;
}

.page-promotions__hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 20px;
  gap: 40px;
}

.page-promotions__hero-content {
  flex: 1;
  max-width: 50%;
  text-align: left;
}

.page-promotions__hero-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 25px;
  color: #FFD700;
  line-height: 1.1;
}

.page-promotions__hero-description {
  font-size: 20px;
  margin-bottom: 40px;
  color: #f0f0f0;
  line-height: 1.5;
  text-align: left;
}

.page-promotions__hero-cta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.page-promotions__hero-image-wrapper {
  flex: 1;
  max-width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-promotions__hero-image-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

/* --- Overview Section --- */
.page-promotions__overview-section {
  padding: 80px 0;
  background: #0d0d0d; /* Slightly lighter dark background for contrast */
  color: #ffffff;
}

/* --- Categories Section --- */
.page-promotions__categories-section {
  padding: 80px 0;
  background: #1A2B4C; /* Main brand color */
  color: #ffffff;
}

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

.page-promotions__promo-card {
  background: rgba(255, 255, 255, 0.08); /* Semi-transparent white for cards */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.page-promotions__promo-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

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

.page-promotions__card-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #FFD700;
}

.page-promotions__card-text {
  font-size: 16px;
  color: #f0f0f0;
  margin-bottom: 25px;
  flex-grow: 1;
}

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

.page-promotions__steps-list {
  list-style: none;
  counter-reset: step-counter;
  padding: 0;
  margin: 50px auto;
  max-width: 800px;
}

.page-promotions__steps-list li {
  counter-increment: step-counter;
  margin-bottom: 30px;
  padding-left: 60px;
  position: relative;
  font-size: 18px;
  color: #f0f0f0;
}

.page-promotions__steps-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  background-color: #FFD700;
  color: #1A2B4C;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 20px;
}

.page-promotions__steps-list strong {
  color: #FFD700;
}

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

/* --- Terms Section --- */
.page-promotions__terms-section {
  padding: 80px 0;
  background: #1A2B4C;
  color: #ffffff;
}

.page-promotions__terms-list {
  list-style: disc;
  max-width: 900px;
  margin: 50px auto;
  padding-left: 40px;
  color: #f0f0f0;
  font-size: 17px;
}

.page-promotions__terms-list li {
  margin-bottom: 15px;
}

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

.page-promotions__faq-list {
  max-width: 900px;
  margin: 50px auto;
}

.page-promotions__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-promotions__faq-question:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.3);
}

.page-promotions__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: #ffffff;
  pointer-events: none;
}

.page-promotions__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #FFD700;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 20px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.page-promotions__faq-item.active .page-promotions__faq-toggle {
  color: #ffffff;
  transform: rotate(45deg);
}

.page-promotions__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 25px;
  opacity: 0;
  color: #f0f0f0;
  font-size: 16px;
}

.page-promotions__faq-item.active .page-promotions__faq-answer {
  max-height: 2000px !important;
  padding: 20px 25px !important;
  opacity: 1;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0 0 8px 8px;
}

/* --- Final CTA Section --- */
.page-promotions__cta-final-section {
  padding: 80px 0;
  background: #1A2B4C;
  text-align: center;
  color: #ffffff;
}

.page-promotions__cta-final-section .page-promotions__section-title {
  color: #FFD700;
}

.page-promotions__cta-buttons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
  .page-promotions__hero-container {
    flex-direction: column;
    padding: 60px 20px;
    text-align: center;
  }

  .page-promotions__hero-content,
  .page-promotions__hero-image-wrapper {
    max-width: 100%;
  }

  .page-promotions__hero-title {
    font-size: 42px;
    text-align: center;
  }

  .page-promotions__hero-description {
    font-size: 18px;
    text-align: center;
  }

  .page-promotions__hero-cta {
    justify-content: center;
  }

  .page-promotions__grid-layout {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .page-promotions__section-title {
    font-size: 32px;
  }

  .page-promotions__section-description {
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .page-promotions__container {
    padding: 0 15px;
  }

  .page-promotions__section-title {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .page-promotions__section-description {
    font-size: 16px;
    margin-bottom: 30px;
  }

  /* Hero */
  .page-promotions__hero-container {
    padding: 40px 15px;
    gap: 30px;
  }

  .page-promotions__hero-title {
    font-size: 34px;
    margin-bottom: 15px;
  }

  .page-promotions__hero-description {
    font-size: 16px;
    margin-bottom: 25px;
  }

  .page-promotions__hero-cta {
    flex-direction: column;
    gap: 15px;
  }

  .page-promotions__btn-primary,
  .page-promotions__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    font-size: 16px;
    padding: 12px 20px;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  /* Sections */
  .page-promotions__overview-section,
  .page-promotions__categories-section,
  .page-promotions__how-to-claim-section,
  .page-promotions__terms-section,
  .page-promotions__faq-section,
  .page-promotions__cta-final-section {
    padding: 50px 0;
  }

  /* Cards */
  .page-promotions__grid-layout {
    gap: 20px;
    margin-top: 30px;
  }

  .page-promotions__promo-card img {
    
  }

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

  .page-promotions__card-title {
    font-size: 20px;
  }

  .page-promotions__card-text {
    font-size: 15px;
    margin-bottom: 20px;
  }

  /* Steps List */
  .page-promotions__steps-list {
    margin-top: 30px;
    padding-left: 0;
  }

  .page-promotions__steps-list li {
    font-size: 16px;
    padding-left: 50px;
    margin-bottom: 25px;
  }

  .page-promotions__steps-list li::before {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }

  .page-promotions__cta-bottom {
    margin-top: 30px;
  }

  /* Terms List */
  .page-promotions__terms-list {
    margin-top: 30px;
    padding-left: 25px;
    font-size: 15px;
  }

  /* FAQ */
  .page-promotions__faq-list {
    margin-top: 30px;
  }

  .page-promotions__faq-question {
    padding: 15px 20px;
  }

  .page-promotions__faq-question h3 {
    font-size: 16px;
  }

  .page-promotions__faq-toggle {
    font-size: 24px;
    width: 28px;
    height: 28px;
    margin-left: 15px;
  }

  .page-promotions__faq-answer {
    padding: 15px 20px;
    font-size: 15px;
  }

  .page-promotions__faq-item.active .page-promotions__faq-answer {
    padding: 15px 20px !important;
  }

  /* Final CTA */
  .page-promotions__cta-buttons {
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
  }

  /* Global image responsive */
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-promotions__section,
  .page-promotions__card,
  .page-promotions__container,
  .page-promotions__hero-section,
  .page-promotions__overview-section,
  .page-promotions__categories-section,
  .page-promotions__how-to-claim-section,
  .page-promotions__terms-section,
  .page-promotions__faq-section,
  .page-promotions__cta-final-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}