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

.page-promotions {
  font-family: 'Arial', sans-serif;
  color: var(--text-main); /* Default text color for the main content */
  background-color: var(--bg-color); /* Fallback if body background is light */
}

/* Color contrast adjustment based on body background */
.page-promotions {
  color: var(--text-main); /* Text Main */
}
.page-promotions__section-title,
.page-promotions__main-title {
  color: var(--gold-color); /* Gold for titles for emphasis and contrast */
}
.page-promotions__text-block,
.page-promotions__hero-description,
.page-promotions__card-description,
.page-promotions__terms-item,
.page-promotions__faq-answer p {
  color: var(--text-secondary); /* Text Secondary */
}
.page-promotions__card-title,
.page-promotions__step-title,
.page-promotions__feature-title,
.page-promotions__faq-question {
  color: var(--text-main); /* Text Main */
}
.page-promotions__terms-item strong {
  color: var(--text-main);
}

.page-promotions__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 0 60px 0; /* Small top padding, larger bottom padding */
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--deep-green) 0%, var(--bg-color) 100%);
}

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

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

.page-promotions__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 20px;
}

.page-promotions__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.5); /* Glow for Gold text */
}

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

.page-promotions__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  background: var(--btn-gradient);
  color: var(--text-main);
  border: none;
}

.page-promotions__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(17, 168, 78, 0.4);
}

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

.page-promotions__intro-section,
.page-promotions__types-section,
.page-promotions__how-to-claim-section,
.page-promotions__terms-section,
.page-promotions__why-choose-section,
.page-promotions__faq-section,
.page-promotions__cta-final-section {
  padding: 60px 0;
  background-color: var(--bg-color);
}

.page-promotions__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
  color: var(--gold-color);
}

.page-promotions__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--main-color);
  border-radius: 2px;
}

.page-promotions__text-block {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
  color: var(--text-secondary);
}

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

.page-promotions__card {
  background-color: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
}

.page-promotions__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

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

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

.page-promotions__card-description {
  font-size: 1rem;
  line-height: 1.7;
  padding: 0 20px;
  flex-grow: 1;
  color: var(--text-secondary);
}

.page-promotions__card-button {
  display: block;
  width: calc(100% - 40px);
  margin: 20px;
  padding: 12px 20px;
  text-align: center;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: background-color 0.3s ease;
  background: var(--btn-gradient);
  color: var(--text-main);
  border: none;
}

.page-promotions__card-button:hover {
  opacity: 0.9;
}

.page-promotions__step-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-promotions__step-item {
  background-color: var(--card-bg);
  border-left: 5px solid var(--main-color);
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions__step-title {
  font-size: 1.4rem;
  color: var(--text-main);
  margin-bottom: 10px;
}

.page-promotions__step-item a {
  color: var(--glow-color);
  text-decoration: none;
  font-weight: 600;
}
.page-promotions__step-item a:hover {
  text-decoration: underline;
}

.page-promotions__cta-wrapper {
  text-align: center;
  margin-top: 40px;
}

.page-promotions__read-more-link {
  display: inline-block;
  margin-top: 20px;
  color: var(--glow-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
}

.page-promotions__read-more-link:hover {
  text-decoration: underline;
}

.page-promotions__terms-list {
  list-style: disc;
  padding-left: 25px;
  margin-bottom: 20px;
}

.page-promotions__terms-item {
  margin-bottom: 10px;
  line-height: 1.7;
  color: var(--text-secondary);
}
.page-promotions__terms-item strong {
  color: var(--text-main);
}

.page-promotions__feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: center;
}

.page-promotions__feature-item {
  background-color: var(--card-bg);
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  border: 1px solid var(--border-color);
}

.page-promotions__feature-item:hover {
  transform: translateY(-5px);
}

.page-promotions__feature-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__feature-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-main);
}

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

.page-promotions__faq-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  background-color: var(--deep-green);
  border-bottom: 1px solid var(--border-color);
}
.page-promotions__faq-question:hover {
    background-color: var(--main-color); /* Slightly lighter green */
}

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

.page-promotions__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  width: 30px;
  text-align: center;
  color: var(--gold-color);
}

.page-promotions__faq-item[open] .page-promotions__faq-toggle {
  content: '−';
}

.page-promotions__faq-answer {
  padding: 20px 25px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.page-promotions__cta-final-section .page-promotions__section-title {
  color: var(--gold-color);
}

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

.page-promotions__btn-primary {
  background: var(--btn-gradient);
  color: var(--text-main);
}

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

.page-promotions__btn-secondary:hover {
  background: var(--main-color);
  color: var(--text-main);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-promotions__hero-image-wrapper {
    max-height: 400px;
  }
  .page-promotions__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
  .page-promotions__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  }
}

@media (max-width: 768px) {
  .page-promotions {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-promotions__hero-section {
    padding-bottom: 40px;
  }
  .page-promotions__hero-image-wrapper {
    max-height: 300px;
  }
  .page-promotions__hero-content {
    padding: 0 15px;
  }
  .page-promotions__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    margin-bottom: 10px;
  }
  .page-promotions__hero-description {
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    margin-bottom: 20px;
  }
  .page-promotions__cta-button {
    padding: 12px 20px;
    font-size: 1rem;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-promotions__intro-section,
  .page-promotions__types-section,
  .page-promotions__how-to-claim-section,
  .page-promotions__terms-section,
.page-promotions__why-choose-section,
  .page-promotions__faq-section,
  .page-promotions__cta-final-section {
    padding: 40px 0;
  }
  .page-promotions__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-promotions__section-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-bottom: 30px;
  }
  .page-promotions__card-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions__card-image {
    height: 200px;
  }
  .page-promotions__card-title {
    font-size: 1.3rem;
  }
  .page-promotions__feature-list {
    grid-template-columns: 1fr;
  }
  .page-promotions__feature-icon {
    width: 80px;
    height: 80px;
  }
  .page-promotions__faq-question {
    font-size: 1.1rem;
    padding: 15px 20px;
  }
  .page-promotions__faq-answer {
    padding: 15px 20px;
    font-size: 1rem;
  }
  .page-promotions__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  /* Mobile image responsiveness */
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  /* Ensure containers holding images/videos are also responsive */
  .page-promotions__section,
  .page-promotions__card,
  .page-promotions__container,
  .page-promotions__hero-image-wrapper,
  .page-promotions__feature-item,
  .page-promotions__step-item,
  .page-promotions__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important; /* Ensure content doesn't overflow */
  }
  .page-promotions__hero-image-wrapper,
  .page-promotions__video-section,
  .page-promotions__video-container,
  .page-promotions__video-wrapper {
    padding-left: 0 !important; /* Hero image/video should be full width */
    padding-right: 0 !important;
  }
  /* For text-based sections, add horizontal padding */
  .page-promotions__intro-section .page-promotions__container,
  .page-promotions__types-section .page-promotions__container,
  .page-promotions__how-to-claim-section .page-promotions__container,
  .page-promotions__terms-section .page-promotions__container,
  .page-promotions__why-choose-section .page-promotions__container,
  .page-promotions__faq-section .page-promotions__container,
  .page-promotions__cta-final-section .page-promotions__container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  /* Small top padding for first section */
  .page-promotions__hero-section {
    padding-top: 10px !important; /* body has --header-offset, this is for visual spacing */
  }
}

@media (max-width: 480px) {
  .page-promotions__main-title {
    font-size: clamp(1.5rem, 8vw, 2rem);
  }
  .page-promotions__section-title {
    font-size: clamp(1.3rem, 6vw, 1.8rem);
  }
  .page-promotions__cta-button {
    font-size: 0.95rem;
    padding: 10px 15px;
  }
  .page-promotions__card-title {
    font-size: 1.2rem;
  }
  .page-promotions__feature-title {
    font-size: 1.1rem;
  }
  .page-promotions__faq-question {
    font-size: 1rem;
  }
}