:root {
  --jl3-primary-color: #F2C14E;
  --jl3-secondary-color: #FFD36B;
  --jl3-card-bg: #111111;
  --jl3-background: #0A0A0A;
  --jl3-text-main: #FFF6D6;
  --jl3-border: #3A2A12;
  --jl3-glow: #FFD36B;
  --button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
}

.page-promo {
  background-color: var(--jl3-background);
  color: var(--jl3-text-main);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-promo__section-title {
  font-size: clamp(2em, 4vw, 2.8em);
  color: var(--jl3-primary-color);
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-promo__section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: var(--jl3-text-main);
}

.page-promo__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0;
  background-color: var(--jl3-background);
  position: relative;
  overflow: hidden;
}

.page-promo__hero-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
  margin-bottom: 30px;
}

.page-promo__hero-content {
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
}

.page-promo__hero-title {
  font-size: clamp(2.5em, 5vw, 3.8em);
  color: var(--jl3-secondary-color);
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.2;
}

.page-promo__hero-description {
  font-size: 1.2em;
  color: var(--jl3-text-main);
  margin-bottom: 30px;
}

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

.page-promo__btn-primary {
  background: var(--button-gradient);
  color: #000000; /* Dark text for contrast on yellow/gold gradient */
  border: none;
}

.page-promo__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 211, 107, 0.4);
}

.page-promo__btn-secondary {
  background: transparent;
  color: var(--jl3-secondary-color);
  border: 2px solid var(--jl3-secondary-color);
}

.page-promo__btn-secondary:hover {
  background: var(--jl3-secondary-color);
  color: var(--jl3-background);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 211, 107, 0.4);
}

.page-promo__btn-large {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-promo__why-choose-section,
.page-promo__promo-types-section,
.page-promo__how-to-claim-section,
.page-promo__featured-promos-section,
.page-promo__terms-section,
.page-promo__faq-section,
.page-promo__final-cta-section {
  padding: 60px 0;
  background-color: var(--jl3-background);
}

.page-promo__feature-list,
.page-promo__steps-list,
.page-promo__terms-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 800px;
}

.page-promo__feature-item,
.page-promo__step-item,
.page-promo__terms-item {
  background-color: var(--jl3-card-bg);
  border: 1px solid var(--jl3-border);
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  color: var(--jl3-text-main);
  position: relative;
  padding-left: 50px;
}

.page-promo__feature-item::before {
  content: '✓';
  color: var(--jl3-secondary-color);
  font-size: 1.5em;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
}

.page-promo__step-title {
  color: var(--jl3-primary-color);
  font-size: 1.3em;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-promo__step-text {
  color: var(--jl3-text-main);
}

.page-promo__promo-cards-grid,
.page-promo__featured-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-promo__promo-card,
.page-promo__featured-card {
  background-color: var(--jl3-card-bg);
  border: 1px solid var(--jl3-border);
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.page-promo__promo-card-image,
.page-promo__featured-card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 20px;
}

.page-promo__promo-card-title,
.page-promo__featured-card-title {
  color: var(--jl3-primary-color);
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-promo__promo-card-title a,
.page-promo__featured-card-title a {
  color: var(--jl3-primary-color);
  text-decoration: none;
}

.page-promo__promo-card-title a:hover,
.page-promo__featured-card-title a:hover {
  text-decoration: underline;
}

.page-promo__promo-card-text,
.page-promo__featured-card-text {
  color: var(--jl3-text-main);
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promo__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

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

.page-promo__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1em;
  color: var(--jl3-text-main);
  transition: background-color 0.3s ease;
}

.page-promo__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.page-promo__faq-title {
  margin: 0;
  color: var(--jl3-primary-color);
}

.page-promo__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: var(--jl3-secondary-color);
}

.page-promo__faq-item.active .page-promo__faq-toggle {
  transform: rotate(45deg);
}

.page-promo__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--jl3-text-main);
}

.page-promo__faq-item.active .page-promo__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 15px 20px;
}

.page-promo__final-cta-section .page-promo__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.page-promo__link {
  color: var(--jl3-secondary-color);
  text-decoration: none;
}

.page-promo__link:hover {
  text-decoration: underline;
}

/* Responsive styles */
@media (max-width: 768px) {
  .page-promo {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-promo__container {
    padding-left: 15px !important;
    padding-right: 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-promo__hero-section {
    padding: 10px 0 40px 0;
  }

  .page-promo__hero-title {
    font-size: 2em;
  }

  .page-promo__hero-description {
    font-size: 1em;
  }

  .page-promo__section-title {
    font-size: 1.8em;
  }

  .page-promo__section-description {
    font-size: 0.95em;
  }

  .page-promo__btn-primary,
  .page-promo__btn-secondary,
  .page-promo a[class*="button"],
  .page-promo a[class*="btn"] {
    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-promo__cta-buttons,
  .page-promo__button-group,
  .page-promo__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-direction: column !important;
    gap: 10px;
  }

  .page-promo img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block;
  }

  .page-promo__promo-card-image,
  .page-promo__featured-card-image {
    height: auto;
  }

  .page-promo__promo-cards-grid,
  .page-promo__featured-cards-grid {
    grid-template-columns: 1fr;
  }

  .page-promo__feature-item,
  .page-promo__step-item,
  .page-promo__terms-item {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-promo__feature-item::before {
    top: 20px;
    transform: translateY(0);
  }

  .page-promo__faq-answer {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-promo__faq-item.active .page-promo__faq-answer {
    padding: 15px !important;
  }

  .page-promo__why-choose-section,
  .page-promo__promo-types-section,
  .page-promo__how-to-claim-section,
  .page-promo__featured-promos-section,
  .page-promo__terms-section,
  .page-promo__faq-section,
  .page-promo__final-cta-section {
    padding: 40px 0;
  }
}