.page-promotions {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Default text color for dark body background */
  background-color: #08160F; /* Fallback, actual is var(--background-color) from shared.css */
}

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

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

.page-promotions__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  max-height: 600px; /* Limit height for aesthetic */
  filter: brightness(0.7); /* Darken image slightly for text readability */
}

.page-promotions__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 800px;
  z-index: 10;
  color: #F2FFF6;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-promotions__hero-title {
  font-size: clamp(1.8rem, 5vw, 3.5rem);
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 15px;
}

.page-promotions__hero-description {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  margin-bottom: 30px;
}

/* Common Section Styles */
.page-promotions__section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #F2FFF6;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  padding-top: 40px;
}

.page-promotions__text-block {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #A7D9B8;
  text-align: center;
}

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

.page-promotions__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  border: none;
}

.page-promotions__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 255, 100, 0.4);
}

.page-promotions__btn-secondary {
  background: transparent;
  color: #2AD16F;
  border: 2px solid #2AD16F;
}

.page-promotions__btn-secondary:hover {
  background: rgba(42, 209, 111, 0.1);
  transform: translateY(-2px);
}

.page-promotions__button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* Section Backgrounds */
.page-promotions__dark-bg {
  background-color: #0A4B2C;
  padding: 60px 0;
}

.page-promotions__introduction-section .page-promotions__text-block {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Benefits Section */
.page-promotions__benefits-section {
  padding: 60px 0;
  background-color: #08160F;
}

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

.page-promotions__benefit-card {
  text-align: center;
  padding: 30px;
  border-radius: 12px;
  background-color: #11271B; /* Card BG */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  color: #F2FFF6;
}

.page-promotions__benefit-icon {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-promotions__card-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #2AD16F;
}

.page-promotions__card-description {
  font-size: 1rem;
  color: #A7D9B8;
}

/* Types Section */
.page-promotions__list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-promotions__list-item {
  background-color: #11271B;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 10px;
  color: #F2FFF6;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__list-title {
  font-size: 1.4rem;
  color: #2AD16F;
  margin-bottom: 10px;
}

.page-promotions__list-description {
  font-size: 1rem;
  color: #A7D9B8;
}

/* Featured Offers Section */
.page-promotions__featured-offers-section {
  padding: 60px 0;
  background-color: #08160F;
}

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

.page-promotions__offer-card {
  background-color: #11271B;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  color: #F2FFF6;
}

.page-promotions__offer-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

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

.page-promotions__offer-title {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #2AD16F;
}

.page-promotions__offer-description {
  font-size: 1rem;
  color: #A7D9B8;
  margin-bottom: 15px;
  flex-grow: 1;
}

.page-promotions__offer-date {
  font-size: 0.9rem;
  color: #A7D9B8;
  margin-bottom: 20px;
}

/* How to Claim Section */
.page-promotions__how-to-claim-section {
  padding: 60px 0;
}

.page-promotions__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  counter-reset: step-counter;
}

.page-promotions__step-item {
  background-color: #11271B;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 10px;
  display: flex;
  align-items: flex-start;
  color: #F2FFF6;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__step-item::before {
  counter-increment: step-counter;
  content: "0" counter(step-counter);
  font-size: 2rem;
  font-weight: bold;
  color: #2AD16F;
  margin-right: 20px;
  flex-shrink: 0;
}

.page-promotions__step-title {
  font-size: 1.4rem;
  color: #2AD16F;
  margin-bottom: 5px;
}

.page-promotions__step-description {
  font-size: 1rem;
  color: #A7D9B8;
}

/* Terms & Conditions Section */
.page-promotions__terms-conditions-section {
  padding: 60px 0;
  background-color: #08160F;
}

.page-promotions__terms-conditions-section .page-promotions__text-block {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

/* FAQ Section */
.page-promotions__faq-section {
  padding: 60px 0;
}

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

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

.page-promotions__faq-item summary {
  list-style: none;
  padding: 20px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #F2FFF6;
  font-weight: bold;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
}

.page-promotions__faq-item summary:hover {
  background-color: #1E3A2A;
}

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

.page-promotions__faq-qtext {
  color: #F2FFF6;
}

.page-promotions__faq-toggle {
  font-size: 1.5rem;
  color: #2AD16F;
  margin-left: 15px;
  flex-shrink: 0;
}

.page-promotions__faq-answer {
  padding: 15px 25px 20px;
  background-color: #0A4B2C;
  color: #A7D9B8;
  font-size: 1rem;
}

/* Final CTA Section */
.page-promotions__cta-final-section {
  padding: 60px 0;
  background-color: #08160F;
  text-align: center;
}

.page-promotions__cta-final-section .page-promotions__text-block {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions__hero-image {
    max-height: 500px;
  }
}

@media (max-width: 768px) {
  .page-promotions__hero-image {
    max-height: 400px;
  }

  .page-promotions__hero-content {
    width: 95%;
  }

  .page-promotions__hero-title {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
  }

  .page-promotions__hero-description {
    font-size: clamp(0.9rem, 3vw, 1.1rem);
  }

  .page-promotions__section-title {
    font-size: clamp(1.5rem, 5vw, 2.2rem);
  }

  .page-promotions__text-block, .page-promotions__card-description, .page-promotions__list-description, .page-promotions__offer-description, .page-promotions__step-description, .page-promotions__faq-answer {
    font-size: 0.95rem;
  }

  .page-promotions__grid, .page-promotions__offer-grid {
    grid-template-columns: 1fr;
  }

  .page-promotions__benefit-icon {
    max-width: 200px;
  }

  .page-promotions__list-item, .page-promotions__step-item, .page-promotions__offer-card, .page-promotions__faq-item {
    margin-left: 15px;
    margin-right: 15px;
  }

  .page-promotions__cta-button {
    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__button-group {
    flex-direction: column !important;
    gap: 15px !important;
    padding-left: 15px;
    padding-right: 15px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  /* 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-section,
  .page-promotions__introduction-section,
  .page-promotions__benefits-section,
  .page-promotions__types-section,
  .page-promotions__featured-offers-section,
  .page-promotions__how-to-claim-section,
  .page-promotions__terms-conditions-section,
  .page-promotions__faq-section,
  .page-promotions__cta-final-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }

  .page-promotions__hero-section {
    padding-left: 0;
    padding-right: 0;
  }

  .page-promotions__hero-image {
    filter: brightness(0.6) !important; /* Slightly darker for mobile readability */
  }

  .page-promotions__hero-content {
    top: 55%; /* Adjust vertical position */
  }

  .page-promotions__step-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .page-promotions__step-item::before {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .page-promotions__faq-item summary {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .page-promotions__hero-title {
    font-size: clamp(1.3rem, 7vw, 2rem);
  }

  .page-promotions__hero-description {
    font-size: clamp(0.85rem, 3.5vw, 1rem);
  }

  .page-promotions__cta-button {
    padding: 12px 20px;
    font-size: 1rem;
  }

  .page-promotions__section-title {
    font-size: clamp(1.3rem, 6vw, 1.8rem);
  }

  .page-promotions__card-title, .page-promotions__list-title, .page-promotions__offer-title, .page-promotions__step-title {
    font-size: 1.2rem;
  }
}