.page-promotions {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-main-color); /* #F2FFF6 */
  background-color: var(--background-color-dark); /* #08160F */
}

.page-promotions__section {
  padding: 60px 0;
  background-color: var(--background-color-dark); /* #08160F */
  color: var(--text-main-color); /* #F2FFF6 */
}

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

.page-promotions__section-title {
  font-size: clamp(2.5rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--gold-color); /* #F2C14E */
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.2;
}

.page-promotions__text-block {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--text-secondary-color); /* #A7D9B8 */
}

/* Hero Section */
.page-promotions__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  overflow: hidden;
}

.page-promotions__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit height for aesthetic */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}

.page-promotions__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.page-promotions__hero-content {
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
}

.page-promotions__hero-title {
  font-size: clamp(2.8rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--gold-color); /* #F2C14E */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-promotions__hero-description {
  font-size: 1.2rem;
  color: var(--text-main-color); /* #F2FFF6 */
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.page-promotions__btn-primary,
.page-promotions__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions__btn-primary {
  background: var(--button-gradient); /* linear-gradient(180deg, #2AD16F 0%, #13994A 100%) */
  color: var(--text-main-color); /* #F2FFF6 */
  border: none;
}

.page-promotions__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(42, 209, 111, 0.4);
}

.page-promotions__btn-secondary {
  background: transparent;
  color: var(--gold-color); /* #F2C14E */
  border: 2px solid var(--gold-color); /* #F2C14E */
}

.page-promotions__btn-secondary:hover {
  background: var(--gold-color); /* #F2C14E */
  color: var(--background-color-dark); /* #08160F */
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(242, 193, 78, 0.4);
}

/* Promotion Types Grid */
.page-promotions__cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions__card {
  background-color: var(--card-bg-color); /* #11271B */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  padding-bottom: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color); /* #2E7A4E */
  color: var(--text-main-color); /* #F2FFF6 */
}

.page-promotions__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3), 0 0 15px var(--glow-color); /* #57E38D */
}

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

.page-promotions__card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-color); /* #F2C14E */
  margin-bottom: 15px;
  padding: 0 20px;
}

.page-promotions__card-description {
  font-size: 1rem;
  color: var(--text-secondary-color); /* #A7D9B8 */
  margin-bottom: 25px;
  padding: 0 20px;
}

.page-promotions__card-button {
  display: inline-block;
  padding: 10px 25px;
  background: var(--button-gradient); /* linear-gradient(180deg, #2AD16F 0%, #13994A 100%) */
  color: var(--text-main-color); /* #F2FFF6 */
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.3s ease;
}

.page-promotions__card-button:hover {
  opacity: 0.9;
}

/* How to Claim */
.page-promotions__numbered-list {
  list-style: none;
  counter-reset: promotion-step;
  padding: 0;
  margin-top: 30px;
}

.page-promotions__numbered-list li {
  counter-increment: promotion-step;
  position: relative;
  padding-left: 50px;
  margin-bottom: 25px;
  font-size: 1.1rem;
  color: var(--text-main-color); /* #F2FFF6 */
}

.page-promotions__numbered-list li::before {
  content: counter(promotion-step);
  position: absolute;
  left: 0;
  top: 0;
  width: 35px;
  height: 35px;
  background-color: var(--deep-green-color); /* #0A4B2C */
  color: var(--text-main-color); /* #F2FFF6 */
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 1.2rem;
  border: 2px solid var(--glow-color); /* #57E38D */
}

.page-promotions__numbered-list li strong {
  color: var(--gold-color); /* #F2C14E */
}

/* Terms and Conditions */
.page-promotions__bullet-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-promotions__bullet-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.05rem;
  color: var(--text-secondary-color); /* #A7D9B8 */
}

.page-promotions__bullet-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--glow-color); /* #57E38D */
  font-size: 1.5rem;
  line-height: 1;
}

.page-promotions__bullet-list li strong {
  color: var(--text-main-color); /* #F2FFF6 */
}

/* FAQ Section */
.page-promotions__faq-item {
  background-color: var(--card-bg-color); /* #11271B */
  border: 1px solid var(--divider-color); /* #1E3A2A */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--text-main-color); /* #F2FFF6 */
}

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--gold-color); /* #F2C14E */
  position: relative;
  list-style: none; /* For details/summary */
}

.page-promotions__faq-question::-webkit-details-marker {
  display: none;
}

.page-promotions__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  color: var(--glow-color); /* #57E38D */
  transition: transform 0.3s ease;
}

.page-promotions__faq-item[open] .page-promotions__faq-toggle {
  transform: rotate(45deg);
}

.page-promotions__faq-answer {
  padding: 0 20px 20px;
  font-size: 1rem;
  color: var(--text-secondary-color); /* #A7D9B8 */
}

.page-promotions__faq-answer p {
  margin-top: 0;
  margin-bottom: 0;
}

/* Final CTA Section */
.page-promotions__cta-final-section {
  text-align: center;
  padding: 80px 0;
  background: var(--deep-green-color); /* #0A4B2C */
  color: var(--text-main-color); /* #F2FFF6 */
}

.page-promotions__cta-final-section .page-promotions__section-title {
  color: var(--gold-color); /* #F2C14E */
  margin-bottom: 30px;
}

.page-promotions__cta-final-section .page-promotions__text-block {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.15rem;
  margin-bottom: 40px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-promotions__hero-image-wrapper {
    max-height: 500px;
  }
  .page-promotions__hero-title {
    font-size: clamp(2.5rem, 4.5vw, 3.5rem);
  }
  .page-promotions__hero-description {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .page-promotions__section {
    padding: 40px 0;
  }
  .page-promotions__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-promotions__section-title {
    font-size: clamp(2rem, 6vw, 2.5rem);
    margin-bottom: 30px;
  }
  .page-promotions__text-block {
    font-size: 1rem;
  }

  /* Hero Section */
  .page-promotions__hero-section {
    padding-bottom: 40px;
  }
  .page-promotions__hero-image-wrapper {
    max-height: 300px;
  }
  .page-promotions__hero-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-promotions__hero-title {
    font-size: clamp(2rem, 6.5vw, 2.8rem);
    margin-bottom: 15px;
  }
  .page-promotions__hero-description {
    font-size: 1rem;
    margin-bottom: 25px;
  }
  .page-promotions__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 15px;
  }
  .page-promotions__btn-primary,
  .page-promotions__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
  }

  /* Cards Grid */
  .page-promotions__cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-promotions__card-image {
    height: 200px;
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-promotions__card-title {
    font-size: 1.3rem;
  }
  .page-promotions__card-description {
    font-size: 0.95rem;
  }

  /* Lists */
  .page-promotions__numbered-list li,
  .page-promotions__bullet-list li {
    font-size: 1rem;
    padding-left: 40px;
  }
  .page-promotions__numbered-list li::before {
    width: 30px;
    height: 30px;
    font-size: 1rem;
  }

  /* FAQ */
  .page-promotions__faq-question {
    font-size: 1.05rem;
    padding: 15px;
  }
  .page-promotions__faq-answer {
    padding: 0 15px 15px;
  }
  .page-promotions__faq-toggle {
    font-size: 1.5rem;
  }

  /* Final CTA */
  .page-promotions__cta-final-section {
    padding: 60px 0;
  }
  .page-promotions__cta-final-section .page-promotions__text-block {
    font-size: 1rem;
  }
}

/* Color Contrast Fixes (if needed, based on background analysis) */
.page-promotions__dark-section {
  background: var(--deep-green-color); /* #0A4B2C */
  color: var(--text-main-color); /* #F2FFF6 */
}

/* General image and video responsive rules */
.page-promotions img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page-promotions video {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
}

.page-promotions__video-section, .page-promotions__video-container, .page-promotions__video-wrapper {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

@media (max-width: 768px) {
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-promotions video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-promotions__section,
  .page-promotions__card,
  .page-promotions__container,
  .page-promotions__video-section,
  .page-promotions__video-container,
  .page-promotions__video-wrapper,
  .page-promotions__cta-buttons,
  .page-promotions__button-group,
  .page-promotions__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-promotions__video-section {
    padding-top: 10px !important;
  }
  .page-promotions__cta-button,
  .page-promotions__btn-primary,
  .page-promotions__btn-secondary,
  .page-promotions a[class*="button"],
  .page-promotions a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-promotions__cta-buttons {
    flex-wrap: wrap !important;
    gap: 10px;
  }
}