.page-promo {
  font-family: 'Arial', sans-serif;
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
}

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

/* Hero Section */
.page-promo__hero-section {
  background: linear-gradient(135deg, #F2C14E, #FFD36B);
  padding-top: var(--header-offset, 120px); /* For fixed header */
  padding-bottom: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-promo__hero-content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-promo__hero-text-block {
  max-width: 800px;
  color: #0A0A0A;
}

.page-promo__hero-title {
  font-size: clamp(2.2em, 4vw, 3.5em);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #0A0A0A; /* Ensure contrast on yellow background */
  letter-spacing: -0.03em;
}

.page-promo__hero-description {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #333333; /* Darker text for readability on light background */
}

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

.page-promo__hero-image-wrapper {
  width: 100%;
  max-width: 800px;
  margin-top: 20px;
}

.page-promo__hero-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  display: block;
}

/* General Section Styling */
.page-promo__section-title {
  font-size: 2.5em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #FFD36B; /* Glow */
}

.page-promo__section-description {
  font-size: 1.1em;
  line-height: 1.7;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #FFF6D6; /* Text Main */
}

.page-promo__why-choose-section,
.page-promo__featured-promos-section,
.page-promo__how-to-claim-section,
.page-promo__terms-section,
.page-promo__faq-section {
  padding: 80px 0;
}

.page-promo__dark-section {
  background-color: #111111; /* Card BG */
  color: #FFF6D6;
}

.page-promo__light-bg {
  background-color: #0A0A0A;
  color: #FFF6D6;
}

/* Feature List */
.page-promo__feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
  margin-top: 50px;
}

.page-promo__feature-item {
  background-color: #111111; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #3A2A12; /* Border */
}

.page-promo__feature-title {
  font-size: 1.5em;
  font-weight: 600;
  margin-bottom: 15px;
  color: #FFD36B; /* Glow */
}

.page-promo__feature-text {
  font-size: 1em;
  line-height: 1.6;
  color: #FFF6D6; /* Text Main */
}

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

.page-promo__promo-card {
  background-color: #111111; /* Card BG */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #3A2A12; /* Border */
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.page-promo__promo-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.page-promo__promo-title {
  font-size: 1.4em;
  font-weight: 600;
  margin-bottom: 10px;
  color: #FFD36B; /* Glow */
}

.page-promo__promo-text {
  font-size: 0.95em;
  line-height: 1.6;
  color: #FFF6D6; /* Text Main */
  flex-grow: 1;
  margin-bottom: 20px;
}

/* How to Claim Steps */
.page-promo__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promo__step-item {
  background-color: #111111; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #3A2A12; /* Border */
}

.page-promo__step-icon {
  font-size: 2.5em;
  font-weight: 700;
  color: #F2C14E; /* Main Color */
  margin-bottom: 15px;
  background: rgba(242, 193, 78, 0.1);
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-promo__step-title {
  font-size: 1.4em;
  font-weight: 600;
  margin-bottom: 10px;
  color: #FFD36B; /* Glow */
}

.page-promo__step-text {
  font-size: 1em;
  line-height: 1.6;
  color: #FFF6D6; /* Text Main */
}

.page-promo__cta-buttons--centered {
  margin-top: 60px;
  text-align: center;
}

/* Mobile App Section */
.page-promo__mobile-app-container {
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 60px 20px;
}

.page-promo__mobile-app-text-content {
  flex: 1;
}

.page-promo__app-features-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  margin-bottom: 40px;
}

.page-promo__app-features-list li {
  font-size: 1.05em;
  line-height: 1.8;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
  color: #FFF6D6; /* Text Main */
}

.page-promo__app-features-list li::before {
  content: '✔';
  color: #F2C14E; /* Main Color */
  position: absolute;
  left: 0;
  top: 0;
}

.page-promo__mobile-app-image-wrapper {
  flex: 0 0 auto;
  width: 400px; /* Fixed width for desktop, will be responsive */
  text-align: center;
}

.page-promo__mobile-app-image {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  display: block;
}

/* Terms Section */
.page-promo__terms-list {
  list-style: disc;
  padding-left: 25px;
  margin-top: 40px;
  color: #FFF6D6; /* Text Main */
}

.page-promo__terms-list li {
  margin-bottom: 15px;
  line-height: 1.7;
}

.page-promo__terms-list strong {
  color: #F2C14E; /* Main Color */
}

.page-promo__read-more-terms {
  text-align: center;
  margin-top: 40px;
  font-size: 1.1em;
  color: #FFF6D6; /* Text Main */
}

/* FAQ Section */
.page-promo__faq-list {
  margin-top: 40px;
}

.page-promo__faq-item {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-promo__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: #1a1a1a; /* Slightly darker than card BG */
  color: #FFD36B; /* Glow */
  font-weight: 600;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

.page-promo__faq-question:hover {
  background-color: #2a2a2a;
}

.page-promo__faq-title {
  margin: 0;
  color: #FFD36B;
  font-size: 1.1em;
}

.page-promo__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #F2C14E;
}

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

.page-promo__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #FFF6D6; /* Text Main */
  background-color: #111111;
}

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

.page-promo__faq-answer p {
  margin: 0;
  line-height: 1.6;
  color: #FFF6D6;
}

.page-promo__more-faq-link {
  text-align: center;
  margin-top: 40px;
  font-size: 1.1em;
  color: #FFF6D6;
}

/* Buttons */
.page-promo__btn-primary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button color */
  color: #0A0A0A; /* Dark text for contrast on bright button */
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(242, 193, 78, 0.4);
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-promo__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(242, 193, 78, 0.6);
}

.page-promo__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  background: transparent;
  color: #F2C14E; /* Main Color */
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  border: 2px solid #F2C14E; /* Main Color */
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-promo__btn-secondary:hover {
  background-color: #F2C14E;
  color: #0A0A0A; /* Dark text on hover */
}

.page-promo__text-link {
  color: #F2C14E; /* Main Color */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promo__text-link:hover {
  color: #FFD36B; /* Glow */
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-promo__hero-text-block {
    max-width: 100%;
  }

  .page-promo__hero-image-wrapper {
    max-width: 600px;
  }

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

  .page-promo__mobile-app-container {
    flex-direction: column;
    text-align: center;
  }

  .page-promo__mobile-app-image-wrapper {
    width: 100%;
    max-width: 300px;
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .page-promo__hero-section {
    padding-top: var(--header-offset, 120px) !important;
    padding-bottom: 40px;
  }
  
  .page-promo__hero-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }

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

  .page-promo__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-promo__btn-primary,
  .page-promo__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 20px !important;
    font-size: 1em !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-promo__hero-cta-buttons,
  .page-promo__cta-buttons--centered {
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

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

  .page-promo__section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }

  .page-promo__why-choose-section,
  .page-promo__featured-promos-section,
  .page-promo__how-to-claim-section,
  .page-promo__terms-section,
  .page-promo__faq-section {
    padding: 60px 0;
  }

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

  .page-promo__promo-image {
    height: 200px;
  }

  .page-promo__mobile-app-container {
    padding: 40px 20px;
  }

  /* Mobile image responsive rules */
  .page-promo img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-promo__section,
  .page-promo__card,
  .page-promo__container,
  .page-promo__promo-card,
  .page-promo__step-item,
  .page-promo__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-promo__mobile-app-image-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .page-promo__hero-content-wrapper {
    padding: 0 15px;
  }
}