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

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

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

.page-promotions__section-title {
  font-size: 2.8em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

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

.page-promotions__text-block {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  max-width: 900px;
  margin: 0 auto 40px auto;
}

/* Hero Section */
.page-promotions__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0 60px 0; /* body handles padding-top */
  background-color: #08160F; /* Background */
  overflow: hidden;
}

.page-promotions__hero-image-wrapper {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
  position: relative;
  z-index: 0;
}

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

.page-promotions__hero-content {
  position: relative; /* Ensure content is above image but not overlapping */
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  text-align: center;
  margin-top: -300px; /* Pull content up over the image, but still below */
  color: #F2FFF6;
}

.page-promotions__main-title {
  font-size: clamp(2.5em, 5vw, 4.5em); /* Responsive font size */
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  font-weight: 900;
  line-height: 1.1;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
}

.page-promotions__intro-text {
  font-size: 1.2em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

/* CTA Buttons */
.page-promotions__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
}

.page-promotions__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
  color: #F2FFF6; /* Text Main */
  border: none;
  box-shadow: 0 5px 15px rgba(42, 209, 111, 0.4);
}

.page-promotions__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(42, 209, 111, 0.6);
}

.page-promotions__btn-secondary {
  background: #11271B; /* Card BG */
  color: #2AD16F; /* A lighter green from the gradient */
  border: 2px solid #2E7A4E; /* Border */
}

.page-promotions__btn-secondary:hover {
  background: #2E7A4E; /* Border */
  color: #F2FFF6; /* Text Main */
}

/* About PG99 Code Section */
.page-promotions__about-pg99-code {
  background-color: #0A4B2C; /* Deep Green */
}

.page-promotions__content-block {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-top: 40px;
  text-align: left;
}

.page-promotions__content-block .page-promotions__image {
  flex: 0 0 40%;
  max-width: 40%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-promotions__content-block .page-promotions__text-content {
  flex: 1;
}

/* How To Activate Section */
.page-promotions__how-to-activate {
  background-color: #08160F; /* Background */
}

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

.page-promotions__step-card {
  background-color: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-promotions__step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(42, 209, 111, 0.3);
}

.page-promotions__step-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

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

/* Featured Promotions Section */
.page-promotions__featured-promos {
  background-color: #0A4B2C; /* Deep Green */
}

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

.page-promotions__promo-card {
  background-color: #11271B; /* Card BG */
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  text-align: left;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.page-promotions__promo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(42, 209, 111, 0.3);
}

.page-promotions__promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.page-promotions__promo-card .page-promotions__btn-secondary {
  margin-top: auto;
  align-self: flex-start;
}

/* Terms & Conditions Section */
.page-promotions__terms-conditions {
  background-color: #08160F; /* Background */
}

.page-promotions__list {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 900px;
  margin: 40px auto;
}

.page-promotions__list-item {
  background-color: #11271B; /* Card BG */
  padding: 20px 25px;
  margin-bottom: 15px;
  border-radius: 10px;
  color: #A7D9B8; /* Text Secondary */
  font-size: 1.05em;
  border-left: 5px solid #2E7A4E; /* Border */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions__list-item strong {
  color: #F2FFF6; /* Text Main */
}

/* Why Choose Section */
.page-promotions__why-choose {
  background-color: #0A4B2C; /* Deep Green */
}

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

.page-promotions__feature-card {
  background-color: #11271B; /* Card BG */
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-promotions__feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(42, 209, 111, 0.3);
}

.page-promotions__feature-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions__feature-card p {
  color: #A7D9B8; /* Text Secondary */
  font-size: 0.95em;
}

/* FAQ Section */
.page-promotions__faq {
  background-color: #08160F; /* Background */
}

.page-promotions__faq-list {
  max-width: 900px;
  margin: 40px auto;
  text-align: left;
}

.page-promotions__faq-item {
  background-color: #11271B; /* Card BG */
  margin-bottom: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.page-promotions__faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  background-color: #1E3A2A; /* Divider */
  border-bottom: 1px solid #2E7A4E;
  transition: background-color 0.3s ease;
}

.page-promotions__faq-item summary:hover {
  background-color: #2E7A4E; /* Border */
}

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

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

.page-promotions__faq-toggle {
  font-size: 1.5em;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

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

.page-promotions__faq-answer {
  padding: 20px 25px;
  font-size: 1.05em;
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.7;
  border-top: 1px solid #1E3A2A; /* Divider */
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-promotions__section-title {
    font-size: 2.2em;
  }

  .page-promotions__sub-title {
    font-size: 1.5em;
  }

  .page-promotions__hero-content {
    margin-top: -200px;
  }
}

@media (max-width: 768px) {
  .page-promotions__hero-content {
    margin-top: -100px;
  }
  .page-promotions__main-title {
    font-size: clamp(2em, 8vw, 3.5em);
  }

  .page-promotions__intro-text {
    font-size: 1em;
  }

  .page-promotions__section {
    padding: 40px 0;
  }

  .page-promotions__section-title {
    font-size: 1.8em;
    padding: 0 15px;
  }

  .page-promotions__text-block {
    font-size: 0.95em;
    padding: 0 15px;
  }

  .page-promotions__content-block {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .page-promotions__content-block .page-promotions__image {
    max-width: 100%;
    margin-bottom: 30px;
  }

  .page-promotions__content-block .page-promotions__text-content {
    padding: 0 15px;
  }

  .page-promotions__sub-title {
    font-size: 1.3em;
  }

  .page-promotions__steps-grid, .page-promotions__promo-grid, .page-promotions__features-grid {
    grid-template-columns: 1fr;
    padding: 0 15px;
  }

  .page-promotions__step-card, .page-promotions__promo-card, .page-promotions__feature-card {
    padding: 20px;
  }

  .page-promotions__cta-button, .page-promotions__btn-primary, .page-promotions__btn-secondary {
    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__list {
    padding: 0 15px;
  }

  .page-promotions__list-item {
    padding: 15px 20px;
    font-size: 0.95em;
  }

  .page-promotions__faq-list {
    padding: 0 15px;
  }

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

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

  /* Ensure all images are responsive and do not overflow */
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-promotions__section,
  .page-promotions__card,
  .page-promotions__container,
  .page-promotions__hero-section,
  .page-promotions__about-pg99-code,
  .page-promotions__how-to-activate,
  .page-promotions__featured-promos,
  .page-promotions__terms-conditions,
  .page-promotions__why-choose,
  .page-promotions__faq,
  .page-promotions__content-block,
  .page-promotions__steps-grid,
  .page-promotions__promo-grid,
  .page-promotions__features-grid,
  .page-promotions__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important; /* Prevent horizontal scroll */
  }

  .page-promotions__hero-section {
    padding-top: 10px !important; /* body already handles --header-offset */
  }

  /* For multiple buttons in a row on mobile */
  .page-promotions__cta-buttons,
  .page-promotions__button-group,
  .page-promotions__btn-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
}

/* Desktop video width for __video-container if it existed */
/* If a video section were present, it would look like this: */
/* .page-promotions__video-container { width: 100%; max-width: 1200px; margin: 0 auto; box-sizing: border-box; } */

/* Color Contrast Fixes (if needed, based on dynamic analysis) */
.page-promotions__dark-section {
  background-color: #0A4B2C; /* Deep Green */
  color: #F2FFF6; /* Text Main */
}