.page-promotions {
  background-color: #08160F; /* Background */
  color: #F2FFF6; /* Text Main */
  padding-top: 10px; /* Small top padding for first section */
}

/* Hero Section */
.page-promotions__hero-section {
  position: relative;
  display: flex;
  flex-direction: column; /* Image above text */
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-promotions__hero-image {
  width: 100%;
  max-width: 1200px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 30px; /* Space between image and content */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  min-width: 200px;
  min-height: 200px;
}

.page-promotions__hero-content {
  max-width: 800px;
}

.page-promotions__hero-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  font-size: clamp(2em, 5vw, 3.5em); /* Example clamp, ensuring it's not too big */
}

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

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

/* Buttons */
.page-promotions__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1em;
}

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

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

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

.page-promotions__btn--secondary:hover {
  background-color: rgba(42, 209, 111, 0.1);
  color: #F2FFF6; /* Text Main */
  border-color: #2AD16F;
}

.page-promotions__btn--small {
  padding: 8px 18px;
  font-size: 0.9em;
}

.page-promotions__btn--large {
  padding: 15px 35px;
  font-size: 1.1em;
}

/* List Section */
.page-promotions__list-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.page-promotions__list-title,
.page-promotions__how-to-claim-title,
.page-promotions__faq-title,
.page-promotions__cta-title {
  font-size: clamp(1.8em, 4vw, 2.8em);
  font-weight: 700;
  color: #F2C14E; /* Gold */
  margin-bottom: 25px;
  line-height: 1.3;
}

.page-promotions__list-intro {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  max-width: 900px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

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

.page-promotions__promotion-card {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #2E7A4E; /* Border */
  display: flex;
  flex-direction: column;
}

.page-promotions__promotion-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.page-promotions__promotion-image {
  width: 100%;
  height: 220px; /* 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.4em;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.4;
}

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

.page-promotions__card-title a:hover {
  color: #2AD16F; /* Primary button color */
}

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

.page-promotions__update-info {
  font-size: 0.9em;
  color: #A7D9B8; /* Text Secondary */
  margin-top: 20px;
}

/* How to Claim Section */
.page-promotions__how-to-claim-section {
  background-color: #0A4B2C; /* Deep Green */
  padding: 60px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 50px;
  max-width: 1200px;
  margin: 40px auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions__how-to-claim-content {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
}

.page-promotions__how-to-claim-title {
  text-align: left;
  margin-bottom: 20px;
}

.page-promotions__how-to-claim-description {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.6;
  margin-bottom: 40px;
}

.page-promotions__claim-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.page-promotions__claim-step {
  background-color: #11271B; /* Card BG */
  padding: 25px;
  border-radius: 10px;
  border: 1px solid #2E7A4E; /* Border */
  text-align: center;
}

.page-promotions__step-number {
  font-size: 2.5em;
  font-weight: 700;
  color: #F2C14E; /* Gold */
  margin-bottom: 10px;
  line-height: 1;
}

.page-promotions__step-title {
  font-size: 1.2em;
  font-weight: 600;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 10px;
}

.page-promotions__step-text {
  font-size: 0.95em;
  color: #A7D9B8; /* Text Secondary */
}

.page-promotions__how-to-claim-image {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  min-width: 200px;
  min-height: 200px;
}

/* FAQ Section */
.page-promotions__faq-section {
  padding: 60px 20px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.page-promotions__faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.page-promotions__faq-item {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  padding: 25px;
  text-align: left;
  border: 1px solid #2E7A4E; /* Border */
}

.page-promotions__faq-question {
  font-size: 1.2em;
  font-weight: 600;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  cursor: pointer;
  position: relative;
  padding-right: 30px; /* Space for arrow */
}

.page-promotions__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #2AD16F;
  transition: transform 0.3s ease;
}

.page-promotions__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(0deg); /* Keep it simple for '+' to '-' transition */
}

.page-promotions__faq-answer {
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.6;
  display: none; /* Hidden by default, toggled by JS */
}

/* CTA Section */
.page-promotions__cta-section {
  background-color: #0A4B2C; /* Deep Green */
  padding: 60px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 50px;
  max-width: 1200px;
  margin: 40px auto 80px auto;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions__cta-content {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
}

.page-promotions__cta-title {
  text-align: center;
  margin-bottom: 20px;
}

.page-promotions__cta-description {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.6;
  margin-bottom: 40px;
}

.page-promotions__cta-image {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  min-width: 200px;
  min-height: 200px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .page-promotions__hero-section {
    padding: 30px 15px;
  }
  .page-promotions__hero-title {
    font-size: clamp(1.8em, 4.5vw, 3em);
  }
  .page-promotions__list-section,
  .page-promotions__how-to-claim-section,
  .page-promotions__faq-section,
  .page-promotions__cta-section {
    padding: 40px 15px;
  }
  .page-promotions__list-title,
  .page-promotions__how-to-claim-title,
  .page-promotions__faq-title,
  .page-promotions__cta-title {
    font-size: clamp(1.6em, 3.5vw, 2.5em);
  }
  .page-promotions__promotion-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-promotions__how-to-claim-section,
  .page-promotions__cta-section {
    flex-direction: column;
    text-align: center;
  }
  .page-promotions__how-to-claim-content,
  .page-promotions__cta-content {
    order: 2; /* Content below image on smaller screens */
    margin-top: 30px;
  }
  .page-promotions__how-to-claim-image,
  .page-promotions__cta-image {
    order: 1; /* Image above content on smaller screens */
  }
  .page-promotions__how-to-claim-title {
    text-align: center;
  }
}

@media (max-width: 768px) {
  /* Enforce image responsiveness */
  .page-promotions img {
    max-width: 100%;
    height: auto;
  }
  .page-promotions__hero-image {
    height: 250px; /* Adjust hero image height for mobile */
  }
  .page-promotions__promotion-image {
    height: 180px; /* Adjust card image height for mobile */
  }
  .page-promotions__how-to-claim-image,
  .page-promotions__cta-image {
    height: 250px;
  }
  .page-promotions__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-promotions__btn {
    width: 100%;
    max-width: 280px;
  }
  .page-promotions__promotion-grid {
    grid-template-columns: 1fr; /* Single column on very small screens */
  }
  .page-promotions__claim-steps {
    grid-template-columns: 1fr;
  }
  /* Ensure content area images are not smaller than 200px by CSS */
  .page-promotions__promotion-image,
  .page-promotions__how-to-claim-image,
  .page-promotions__cta-image {
    min-width: 200px;
    min-height: 200px;
    width: 100%; /* Override max-width to ensure it fills */
  }
  .page-promotions__promotion-card {
    min-width: 200px; /* Ensure card itself is not too small */
  }
  .page-promotions__faq-question {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-promotions__hero-title {
    font-size: clamp(1.5em, 6vw, 2.5em);
  }
  .page-promotions__list-title,
  .page-promotions__how-to-claim-title,
  .page-promotions__faq-title,
  .page-promotions__cta-title {
    font-size: clamp(1.4em, 5vw, 2em);
  }
  .page-promotions__hero-description,
  .page-promotions__list-intro,
  .page-promotions__how-to-claim-description,
  .page-promotions__cta-description {
    font-size: 1em;
  }
  .page-promotions__btn--large {
    padding: 12px 25px;
    font-size: 1em;
  }
}