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

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

.page-promotions__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-top: 10px; /* body already handles --header-offset */
  background-color: #08160F; /* Background */
  overflow: hidden;
}

.page-promotions__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.3;
}

.page-promotions__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 20px;
  background: rgba(17, 39, 27, 0.7); /* Card BG with transparency */
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(87, 227, 141, 0.3); /* Glow */
}

.page-promotions__main-title {
  font-size: clamp(2.2em, 4vw, 3.5em);
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
}

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

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

.page-promotions__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 25px #57E38D;
}

.page-promotions__section-title {
  font-size: clamp(1.8em, 3vw, 2.8em);
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-promotions__section-description {
  font-size: 1.05em;
  color: #A7D9B8; /* Text Secondary */
  text-align: center;
  max-width: 900px;
  margin: -20px auto 50px auto;
}

.page-promotions__intro-section {
  padding: 80px 0;
  background-color: #0A4B2C; /* Deep Green */
}

.page-promotions__intro-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.page-promotions__intro-content p {
  color: #F2FFF6; /* Text Main */
  font-size: 1.05em;
  text-align: justify;
}

.page-promotions__feature-image {
  border-radius: 10px;
  width: 100%;
  height: auto;
  max-width: 800px;
  object-fit: cover;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-promotions__types-section {
  padding: 80px 0;
  background-color: #08160F; /* Background */
}

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

.page-promotions__promotion-card {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-promotions__promotion-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(87, 227, 141, 0.2);
}

.page-promotions__promotion-card img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 20px;
  object-fit: cover;
  min-height: 200px;
}

.page-promotions__card-title {
  font-size: 1.4em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions__card-title a {
  color: #F2FFF6; /* Text Main */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promotions__card-title a:hover {
  color: #57E38D; /* Glow */
}

.page-promotions__card-description {
  color: #A7D9B8; /* Text Secondary */
  font-size: 0.95em;
  margin-bottom: 20px;
  flex-grow: 1;
}

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

.page-promotions__card-button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-promotions__how-to-claim-section {
  padding: 80px 0;
  background-color: #0A4B2C; /* Deep Green */
}

.page-promotions__claim-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
}

.page-promotions__guide-image {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-promotions__step-list {
  flex: 2;
  min-width: 300px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-promotions__step-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__step-item h3 {
  color: #57E38D; /* Glow */
  font-size: 1.3em;
  margin-bottom: 10px;
}

.page-promotions__step-item p {
  color: #A7D9B8; /* Text Secondary */
  font-size: 1em;
}

.page-promotions__step-item a {
  color: #F2C14E; /* Gold */
  text-decoration: underline;
}

.page-promotions__step-item a:hover {
  color: #F2FFF6; /* Text Main */
}

.page-promotions__cta-button--large {
  margin-top: 40px;
  padding: 18px 40px;
  font-size: 1.2em;
  border-radius: 35px;
}

.page-promotions__terms-section {
  padding: 80px 0;
  background-color: #08160F; /* Background */
}

.page-promotions__terms-list {
  list-style: disc;
  margin-left: 20px;
  color: #A7D9B8; /* Text Secondary */
  font-size: 1em;
}

.page-promotions__terms-list li strong {
  color: #F2FFF6; /* Text Main */
}

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

.page-promotions__terms-section p a {
  color: #F2C14E; /* Gold */
  text-decoration: underline;
}

.page-promotions__terms-section p a:hover {
  color: #F2FFF6; /* Text Main */
}

.page-promotions__faq-section {
  padding: 80px 0;
  background-color: #0A4B2C; /* Deep Green */
}

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

.page-promotions__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-promotions__faq-item summary {
  list-style: none;
}

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

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.1em;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  background-color: #11271B; /* Card BG */
  transition: background-color 0.3s ease;
}

.page-promotions__faq-question:hover {
  background-color: #1E3A2A; /* Divider */
}

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

.page-promotions__faq-toggle {
  font-size: 1.5em;
  margin-left: 15px;
  color: #57E38D; /* Glow */
}

.page-promotions__faq-answer {
  padding: 15px 25px 25px;
  background-color: #0A4B2C; /* Deep Green */
  color: #A7D9B8; /* Text Secondary */
  font-size: 1em;
  line-height: 1.5;
}

.page-promotions__cta-final {
  padding: 80px 0;
  background-color: #08160F; /* Background */
  text-align: center;
}

.page-promotions__cta-button--final {
  padding: 20px 50px;
  font-size: 1.3em;
  border-radius: 40px;
  margin-top: 30px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-promotions {
    font-size: 15px;
    line-height: 1.5;
  }

  .page-promotions__container {
    padding: 15px;
  }

  .page-promotions__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }

  .page-promotions__hero-content {
    padding: 15px;
  }

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

  .page-promotions__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }

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

  .page-promotions__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-promotions__section-description {
    font-size: 0.95em;
    margin: -10px auto 30px auto;
  }

  .page-promotions__intro-section,
  .page-promotions__types-section,
  .page-promotions__how-to-claim-section,
  .page-promotions__terms-section,
  .page-promotions__faq-section,
  .page-promotions__cta-final {
    padding: 50px 0;
  }

  .page-promotions__promotion-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-promotions__promotion-card {
    padding: 20px;
  }

  .page-promotions__card-title {
    font-size: 1.2em;
  }

  .page-promotions__card-description {
    font-size: 0.9em;
  }

  .page-promotions__card-button {
    padding: 8px 15px;
    font-size: 0.85em;
  }

  .page-promotions__claim-steps {
    flex-direction: column;
    gap: 30px;
  }

  .page-promotions__guide-image {
    max-width: 100%;
    min-width: unset;
  }

  .page-promotions__step-list {
    min-width: unset;
  }

  .page-promotions__step-item {
    padding: 20px;
  }

  .page-promotions__step-item h3 {
    font-size: 1.2em;
  }

  .page-promotions__cta-button--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }

  .page-promotions__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }

  .page-promotions__faq-answer {
    padding: 10px 20px 20px;
    font-size: 0.95em;
  }

  .page-promotions__cta-button--final {
    padding: 15px 30px;
    font-size: 1.1em;
  }

  /* Mobile responsive images, videos, and buttons - IMPORTANT */
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-promotions video,
  .page-promotions__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-promotions__hero-section,
  .page-promotions__intro-section,
  .page-promotions__types-section,
  .page-promotions__how-to-claim-section,
  .page-promotions__terms-section,
  .page-promotions__faq-section,
  .page-promotions__cta-final,
  .page-promotions__video-container,
  .page-promotions__video-wrapper,
  .page-promotions__cta-buttons,
  .page-promotions__button-group,
  .page-promotions__btn-container,
  .page-promotions__promotion-grid {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    overflow: hidden !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;
    margin-bottom: 10px !important; /* For stacked buttons */
  }
  .page-promotions__cta-buttons {
    flex-direction: column !important; /* Stack buttons vertically on mobile */
    gap: 10px !important;
  }
}