.page-promotions {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Default text color for light background */
  line-height: 1.6;
}

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

.page-promotions__section {
  padding: 60px 0;
  text-align: center;
}

.page-promotions__dark-section {
  background-color: #017439;
  color: #ffffff;
}

.page-promotions__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-promotions__section-title {
  font-size: 3em;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.2;
  color: inherit;
}

.page-promotions__text-block {
  font-size: 1.1em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-promotions__hero-image {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.page-promotions__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 15px;
  max-width: 900px;
  margin-top: -200px; /* Pull content up slightly over image for visual flow */
  background: rgba(1, 116, 57, 0.85); /* Semi-transparent brand color for text readability */
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  color: #ffffff;
}

.page-promotions__main-title {
  font-size: clamp(2.5em, 5vw, 3.5em);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.1;
  color: #FFFF00; /* Yellow for prominence */
}

.page-promotions__intro-text {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-promotions__cta-buttons--centered {
  margin-top: 40px;
}

.page-promotions__btn-primary,
.page-promotions__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions__btn-primary {
  background-color: #C30808; /* Register/Login color */
  color: #FFFF00; /* Register/Login font color */
  border: 2px solid #C30808;
}

.page-promotions__btn-primary:hover {
  background-color: #ff3333;
  border-color: #ff3333;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

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

.page-promotions__btn-secondary:hover {
  background-color: #ffffff;
  color: #017439;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

.page-promotions__btn-text {
  color: #017439;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.page-promotions__btn-text:hover {
  color: #C30808;
}

.page-promotions__overview-section .page-promotions__section-title,
.page-promotions__how-to-claim .page-promotions__section-title,
.page-promotions__terms-section .page-promotions__section-title,
.page-promotions__faq-section .page-promotions__section-title {
  color: #017439;
}

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

.page-promotions__feature-item {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  text-align: center;
}

.page-promotions__feature-item img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__feature-title {
  font-size: 1.8em;
  color: #017439;
  margin-bottom: 15px;
}

.page-promotions__feature-description {
  font-size: 1em;
  color: #555;
}

.page-promotions__promo-categories .page-promotions__section-title {
  color: #FFFF00;
}

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

.page-promotions__category-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  overflow: hidden;
  text-align: left;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.page-promotions__category-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-promotions__card-title {
  font-size: 1.5em;
  color: #017439;
  margin: 20px 20px 10px;
  flex-grow: 1;
}

.page-promotions__card-title a {
  color: #017439;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promotions__card-title a:hover {
  color: #C30808;
}

.page-promotions__card-description {
  font-size: 0.95em;
  color: #666;
  padding: 0 20px 20px;
}

.page-promotions__category-card .page-promotions__btn-text {
  display: inline-block;
  margin: 0 20px 20px;
  padding: 8px 0;
  border-bottom: 2px solid #017439;
}

.page-promotions__claim-steps {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
  max-width: 900px;
  margin: 50px auto;
  text-align: left;
}

.page-promotions__step-item {
  position: relative;
  padding-left: 70px;
  margin-bottom: 40px;
}

.page-promotions__step-item::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 50px;
  background-color: #017439;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: 700;
}

.page-promotions__step-title {
  font-size: 1.8em;
  color: #017439;
  margin-bottom: 10px;
}

.page-promotions__step-item p {
  font-size: 1.1em;
  color: #555;
}

.page-promotions__vip-section .page-promotions__section-title {
  color: #FFFF00;
}

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

.page-promotions__benefit-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.page-promotions__benefit-item img {
  max-width: 200px;
  height: auto;
  border-radius: 50%;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__benefit-title {
  font-size: 1.8em;
  color: #FFFF00;
  margin-bottom: 15px;
}

.page-promotions__benefit-item p {
  font-size: 1em;
  color: #f0f0f0;
}

.page-promotions__terms-list {
  list-style: disc;
  text-align: left;
  max-width: 800px;
  margin: 40px auto;
  padding-left: 20px;
}

.page-promotions__terms-list li {
  margin-bottom: 10px;
  font-size: 1.05em;
  color: #555;
}

.page-promotions__terms-list li strong {
  color: #017439;
}

/* FAQ Styles */
details.page-promotions__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #e0e0e0;
  overflow: hidden;
  background: #fff;
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

details.page-promotions__faq-item summary.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: #017439;
}

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

details.page-promotions__faq-item summary.page-promotions__faq-question:hover {
  background: #f5f5f5;
}

.page-promotions__faq-qtext {
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
}

.page-promotions__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #666;
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}

details.page-promotions__faq-item .page-promotions__faq-answer {
  padding: 0 20px 20px;
  background: #f9f9f9;
  border-radius: 0 0 5px 5px;
  color: #555;
}

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

.page-promotions__final-cta .page-promotions__section-title {
  color: #FFFF00;
}

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

/* General image rules */
.page-promotions img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --- Responsive Styles --- */
@media (max-width: 1024px) {
  .page-promotions__section-title {
    font-size: 2.5em;
  }
  .page-promotions__hero-image {
    height: 500px;
  }
  .page-promotions__hero-content {
    margin-top: -150px;
    padding: 30px 15px;
  }
  .page-promotions__main-title {
    font-size: clamp(2em, 4.5vw, 3em);
  }
  .page-promotions__intro-text {
    font-size: 1.1em;
  }
  .page-promotions__cta-buttons {
    gap: 15px;
  }
  .page-promotions__btn-primary, .page-promotions__btn-secondary {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promotions__features-grid, .page-promotions__categories-grid, .page-promotions__vip-benefits {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-promotions__step-title, .page-promotions__feature-title, .page-promotions__card-title, .page-promotions__benefit-title {
    font-size: 1.6em;
  }
}

@media (max-width: 849px) {
  .page-promotions__hero-image img {
    object-fit: contain !important; /* Prevent cropping on smaller screens */
    aspect-ratio: unset !important; /* Allow natural aspect ratio if needed */
  }
}

@media (max-width: 768px) {
  .page-promotions__container {
    padding: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  
  .page-promotions__section {
    padding: 40px 0;
  }
  
  .page-promotions__section-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
    margin-bottom: 20px;
  }
  
  .page-promotions__text-block {
    font-size: 1em;
    margin-bottom: 20px;
  }
  
  /* HERO Section */
  .page-promotions__hero-section {
    padding-top: 10px;
    padding-bottom: 40px;
  }
  .page-promotions__hero-image {
    height: 300px;
  }
  .page-promotions__hero-image img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    aspect-ratio: unset !important;
  }
  .page-promotions__hero-content {
    margin-top: -80px;
    padding: 20px 10px;
  }
  .page-promotions__main-title {
    font-size: clamp(1.8em, 6vw, 2.2em);
    margin-bottom: 15px;
  }
  .page-promotions__intro-text {
    font-size: 0.95em;
    margin-bottom: 25px;
  }
  .page-promotions__cta-buttons {
    flex-direction: column;
    gap: 10px;
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-promotions__btn-primary,
  .page-promotions__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 15px;
    font-size: 1em;
  }

  /* Feature/Category Grids */
  .page-promotions__features-grid,
  .page-promotions__categories-grid,
  .page-promotions__vip-benefits {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }
  
  .page-promotions__feature-item,
  .page-promotions__category-card,
  .page-promotions__benefit-item {
    padding: 20px;
  }
  
  .page-promotions__feature-item img,
  .page-promotions__category-card img,
  .page-promotions__benefit-item img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-promotions__feature-title,
  .page-promotions__card-title,
  .page-promotions__benefit-title {
    font-size: 1.4em;
  }
  
  .page-promotions__card-title a {
    font-size: 1.4em;
  }

  /* How To Claim Steps */
  .page-promotions__claim-steps {
    margin-top: 30px;
    padding-left: 0;
  }
  .page-promotions__step-item {
    padding-left: 60px;
    margin-bottom: 30px;
  }
  .page-promotions__step-item::before {
    width: 45px;
    height: 45px;
    font-size: 1.6em;
  }
  .page-promotions__step-title {
    font-size: 1.5em;
  }
  .page-promotions__step-item p {
    font-size: 0.95em;
  }

  /* Terms List */
  .page-promotions__terms-list {
    padding-left: 15px;
    margin-top: 30px;
  }
  .page-promotions__terms-list li {
    font-size: 0.95em;
  }

  /* FAQ */
  details.page-promotions__faq-item summary.page-promotions__faq-question {
    padding: 15px;
  }
  .page-promotions__faq-qtext {
    font-size: 15px;
  }
  .page-promotions__faq-toggle {
    font-size: 20px;
    width: 24px;
    margin-left: 10px;
  }
  details.page-promotions__faq-item .page-promotions__faq-answer {
    padding: 0 15px 15px;
  }
  
  /* Ensure content containers are responsive */
  .page-promotions__overview-section,
  .page-promotions__promo-categories,
  .page-promotions__how-to-claim,
  .page-promotions__vip-section,
  .page-promotions__terms-section,
  .page-promotions__faq-section,
  .page-promotions__final-cta {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
  }
  
  /* Generic img rule for mobile */
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
}