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

/* Ensure all links within main content are readable */
.page-promotions a {
  color: var(--text-main, #F2FFF6);
  text-decoration: none;
}

.page-promotions a:hover {
  color: var(--gold, #F2C14E);
  text-decoration: underline;
}

.page-promotions__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 60px; /* Space below content */
  overflow: hidden; /* Ensure no overflow */
  background-color: var(--background, #08160F); /* Fallback for hero section background */
  padding-top: 10px; /* Small top padding, body handles --header-offset */
}

.page-promotions__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

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

.page-promotions__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  text-align: center;
  padding: 80px 20px;
  color: #ffffff; /* Ensure white text on darkened background */
}

.page-promotions__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size */
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--gold, #F2C14E); /* Gold for main title */
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
}

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

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

.page-promotions__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s ease;
  white-space: nowrap; /* Prevent text wrapping for desktop */
  max-width: 100%; /* Ensure button doesn't overflow */
  box-sizing: border-box;
}

.page-promotions__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions__btn-secondary {
  background: transparent;
  color: var(--text-main, #F2FFF6);
  border: 2px solid var(--border, #2E7A4E);
}

.page-promotions__btn-secondary:hover {
  background-color: rgba(46, 122, 78, 0.2);
  transform: translateY(-2px);
}

.page-promotions__section {
  padding: 80px 20px;
  background-color: var(--background, #08160F);
}

.page-promotions__promotion-types {
  background-color: var(--deep-green, #0A4B2C);
}

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

.page-promotions__section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: var(--gold, #F2C14E);
}

.page-promotions__text-block {
  font-size: 1.1rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
  color: var(--text-secondary, #A7D9B8);
}

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

.page-promotions__feature-item {
  background-color: var(--card-bg, #11271B);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  border: 1px solid var(--border, #2E7A4E);
}

.page-promotions__feature-item:hover {
  transform: translateY(-5px);
}

.page-promotions__feature-icon {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 8px;
  min-width: 200px; /* Minimum size requirement */
  min-height: 200px; /* Minimum size requirement */
}

.page-promotions__feature-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-main, #F2FFF6);
}

.page-promotions__feature-description {
  font-size: 1rem;
  color: var(--text-secondary, #A7D9B8);
}

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

.page-promotions__promotion-card {
  background-color: var(--card-bg, #11271B);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
  border: 1px solid var(--border, #2E7A4E);
}

.page-promotions__promotion-card:hover {
  transform: translateY(-5px);
}

.page-promotions__card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
  min-width: 200px;
  min-height: 200px;
}

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

.page-promotions__card-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-main, #F2FFF6);
}

.page-promotions__card-description {
  font-size: 0.95rem;
  color: var(--text-secondary, #A7D9B8);
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions__btn-small {
  padding: 8px 18px;
  font-size: 0.9rem;
  align-self: flex-start;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions__how-to-claim {
  background-color: var(--background, #08160F);
}

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

.page-promotions__step-item {
  background-color: var(--card-bg, #11271B);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border, #2E7A4E);
}

.page-promotions__step-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--glow, #57E38D);
  margin-bottom: 15px;
  background: var(--deep-green, #0A4B2C);
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  margin: 0 auto 20px auto;
  border: 2px solid var(--glow, #57E38D);
}

.page-promotions__step-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-main, #F2FFF6);
}

.page-promotions__step-description {
  font-size: 1rem;
  color: var(--text-secondary, #A7D9B8);
}

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

.page-promotions__faq-section {
  background-color: var(--deep-green, #0A4B2C);
}

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

.page-promotions__faq-item {
  background-color: var(--card-bg, #11271B);
  border: 1px solid var(--border, #2E7A4E);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--text-main, #F2FFF6);
}

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  background-color: var(--card-bg, #11271B);
  color: var(--text-main, #F2FFF6);
  user-select: none;
  list-style: none; /* For <summary> tag */
}

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

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

.page-promotions__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 20px;
  color: var(--gold, #F2C14E);
}

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

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


/* --- Responsive Styles --- */
@media (max-width: 1024px) {
  .page-promotions__hero-content {
    padding: 60px 20px;
  }
  .page-promotions__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
  .page-promotions__section-title {
    font-size: 2rem;
  }
  .page-promotions__card-image {
    height: 180px;
  }
}

@media (max-width: 768px) {
  .page-promotions__hero-section {
    padding-bottom: 40px;
  }
  .page-promotions__hero-content {
    padding: 40px 15px;
  }
  .page-promotions__main-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
    margin-bottom: 15px;
  }
  .page-promotions__hero-description {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  .page-promotions__hero-cta {
    flex-direction: column;
    gap: 15px;
  }
  .page-promotions__btn {
    width: 100% !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-promotions__btn-small {
    padding: 10px 15px;
    font-size: 0.85rem;
    width: auto !important; /* Allow small buttons to be smaller than 100% */
  }

  .page-promotions__section {
    padding: 50px 15px;
  }
  .page-promotions__container {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-promotions__section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  .page-promotions__text-block {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .page-promotions__features-grid,
  .page-promotions__card-grid,
  .page-promotions__steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-promotions__card-image {
    height: 150px;
  }

  .page-promotions__feature-item,
  .page-promotions__promotion-card,
  .page-promotions__step-item,
  .page-promotions__faq-item {
    padding: 20px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

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

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

  .page-promotions__video-section {
    padding-top: 10px !important;
  }

  .page-promotions__hero-cta,
  .page-promotions__cta-bottom {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 15px;
  }
}

/* Ensure images within content areas do not shrink below 200px (desktop) */
.page-promotions__feature-icon {
  min-width: 200px;
  min-height: 200px;
}
/* Override for card image to maintain aspect ratio with fixed height on desktop */
.page-promotions__card-image {
  min-width: unset; /* Allow it to be smaller than 200px if object-fit covers */
  min-height: unset;
}

/* Contrast fix for text on dark backgrounds */
.page-promotions__dark-bg {
  color: #ffffff; /* Deep Green background for example */
}
.page-promotions__light-bg {
  color: #333333; /* For white or light backgrounds */
}
.page-promotions__medium-bg {
  color: #000000; /* For medium backgrounds */
}

.page-promotions__content-area,
.page-promotions__text-block {
  color: var(--text-secondary, #A7D9B8);
}

/* Ensure all interactive elements have sufficient contrast */
.page-promotions__faq-question {
  background-color: var(--card-bg, #11271B);
  color: var(--text-main, #F2FFF6);
}
.page-promotions__faq-answer {
  color: var(--text-secondary, #A7D9B8);
}