.page-promotions {
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-promotions__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column; /* Image on top, content below */
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-bottom: 40px; /* Space below hero content */
  background-color: #08160F; /* Ensure consistent dark background */
}

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

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

.page-promotions__hero-content {
  position: relative; /* Not absolute, to flow below image */
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  margin-top: -100px; /* Overlap slightly with image for design, but text is below */
  background-color: rgba(8, 22, 15, 0.8); /* Semi-transparent background for readability */
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  color: #F2FFF6;
}

.page-promotions__main-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.2;
}

.page-promotions__lead-text {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  max-width: 100%; /* For mobile responsiveness */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(42, 209, 111, 0.4);
}

.page-promotions__section {
  padding: 60px 0;
  background-color: #08160F; /* Background */
  color: #F2FFF6; /* Text Main */
}

.page-promotions__section:nth-of-type(even) {
  background-color: #11271B; /* Card BG */
}

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

.page-promotions__section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.3;
}

.page-promotions__text-block {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #A7D9B8; /* Text Secondary */
}

.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; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  color: #F2FFF6; /* Text Main */
  border: 1px solid #2E7A4E; /* Border */
}

.page-promotions__offer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(42, 209, 111, 0.4);
}

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

.page-promotions__card-title {
  font-size: 1.5rem;
  color: #F2FFF6; /* Text Main */
  padding: 20px 20px 10px;
  font-weight: bold;
}

.page-promotions__card-description {
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  padding: 0 20px 20px;
  flex-grow: 1; /* Pushes button to bottom */
}

.page-promotions__card-button {
  display: block;
  width: calc(100% - 40px); /* Full width minus padding */
  margin: 0 20px 20px;
  padding: 12px 20px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  max-width: 100%; /* For mobile responsiveness */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions__card-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

.page-promotions__how-to-claim .page-promotions__text-block {
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-promotions__step-item {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Border */
}

.page-promotions__step-title {
  font-size: 1.3rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions__step-item p {
  color: #A7D9B8; /* Text Secondary */
  font-size: 1rem;
}

.page-promotions__step-item a {
  color: #2AD16F; /* Highlight links */
  text-decoration: none;
  font-weight: bold;
}

.page-promotions__step-item a:hover {
  text-decoration: underline;
}

.page-promotions__cta-block {
  text-align: center;
  margin-top: 60px;
  padding: 30px;
  background-color: #0A4B2C; /* Deep Green */
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E;
}

.page-promotions__cta-block p {
  font-size: 1.2rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 25px;
  font-weight: 500;
}

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

.page-promotions__terms-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-promotions__terms-item {
  background-color: #11271B; /* Card BG */
  border-left: 4px solid #2AD16F;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-promotions__terms-item strong {
  color: #F2FFF6; /* Text Main */
  font-weight: bold;
}

.page-promotions__terms-conditions a {
  color: #2AD16F;
  text-decoration: none;
}

.page-promotions__terms-conditions a:hover {
  text-decoration: underline;
}

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

.page-promotions__benefits-item {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  padding: 20px;
  font-size: 1.05rem;
  color: #A7D9B8; /* Text Secondary */
  position: relative;
  padding-left: 45px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  border: 1px solid #2E7A4E;
}

.page-promotions__benefits-item::before {
  content: '✅';
  position: absolute;
  left: 15px;
  top: 20px;
  font-size: 1.2rem;
  line-height: 1;
}

.page-promotions__benefits-item strong {
  color: #F2FFF6; /* Text Main */
}

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

.page-promotions__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #F2FFF6; /* Text Main */
}

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  background-color: #0A4B2C; /* Deep Green */
  border-bottom: 1px solid #1E3A2A; /* Divider */
  transition: background-color 0.3s ease;
}

.page-promotions__faq-question:hover {
  background-color: #13994A; /* Slightly lighter green on hover */
}

.page-promotions__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  width: 25px;
  text-align: center;
}

.page-promotions__faq-answer {
  padding: 0 25px;
  background-color: #11271B; /* Card BG */
  color: #A7D9B8; /* Text Secondary */
  font-size: 1rem;
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-promotions__faq-item[open] .page-promotions__faq-answer {
  max-height: 500px; /* Adjust as needed for content */
  padding: 15px 25px 25px;
}

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

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

.page-promotions__conclusion .page-promotions__text-block {
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__cta-button--final {
  margin-top: 40px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-promotions__hero-content {
    margin-top: -80px;
    padding: 15px;
  }

  .page-promotions__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }

  .page-promotions__lead-text {
    font-size: clamp(0.9rem, 1.8vw, 1.2rem);
  }

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

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

  .page-promotions__section-title {
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  }

  .page-promotions__offer-card {
    height: auto; /* Allow cards to adjust height */
  }

  .page-promotions__card-image {
    height: 200px; /* Slightly smaller image on tablet */
  }
}

@media (max-width: 768px) {
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-promotions__hero-image-wrapper,
  .page-promotions__offer-card,
  .page-promotions__step-item,
  .page-promotions__terms-item,
  .page-promotions__benefits-item,
  .page-promotions__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

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

  .page-promotions__hero-content {
    margin-top: -60px;
    padding: 15px;
    width: calc(100% - 30px); /* Adjust for padding */
  }

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

  .page-promotions__lead-text {
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  }

  .page-promotions__cta-button,
  .page-promotions__card-button,
  .page-promotions__cta-button--large,
  .page-promotions__cta-button--final {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .page-promotions__offer-grid,
  .page-promotions__steps-list,
  .page-promotions__benefits-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-promotions__card-image {
    height: 180px;
  }

  .page-promotions__card-title {
    font-size: 1.3rem;
    padding: 15px 15px 10px;
  }

  .page-promotions__card-description {
    padding: 0 15px 15px;
  }

  .page-promotions__card-button {
    width: calc(100% - 30px);
    margin: 0 15px 15px;
    padding: 10px 15px;
  }

  .page-promotions__step-item {
    padding: 20px;
  }

  .page-promotions__cta-block {
    padding: 20px;
  }

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

  .page-promotions__text-block,
  .page-promotions__terms-item,
  .page-promotions__benefits-item,
  .page-promotions__faq-question,
  .page-promotions__faq-answer p {
    font-size: 0.95rem;
  }
  
  .page-promotions__faq-question {
    padding: 15px 20px;
    font-size: 1.05rem;
  }

  .page-promotions__faq-answer {
    padding: 0 20px;
  }

  .page-promotions__faq-item[open] .page-promotions__faq-answer {
    padding: 10px 20px 20px;
  }

  .page-promotions__video-section {
    padding-top: 10px !important; /* body already handles --header-offset */
  }

  /* Video related styles for mobile */
  .page-promotions video,
  .page-promotions__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-promotions__video-section,
  .page-promotions__video-container,
  .page-promotions__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
}

/* Desktop width for __video-container check: */
.page-promotions__video-container {
  width: 100%; /* Ensure width is 100% on desktop too */
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

/* Ensure no CSS filters are used on images */
.page-promotions img {
  filter: none; /* Explicitly ensure no filters */
}