.page-promotions {
  --color-primary: #11A84E;
  --color-secondary: #22C768;
  --color-button-gradient-start: #2AD16F;
  --color-button-gradient-end: #13994A;
  --color-card-bg: #11271B;
  --color-background: #08160F;
  --color-text-main: #F2FFF6;
  --color-text-secondary: #A7D9B8;
  --color-border: #2E7A4E;
  --color-glow: #57E38D;
  --color-gold: #F2C14E;
  --color-divider: #1E3A2A;
  --color-deep-green: #0A4B2C;

  font-family: 'Arial', sans-serif;
  color: var(--color-text-main); /* Default text color for dark body background */
  line-height: 1.6;
  background-color: var(--color-background); /* Ensure consistent background */
}

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

.page-promotions__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  margin-bottom: 20px;
}

.page-promotions__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  max-width: 100%; /* Ensure image doesn't overflow */
}

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

.page-promotions__main-title {
  font-size: clamp(2.2em, 4vw, 3.2em);
  font-weight: 700;
  color: var(--color-text-main);
  margin-bottom: 15px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions__hero-description {
  font-size: clamp(1em, 1.8vw, 1.2em);
  color: var(--color-text-secondary);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__section {
  padding: 80px 20px;
  text-align: center;
}

.page-promotions__dark-bg {
  background-color: var(--color-background);
  color: var(--color-text-main);
}

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

.page-promotions__light-bg .page-promotions__link {
  color: var(--color-primary);
}

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

.page-promotions__section-title {
  font-size: clamp(1.8em, 3.5vw, 2.8em);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.page-promotions__dark-bg .page-promotions__section-title {
  color: var(--color-text-main);
}

.page-promotions__light-bg .page-promotions__section-title {
  color: #333333;
}

.page-promotions__section-description {
  font-size: clamp(0.95em, 1.6vw, 1.1em);
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: var(--color-text-secondary);
}

.page-promotions__light-bg .page-promotions__section-description {
  color: #555555;
}

.page-promotions__highlight {
  color: var(--color-gold);
  font-weight: bold;
}

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

.page-promotions__card {
  background-color: var(--color-card-bg);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--color-border);
  color: var(--color-text-main);
}

.page-promotions__light-bg .page-promotions__card {
  background-color: #ffffff;
  color: #333333;
  border: 1px solid #e0e0e0;
}

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

.page-promotions__feature-icon, .page-promotions__offer-image, .page-promotions__step-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 20px auto;
  border-radius: 10px;
  max-width: 100%; /* Ensure images don't overflow */
  object-fit: cover;
}

.page-promotions__feature-icon {
  max-width: 150px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 30px;
}

.page-promotions__card-title {
  font-size: 1.4em;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--color-gold);
}

.page-promotions__light-bg .page-promotions__card-title {
  color: var(--color-primary);
}

.page-promotions__card-text {
  font-size: 0.95em;
  color: var(--color-text-secondary);
  margin-bottom: 20px;
}

.page-promotions__light-bg .page-promotions__card-text {
  color: #555555;
}

.page-promotions__btn-primary, .page-promotions__btn-secondary {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions__btn-primary {
  background: var(--color-button-gradient-start);
  background: linear-gradient(180deg, var(--color-button-gradient-start) 0%, var(--color-button-gradient-end) 100%);
  color: #ffffff;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  filter: brightness(1.1);
}

.page-promotions__btn-secondary {
  background-color: transparent;
  color: var(--color-gold);
  border: 2px solid var(--color-gold);
  margin-left: 15px;
}

.page-promotions__btn-secondary:hover {
  background-color: var(--color-gold);
  color: var(--color-background);
  transform: translateY(-2px);
}

.page-promotions__offer-card .page-promotions__btn-secondary {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.page-promotions__offer-card .page-promotions__btn-secondary:hover {
  background-color: var(--color-primary);
  color: #ffffff;
}

.page-promotions__steps-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.page-promotions__step-item {
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  background-color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  color: #333333;
  border: 1px solid #e0e0e0;
}

.page-promotions__step-item .page-promotions__step-image {
  max-width: 200px;
  height: auto;
  margin-bottom: 20px;
}

.page-promotions__step-title {
  font-size: 1.3em;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.page-promotions__step-text {
  font-size: 0.95em;
  color: #555555;
}

.page-promotions__cta-wrapper {
  margin-top: 50px;
}

.page-promotions__terms-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  text-align: left;
}

.page-promotions__terms-item {
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-divider);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  color: var(--color-text-secondary);
}

.page-promotions__terms-subtitle {
  font-size: 1.25em;
  font-weight: 600;
  color: var(--color-gold);
  margin-bottom: 10px;
}

.page-promotions__terms-text {
  font-size: 1em;
  line-height: 1.7;
  color: var(--color-text-secondary);
}

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

.page-promotions__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #333333;
}

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15em;
  font-weight: 600;
  color: var(--color-primary);
  cursor: pointer;
  background-color: #f9f9f9;
  border-bottom: 1px solid #e0e0e0;
  list-style: none;
}

.page-promotions__faq-item[open] .page-promotions__faq-question {
  border-bottom: 1px solid #e0e0e0;
}

.page-promotions__faq-qtext {
  flex-grow: 1;
}

.page-promotions__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: var(--color-primary);
}

.page-promotions__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1em;
  line-height: 1.7;
  color: #555555;
}

.page-promotions__faq-item:not([open]) .page-promotions__faq-answer {
  display: none; /* Hide answer when not open for details tag */
}

.page-promotions__call-to-action {
  background-color: var(--color-deep-green);
  padding: 100px 20px;
  color: var(--color-text-main);
}

.page-promotions__call-to-action .page-promotions__section-title {
  color: var(--color-text-main);
}

.page-promotions__call-to-action .page-promotions__section-description {
  color: var(--color-text-secondary);
  margin-bottom: 50px;
}

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

.page-promotions__cta-buttons .page-promotions__btn-secondary {
  color: #ffffff;
  border-color: #ffffff;
}

.page-promotions__cta-buttons .page-promotions__btn-secondary:hover {
  background-color: #ffffff;
  color: var(--color-deep-green);
}

.page-promotions a {
  color: var(--color-gold);
  text-decoration: none;
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-promotions__section {
    padding: 60px 15px;
  }

  .page-promotions__hero-content {
    padding: 15px;
  }

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

  .page-promotions__hero-description {
    font-size: clamp(0.95em, 2vw, 1.1em);
  }

  .page-promotions__card {
    padding: 25px;
  }

  .page-promotions__feature-icon {
    max-width: 120px;
    height: 120px;
  }
}

@media (max-width: 768px) {
  .page-promotions__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }

  .page-promotions__hero-image-wrapper, .page-promotions__hero-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

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

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

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

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

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

  .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;
    margin: 0 0 10px 0 !important;
  }

  .page-promotions__cta-buttons {
    flex-direction: column;
    gap: 10px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-promotions__cta-buttons .page-promotions__btn-secondary {
    margin-left: 0 !important;
  }

  .page-promotions__terms-item, .page-promotions__faq-item {
    padding: 15px;
  }

  .page-promotions__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }

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

  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-promotions__section,
  .page-promotions__card,
  .page-promotions__container,
  .page-promotions__hero-section,
  .page-promotions__hero-image-wrapper,
  .page-promotions__hero-content,
  .page-promotions__feature-grid,
  .page-promotions__offer-grid,
  .page-promotions__steps-grid,
  .page-promotions__terms-list,
  .page-promotions__faq-list,
  .page-promotions__call-to-action,
  .page-promotions__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden !important;
  }

  .page-promotions__video-section {
    padding-top: 10px !important;
  }
  
  .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;
  }
}