.page-promotions {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-main); /* Fallback to Text Main */
  background-color: var(--background); /* Fallback to Background */
}

.page-promotions__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 0 60px; /* Small top padding, more bottom padding */
  overflow: hidden;
}

.page-promotions__hero-image-wrapper {
  width: 100%;
  max-height: 500px; /* Limit height for hero image */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px; /* Space between image and content */
}

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

.page-promotions__hero-content {
  max-width: 900px;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-promotions__main-title {
  font-size: clamp(2em, 5vw, 3em);
  color: var(--gold); /* Use Gold for main title */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-promotions__hero-description {
  font-size: 1.1em;
  color: var(--text-secondary); /* Use Text Secondary for description */
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
}

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

.page-promotions__cta-button--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions__cta-button--secondary {
  background-color: transparent;
  color: var(--text-main); /* Use Text Main for secondary button text */
  border: 2px solid var(--border); /* Use Border color */
}

.page-promotions__cta-button--secondary:hover {
  background-color: rgba(46, 122, 78, 0.2); /* Light green hover */
  transform: translateY(-2px);
}

.page-promotions__cta-button--small {
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-promotions__section {
  padding: 60px 0;
  background-color: var(--background); /* Default section background */
}

.page-promotions__section--introduction {
  background-color: var(--card-bg); /* Use Card BG for introduction section */
}

.page-promotions__section--vip {
  background-color: var(--deep-green); /* Use Deep Green for VIP section */
}

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

.page-promotions__section-title {
  font-size: clamp(1.8em, 4vw, 2.5em);
  color: var(--text-main); /* Use Text Main for section titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-promotions__text-block {
  font-size: 1em;
  color: var(--text-secondary); /* Use Text Secondary for paragraph text */
  margin-bottom: 20px;
  text-align: justify;
}

.page-promotions__text-block--note {
  font-style: italic;
  font-size: 0.9em;
  color: var(--a7d9b8); /* Use A7D9B8 for notes */
  text-align: center;
}

.page-promotions__text-block--callout {
  font-weight: bold;
  text-align: center;
  color: var(--gold); /* Use Gold for callout text */
  margin-top: 30px;
}

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

.page-promotions__promo-card {
  background-color: var(--card-bg); /* Use Card BG for promo cards */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-promotions__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-promotions__promo-image {
  width: 100%;
  height: 250px; /* Fixed height for promo images */
  object-fit: cover;
  display: block;
}

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

.page-promotions__card-title {
  font-size: 1.4em;
  color: var(--text-main); /* Use Text Main for card titles */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions__card-description {
  font-size: 0.95em;
  color: var(--text-secondary); /* Use Text Secondary for card descriptions */
  margin-bottom: 20px;
  flex-grow: 1;
}

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

.page-promotions__rebate-item {
  background-color: var(--card-bg); /* Use Card BG for rebate items */
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions__rebate-title {
  font-size: 1.3em;
  color: var(--text-main); /* Use Text Main for rebate titles */
  margin-bottom: 10px;
  font-weight: bold;
}

.page-promotions__rebate-description {
  font-size: 0.9em;
  color: var(--text-secondary); /* Use Text Secondary for rebate descriptions */
}

.page-promotions__image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  margin: 30px auto;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-promotions__image--large {
  max-width: 1000px; /* Specific max-width for large images */
}

.page-promotions__image--medium {
  max-width: 800px; /* Specific max-width for medium images */
}

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

.page-promotions__vip-benefit-item {
  background-color: var(--card-bg); /* Use Card BG for VIP benefit items */
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions__vip-benefit-title {
  font-size: 1.2em;
  color: var(--gold); /* Use Gold for VIP benefit titles */
  margin-bottom: 10px;
  font-weight: bold;
}

.page-promotions__vip-benefit-description {
  font-size: 0.9em;
  color: var(--text-secondary); /* Use Text Secondary for VIP benefit descriptions */
}

.page-promotions__event-highlights {
  margin-top: 30px;
  background-color: var(--card-bg); /* Use Card BG for event highlights */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions__event-subtitle {
  font-size: 1.3em;
  color: var(--text-main); /* Use Text Main for event subtitles */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions__event-list {
  list-style-type: disc;
  margin-left: 20px;
  color: var(--text-secondary); /* Use Text Secondary for event list items */
}

.page-promotions__event-list li {
  margin-bottom: 10px;
  font-size: 1em;
}

.page-promotions__event-list strong {
  color: var(--text-main); /* Use Text Main for strong text in list */
}

.page-promotions__guide-list {
  list-style-type: none;
  padding: 0;
  margin-top: 30px;
}

.page-promotions__guide-list li {
  background-color: var(--card-bg); /* Use Card BG for guide list items */
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions__guide-step-title {
  font-size: 1.3em;
  color: var(--text-main); /* Use Text Main for guide step titles */
  margin-bottom: 10px;
  font-weight: bold;
}

.page-promotions__guide-step-description {
  font-size: 0.95em;
  color: var(--text-secondary); /* Use Text Secondary for guide step descriptions */
  margin-bottom: 15px;
}

.page-promotions__terms-list {
  list-style-type: disc;
  margin-left: 20px;
  color: var(--text-secondary); /* Use Text Secondary for terms list items */
}

.page-promotions__terms-list li {
  margin-bottom: 10px;
  font-size: 1em;
}

.page-promotions__terms-list strong {
  color: var(--text-main); /* Use Text Main for strong text in terms list */
}

.page-promotions__faq-list {
  margin-top: 30px;
}

.page-promotions__faq-item {
  background-color: var(--card-bg); /* Use Card BG for FAQ items */
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-weight: bold;
  color: var(--text-main); /* Use Text Main for FAQ question text */
  background-color: var(--card-bg); /* Ensure summary background matches item */
  user-select: none;
  list-style: none; /* For details/summary */
}

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

.page-promotions__faq-qtext {
  flex-grow: 1;
  font-size: 1.1em;
}

.page-promotions__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: var(--gold); /* Use Gold for toggle icon */
}

.page-promotions__faq-answer {
  padding: 0 25px 20px;
  font-size: 1em;
  color: var(--text-secondary); /* Use Text Secondary for FAQ answer text */
  text-align: justify;
}

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

/* Color Contrast Adjustments */
.page-promotions {
  color: #F2FFF6; /* Text Main */
}

.page-promotions__section-title, .page-promotions__card-title, .page-promotions__rebate-title, .page-promotions__guide-step-title, .page-promotions__terms-list strong, .page-promotions__event-list strong {
  color: #F2FFF6; /* Text Main */
}

.page-promotions__hero-description, .page-promotions__text-block, .page-promotions__card-description, .page-promotions__rebate-description, .page-promotions__vip-benefit-description, .page-promotions__event-list, .page-promotions__guide-step-description, .page-promotions__terms-list, .page-promotions__faq-answer {
  color: #A7D9B8; /* Text Secondary */
}

.page-promotions__main-title, .page-promotions__vip-benefit-title, .page-promotions__event-subtitle, .page-promotions__faq-toggle, .page-promotions__text-block--callout {
  color: #F2C14E; /* Gold */
}

.page-promotions__hero-section {
  background-color: var(--background);
}

.page-promotions__promo-card, .page-promotions__rebate-item, .page-promotions__vip-benefit-item, .page-promotions__event-highlights, .page-promotions__guide-list li, .page-promotions__faq-item {
  background-color: var(--card-bg);
}

.page-promotions__cta-button--primary {
  color: #F2FFF6; /* Text Main */
}

.page-promotions__cta-button--secondary {
  color: #F2FFF6; /* Text Main */
  border-color: #2E7A4E; /* Border */
}

.page-promotions__cta-button--secondary:hover {
  background-color: rgba(46, 122, 78, 0.2); /* Light green hover */
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-promotions__hero-content {
    padding: 0 30px;
  }
  .page-promotions__container {
    padding: 0 30px;
  }
}

@media (max-width: 768px) {
  .page-promotions__hero-section {
    padding-top: 10px !important; /* body already handles header offset */
    padding-bottom: 40px;
  }

  .page-promotions__hero-image-wrapper {
    max-height: 300px;
  }

  .page-promotions__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }

  .page-promotions__hero-description {
    font-size: 1em;
  }

  .page-promotions__section-title {
    font-size: clamp(1.5em, 6vw, 2em);
  }

  .page-promotions__promo-grid,
  .page-promotions__rebate-list,
  .page-promotions__vip-benefits {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-promotions__section,
  .page-promotions__container,
  .page-promotions__hero-content,
  .page-promotions__promo-card,
  .page-promotions__rebate-item,
  .page-promotions__vip-benefit-item,
  .page-promotions__event-highlights,
  .page-promotions__guide-list li,
  .page-promotions__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-promotions__image,
  .page-promotions__promo-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-promotions__cta-button,
  .page-promotions__cta-button--primary,
  .page-promotions__cta-button--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;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-promotions__cta-button-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .page-promotions__faq-question {
    padding: 15px 20px;
  }

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