.page-promotions {
  background-color: #08160F; /* Custom Background */
  color: #F2FFF6; /* Custom Text Main */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-promotions__section {
  padding: 60px 0;
  text-align: center;
}

.page-promotions__hero-section {
  position: relative;
  overflow: hidden;
  padding: 10px 0 60px; /* Small top padding, body handles header offset */
  display: flex;
  flex-direction: column; /* Ensure image is above content */
  align-items: center;
  justify-content: center;
  min-height: 600px;
}

.page-promotions__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  margin-bottom: 30px; /* Space between image and content */
}

.page-promotions__hero-content {
  position: relative; /* Not absolute, to be below image */
  z-index: 1;
  max-width: 800px;
  padding: 0 20px;
  text-align: center;
  color: #F2FFF6; /* Custom Text Main */
}

.page-promotions__hero-content h1 {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #F2C14E; /* Custom Gold */
  margin-bottom: 20px;
}

.page-promotions__hero-content p {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #A7D9B8; /* Custom Text Secondary */
}

.page-promotions__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Custom Button */
  color: #F2FFF6; /* Custom Text Main */
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-promotions__cta-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

.page-promotions__video-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding for video section */
  background-color: #0A4B2C; /* Custom Deep Green */
}

.page-promotions__video-section h2 {
  color: #F2C14E; /* Custom Gold */
  margin-bottom: 30px;
  font-size: 2.2em;
}

.page-promotions__video-wrapper {
  position: relative;
  width: 100%;
  max-width: 900px;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  margin-bottom: 30px;
}

.page-promotions__video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-promotions__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-promotions__promo-card {
  background-color: #11271B; /* Custom Card BG */
  border: 1px solid #2E7A4E; /* Custom Border */
  border-radius: 12px;
  overflow: hidden;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

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

.page-promotions__promo-card-content h3 {
  color: #F2C14E; /* Custom Gold */
  margin-bottom: 15px;
  font-size: 1.4em;
}

.page-promotions__promo-card-content p {
  color: #A7D9B8; /* Custom Text Secondary */
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions__promo-card-button {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 6px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Custom Button */
  color: #F2FFF6; /* Custom Text Main */
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-promotions__promo-card-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

.page-promotions__how-to-claim,
.page-promotions__terms-conditions,
.page-promotions__faq-section,
.page-promotions__final-cta {
  background-color: #0A4B2C; /* Custom Deep Green */
  padding: 60px 20px;
  text-align: center;
}

.page-promotions__how-to-claim h2,
.page-promotions__terms-conditions h2,
.page-promotions__faq-section h2,
.page-promotions__final-cta h2 {
  color: #F2C14E; /* Custom Gold */
  margin-bottom: 30px;
  font-size: 2.2em;
}

.page-promotions__how-to-claim ol {
  max-width: 800px;
  margin: 0 auto 40px;
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
}

.page-promotions__how-to-claim li {
  counter-increment: step-counter;
  text-align: left;
  margin-bottom: 15px;
  padding-left: 50px;
  position: relative;
  font-size: 1.1em;
  color: #F2FFF6; /* Custom Text Main */
}

.page-promotions__how-to-claim li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  background-color: #F2C14E; /* Custom Gold */
  color: #08160F; /* Dark background color for contrast */
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2em;
}

.page-promotions__how-to-claim .page-promotions__button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap; /* Allow buttons to wrap on mobile */
}

.page-promotions__terms-conditions p {
  max-width: 900px;
  margin: 0 auto 20px;
  color: #A7D9B8; /* Custom Text Secondary */
}

.page-promotions__link {
  color: #57E38D; /* Custom Glow */
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-promotions__link:hover {
  color: #F2C14E; /* Custom Gold */
}

.page-promotions__faq-item {
  background-color: #11271B; /* Custom Card BG */
  border: 1px solid #2E7A4E; /* Custom Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.page-promotions__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  color: #F2FFF6; /* Custom Text Main */
  font-weight: bold;
  font-size: 1.1em;
  list-style: none; /* Hide default marker */
}

.page-promotions__faq-item summary::-webkit-details-marker {
  display: none; /* Hide default marker for webkit */
}

.page-promotions__faq-qtext {
  flex-grow: 1;
}

.page-promotions__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #F2C14E; /* Custom Gold */
  transition: transform 0.3s ease;
}

.page-promotions__faq-item[open] .page-promotions__faq-toggle {
  transform: rotate(45deg); /* Rotate for 'x' or '-' effect */
}

.page-promotions__faq-answer {
  padding: 0 25px 20px;
  color: #A7D9B8; /* Custom Text Secondary */
  font-size: 1em;
}

.page-promotions__final-cta p {
  max-width: 800px;
  margin: 0 auto 30px;
  font-size: 1.1em;
  color: #A7D9B8; /* Custom Text Secondary */
}

.page-promotions__final-cta .page-promotions__button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* Allow buttons to wrap on mobile */
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-promotions__hero-content h1 {
    font-size: 2.8em;
  }
  .page-promotions__how-to-claim li {
    padding-left: 45px;
  }
  .page-promotions__how-to-claim li::before {
    width: 30px;
    height: 30px;
    font-size: 1.1em;
  }
}

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

  .page-promotions__container {
    padding: 0 15px;
  }

  .page-promotions__hero-section {
    min-height: 400px;
    padding-bottom: 40px;
  }

  .page-promotions__hero-content h1 {
    font-size: 2em;
    padding: 0 15px;
  }

  .page-promotions__hero-content p {
    font-size: 1em;
    padding: 0 15px;
  }

  .page-promotions__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  /* Images responsive */
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  /* Videos responsive */
  .page-promotions video,
  .page-promotions__video-wrapper video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-promotions__video-section,
  .page-promotions__video-container,
  .page-promotions__video-wrapper {
    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; /* body already handles --header-offset */
  }

  /* Buttons responsive */
  .page-promotions__cta-button,
  .page-promotions__btn-primary,
  .page-promotions__btn-secondary,
  .page-promotions a[class*="button"],
  .page-promotions a[class*="btn"],
  .page-promotions__promo-card-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-promotions__button-group,
  .page-promotions__final-cta .page-promotions__button-group {
    flex-direction: column !important; /* Stack buttons vertically */
    gap: 15px !important;
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-promotions__section,
  .page-promotions__card,
  .page-promotions__container,
  .page-promotions__hero-section,
  .page-promotions__promotions-list,
  .page-promotions__how-to-claim,
  .page-promotions__terms-conditions,
  .page-promotions__faq-section,
  .page-promotions__final-cta {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-promotions__promo-grid {
    padding: 0;
  }

  .page-promotions__how-to-claim li {
    font-size: 1em;
  }

  .page-promotions__how-to-claim li::before {
    width: 30px;
    height: 30px;
    font-size: 1em;
  }

  .page-promotions__faq-item summary {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-promotions__faq-answer {
    padding: 0 20px 15px;
  }
}