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

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

.page-promotions__section {
  padding: 60px 0;
  text-align: center;
}

.page-promotions__section-title {
  font-size: 2.8em;
  font-weight: bold;
  color: var(--gold);
  margin-bottom: 30px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.page-promotions__text-block {
  font-size: 1.1em;
  color: var(--text-secondary);
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__btn-primary,
.page-promotions__btn-secondary,
.page-promotions__btn-tertiary {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
}

.page-promotions__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: var(--text-main);
  border: none;
  box-shadow: 0 4px 15px rgba(17, 168, 78, 0.4);
}

.page-promotions__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 6px 20px rgba(17, 168, 78, 0.6);
  transform: translateY(-2px);
}

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

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

.page-promotions__btn-tertiary {
  background-color: transparent;
  color: var(--glow);
  border: 2px solid var(--glow);
}

.page-promotions__btn-tertiary:hover {
  background-color: var(--glow);
  color: var(--background);
}

/* Hero Section */
.page-promotions__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* body padding-top handles header offset */
  overflow: hidden;
  background-color: var(--background);
}

.page-promotions__hero-image-wrapper {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
}

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

.page-promotions__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  text-align: center;
  margin-top: 40px;
  padding: 0 20px;
}

.page-promotions__main-title {
  font-size: clamp(2.5em, 4vw, 3.8em);
  font-weight: 900;
  color: var(--text-main);
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.03em;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.page-promotions__hero-description {
  font-size: 1.3em;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Intro Section */
.page-promotions__intro-section {
  background-color: var(--background);
  padding: 80px 0;
}

/* Types Section */
.page-promotions__types-section {
  background-color: var(--card-bg);
  padding: 80px 0;
}

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

.page-promotions__card {
  background-color: var(--deep-green);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  box-sizing: border-box;
}

.page-promotions__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-promotions__card-title {
  font-size: 1.8em;
  color: var(--text-main);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions__card-description {
  font-size: 1em;
  color: var(--text-secondary);
  margin-bottom: 25px;
  flex-grow: 1;
}

/* Cashback Section */
.page-promotions__cashback-section {
  background-color: var(--background);
  padding: 80px 0;
}

.page-promotions__cashback-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 50px;
}

.page-promotions__cashback-item {
  background-color: var(--card-bg);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  box-sizing: border-box;
}

.page-promotions__cashback-title {
  font-size: 1.6em;
  color: var(--gold);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions__cashback-description {
  font-size: 1em;
  color: var(--text-secondary);
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-promotions__cashback-info {
  margin-top: 40px;
  font-style: italic;
  color: var(--text-secondary);
}

/* Terms Section */
.page-promotions__terms-section {
  background-color: var(--card-bg);
  padding: 80px 0;
}

.page-promotions__terms-list {
  list-style: none;
  padding: 0;
  margin-top: 50px;
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__terms-item {
  background-color: var(--deep-green);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-left: 5px solid var(--glow);
}

.page-promotions__terms-subtitle {
  font-size: 1.5em;
  color: var(--text-main);
  margin-bottom: 10px;
}

.page-promotions__terms-item p {
  color: var(--text-secondary);
  font-size: 1em;
}

.page-promotions__terms-footer {
  margin-top: 40px;
  font-style: italic;
  color: var(--text-secondary);
}

/* How-To-Claim Section */
.page-promotions__how-to-claim-section {
  background-color: var(--background);
  padding: 80px 0;
}

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

.page-promotions__step-item {
  background-color: var(--card-bg);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  box-sizing: border-box;
}

.page-promotions__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: var(--text-main);
  font-size: 2em;
  font-weight: bold;
  border-radius: 50%;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(17, 168, 78, 0.4);
}

.page-promotions__step-title {
  font-size: 1.6em;
  color: var(--text-main);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions__step-item p {
  color: var(--text-secondary);
  font-size: 1em;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions__how-to-claim-footer {
  margin-top: 40px;
  font-style: italic;
  color: var(--text-secondary);
}

/* FAQ Section */
.page-promotions__faq-section {
  background-color: var(--card-bg);
  padding: 80px 0;
}

.page-promotions__faq-list {
  max-width: 900px;
  margin: 50px auto 0 auto;
  text-align: left;
}

.page-promotions__faq-item {
  background-color: var(--deep-green);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

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

.page-promotions__faq-question:hover {
  background-color: #1a4230; /* Slightly lighter deep green */
}

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

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

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

.page-promotions__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1em;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* CTA Bottom Section */
.page-promotions__cta-bottom-section {
  background-color: var(--background);
  padding: 80px 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions__section-title {
    font-size: 2.5em;
  }
  .page-promotions__main-title {
    font-size: clamp(2em, 3.5vw, 3em);
  }
}

@media (max-width: 768px) {
  .page-promotions__section {
    padding: 40px 0;
  }
  .page-promotions__section-title {
    font-size: 2em;
  }
  .page-promotions__hero-content {
    margin-top: 20px;
  }
  .page-promotions__main-title {
    font-size: clamp(1.8em, 5vw, 2.5em);
  }
  .page-promotions__hero-description {
    font-size: 1.1em;
    margin-bottom: 30px;
  }
  .page-promotions__grid,
  .page-promotions__cashback-grid,
  .page-promotions__steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-promotions__card,
  .page-promotions__cashback-item,
  .page-promotions__step-item,
  .page-promotions__terms-item {
    padding: 20px;
  }
  .page-promotions__card-title,
  .page-promotions__cashback-title,
  .page-promotions__step-title,
  .page-promotions__terms-subtitle {
    font-size: 1.4em;
  }
  .page-promotions__text-block,
  .page-promotions__hero-description,
  .page-promotions__card-description,
  .page-promotions__cashback-description,
  .page-promotions__terms-item p,
  .page-promotions__how-to-claim-footer,
  .page-promotions__cashback-info,
  .page-promotions__faq-question,
  .page-promotions__faq-answer {
    font-size: 1em;
  }

  /* Mobile responsive for images */
  .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__types-section,
  .page-promotions__cashback-section,
  .page-promotions__terms-section,
  .page-promotions__how-to-claim-section,
  .page-promotions__faq-section,
  .page-promotions__cta-bottom-section,
  .page-promotions__grid,
  .page-promotions__cashback-grid,
  .page-promotions__steps-grid,
  .page-promotions__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden !important;
  }

  /* Mobile responsive for buttons */
  .page-promotions__btn-primary,
  .page-promotions__btn-secondary,
  .page-promotions__btn-tertiary,
  .page-promotions a[class*="button"],
  .page-promotions 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-promotions__hero-content .page-promotions__btn-primary {
      margin-left: auto;
      margin-right: auto;
  }
  .page-promotions__cta-buttons,
  .page-promotions__button-group,
  .page-promotions__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
  .page-promotions__cta-buttons {
    display: flex;
    flex-direction: column;
  }
  .page-promotions__hero-section {
    padding-top: 10px !important;
  }
}

@media (max-width: 480px) {
  .page-promotions__section-title {
    font-size: 1.8em;
  }
  .page-promotions__main-title {
    font-size: clamp(1.6em, 6vw, 2em);
  }
  .page-promotions__hero-description {
    font-size: 0.95em;
  }
  .page-promotions__btn-primary,
  .page-promotions__btn-secondary,
  .page-promotions__btn-tertiary {
    padding: 12px 20px;
    font-size: 0.9em;
  }
  .page-promotions__card-title,
  .page-promotions__cashback-title,
  .page-promotions__step-title,
  .page-promotions__terms-subtitle {
    font-size: 1.2em;
  }
  .page-promotions__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-promotions__faq-answer {
    padding: 0 20px 15px 20px;
  }
}