:root {
  --primary-color: #11A84E;
  --secondary-color: #22C768;
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --card-bg: #11271B;
  --background: #08160F;
  --text-main: #F2FFF6;
  --text-secondary: #A7D9B8;
  --border: #2E7A4E;
  --glow: #57E38D;
  --gold: #F2C14E;
  --divider: #1E3A2A;
  --deep-green: #0A4B2C;
}

/* --- General Styles --- */
.page-promotions {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-main); /* Default text color for main content */
  background: var(--background); /* Overall page background */
  overflow-x: hidden; /* Prevent horizontal scroll */
}

.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: clamp(1.8rem, 2.5vw, 2.5rem);
  color: var(--text-main);
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-promotions__section-description {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: 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; /* Small top padding, more bottom */
  text-align: center;
  overflow: hidden;
  background: var(--deep-green); /* Fallback background for hero area */
}

.page-promotions__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit height of the hero image */
  overflow: hidden;
}

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

.page-promotions__hero-content {
  position: relative; /* Ensure content is above image if any overlap */
  z-index: 10;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -80px; /* Pull content slightly up over the image */
  background: var(--card-bg); /* Dark background for readability over image */
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  transform: translateY(-50px); /* Lift up for visual effect */
}

.page-promotions__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem); /* Responsive H1 */
  color: var(--text-main);
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.page-promotions__hero-description {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: var(--text-secondary);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.page-promotions__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%; /* Ensure button responsiveness */
}

.page-promotions__btn-primary {
  background: var(--button-gradient);
  color: var(--text-main); /* Text Main */
  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%); /* Invert gradient on hover */
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions__btn-secondary {
  background: transparent;
  color: var(--text-main);
  border: 2px solid var(--border); /* Border color */
}

.page-promotions__btn-secondary:hover {
  background: rgba(46, 122, 78, 0.2); /* Deep Green with transparency */
  color: var(--text-main);
  transform: translateY(-2px);
}

.page-promotions__btn-large {
  padding: 18px 40px;
  font-size: 1.25rem;
}

/* --- Introduction Section --- */
.page-promotions__introduction-section {
  background: var(--background);
  color: var(--text-main);
}

/* --- Promo Grid Section --- */
.page-promotions__promo-grid {
  background: var(--background);
  padding-bottom: 80px;
}

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

.page-promotions__promo-card {
  background: var(--card-bg); /* Dark green background for cards */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  text-align: left;
  display: flex;
  flex-direction: column;
  height: 100%; /* Ensure cards are same height */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--text-main); /* Light text on dark card background */
}

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

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

.page-promotions__promo-card-title {
  font-size: 1.5rem;
  color: var(--text-main);
  margin: 20px 20px 10px 20px;
  font-weight: bold;
}

.page-promotions__promo-card-description {
  font-size: 0.95rem;
  color: var(--text-secondary);
  padding: 0 20px 20px 20px;
  flex-grow: 1; /* Push button to bottom */
}

.page-promotions__promo-card .page-promotions__cta-button {
  margin: 0 20px 20px 20px;
  width: calc(100% - 40px);
  text-align: center;
}

/* --- How To Claim Section --- */
.page-promotions__how-to-claim {
  background: var(--deep-green); /* Deep Green background */
  color: var(--text-main);
}

.page-promotions__how-to-claim .page-promotions__section-title {
  color: var(--text-main);
}

.page-promotions__how-to-claim .page-promotions__section-description {
  color: var(--text-secondary);
}

.page-promotions__claim-steps {
  list-style: none;
  padding: 0;
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-promotions__claim-step-item {
  background: var(--card-bg); /* Card BG for steps */
  border-radius: 12px;
  padding: 30px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: var(--text-main);
}

.page-promotions__step-title {
  font-size: 1.3rem;
  color: var(--gold); /* Gold for titles */
  margin-bottom: 10px;
  font-weight: bold;
}

.page-promotions__step-description {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.page-promotions__claim-step-item .page-promotions__cta-button {
  width: 100%;
  text-align: center;
  padding: 12px 20px;
  font-size: 1rem;
}

/* --- Terms & Conditions Summary Section --- */
.page-promotions__terms-conditions-summary {
  background: var(--background);
  color: var(--text-main);
}

.page-promotions__terms-list {
  list-style: disc;
  text-align: left;
  max-width: 800px;
  margin: 30px auto 40px auto;
  padding-left: 20px;
  color: var(--text-secondary);
}

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

/* --- FAQ Section --- */
.page-promotions__faq-section {
  background: var(--deep-green); /* Deep Green background */
  color: var(--text-main);
  padding-bottom: 80px;
}

.page-promotions__faq-section .page-promotions__section-title {
  color: var(--text-main);
}

.page-promotions__faq-list {
  max-width: 800px;
  margin: 50px auto 0 auto;
  text-align: left;
}

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

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1rem;
  color: var(--text-main);
  background: var(--card-bg);
  border-bottom: 1px solid var(--divider);
  transition: background 0.3s ease;
}

.page-promotions__faq-question:hover {
  background: rgba(46, 122, 78, 0.3); /* Slightly lighter hover */
}

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

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

.page-promotions__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  width: 20px;
  text-align: center;
  color: var(--gold); /* Gold toggle icon */
}

.page-promotions__faq-answer {
  padding: 15px 25px 20px 25px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
  background: var(--deep-green); /* Slightly different background for answer */
}

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

.page-promotions__faq-answer .page-promotions__cta-button {
  margin-top: 15px;
  width: auto;
  padding: 10px 20px;
  font-size: 0.9rem;
}

/* --- Final CTA Section --- */
.page-promotions__cta-final {
  background: var(--background);
  padding-bottom: 80px;
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
  .page-promotions__hero-content {
    margin-top: -60px;
    transform: translateY(-30px);
  }
}

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

  .page-promotions__hero-content {
    margin-top: -40px;
    transform: translateY(-20px);
    padding: 30px 15px;
  }

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

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

  .page-promotions__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-promotions__cta-button {
    width: 100%;
    padding: 12px 20px;
    font-size: 1rem;
  }
  
  .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;
    padding-left: 15px; /* Add padding to prevent text touching edges */
    padding-right: 15px;
  }
  
  .page-promotions__cta-buttons,
  .page-promotions__button-group,
  .page-promotions__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
  
  .page-promotions__cta-buttons {
    display: flex;
    flex-direction: column;
  }

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

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

  .page-promotions__section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
    margin-bottom: 15px;
  }

  .page-promotions__section-description {
    margin-bottom: 30px;
  }

  .page-promotions__card-grid,
  .page-promotions__claim-steps {
    grid-template-columns: 1fr;
  }

  .page-promotions__promo-card {
    margin: 0 auto;
  }

  .page-promotions__promo-card-image {
    height: 180px;
  }

  .page-promotions__faq-question,
  .page-promotions__faq-answer {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  /* Mobile image responsiveness */
  .page-promotions img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-promotions__section,
  .page-promotions__card,
  .page-promotions__container,
  .page-promotions__hero-image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-promotions__hero-section {
    padding-top: 10px !important; /* body already has padding-top */
  }
}

@media (max-width: 480px) {
  .page-promotions__hero-content {
    margin-top: -30px;
    transform: translateY(-15px);
  }
}

/* --- Color Contrast Rules (from instructions) --- */
/* Global text color for main content, assuming dark body background */
.page-promotions {
  color: var(--text-main); /* #F2FFF6 */
}

.page-promotions p,
.page-promotions li {
  color: var(--text-secondary); /* #A7D9B8 */
}

.page-promotions__section-title,
.page-promotions__main-title,
.page-promotions__promo-card-title,
.page-promotions__step-title,
.page-promotions__faq-question {
  color: var(--text-main); /* #F2FFF6 */
}

.page-promotions__step-title {
  color: var(--gold); /* Specific override for step titles */
}

.page-promotions__faq-toggle {
  color: var(--gold); /* Specific override for FAQ toggle */
}

.page-promotions__btn-primary {
  color: var(--text-main); /* #F2FFF6 */
}

.page-promotions__btn-secondary {
  color: var(--text-main); /* #F2FFF6 */
}