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

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

.page-promotions__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0 60px 0; /* Small top padding, more bottom padding */
  text-align: center;
  overflow: hidden;
}

.page-promotions__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit height to prevent excessive stretching */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.page-promotions__hero-content {
  position: relative;
  z-index: 10;
  padding: 40px 20px;
  background-color: var(--card-bg); /* Dark background for text over dark hero */
  margin-top: -80px; /* Overlap slightly with image for visual flow */
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  max-width: 800px;
  width: 100%;
  box-sizing: border-box;
}

.page-promotions__main-title {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-promotions__intro-text {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-promotions__btn-primary,
.page-promotions__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: 2px solid transparent;
}

.page-promotions__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

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

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

.page-promotions__btn-small {
  padding: 10px 20px;
  font-size: 0.9rem;
}

.page-promotions__btn-large {
  padding: 18px 40px;
  font-size: 1.1rem;
}

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

.page-promotions__why-choose-us {
  background-color: var(--background-color);
}

.page-promotions__section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--text-main);
  margin-bottom: 25px;
  font-weight: 700;
}

.page-promotions__section-description {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 900px;
  margin: 0 auto 50px auto;
  line-height: 1.7;
}

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

.page-promotions__feature-item,
.page-promotions__category-card {
  background-color: var(--card-bg);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--divider-color);
}

.page-promotions__feature-item:hover,
.page-promotions__category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-promotions__feature-title,
.page-promotions__category-title {
  font-size: 1.4rem;
  color: var(--text-main);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-promotions__feature-text,
.page-promotions__category-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

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

.page-promotions__how-to-claim {
  background-color: var(--deep-green);
  color: #ffffff;
}

.page-promotions__how-to-claim .page-promotions__section-title,
.page-promotions__how-to-claim .page-promotions__section-description {
  color: #ffffff;
}

.page-promotions__step-item {
  background-color: var(--card-bg);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  border: 1px solid var(--divider-color);
}

.page-promotions__step-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 auto 20px auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.page-promotions__step-title {
  font-size: 1.3rem;
  color: var(--text-main);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-promotions__step-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.page-promotions__guide-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  margin-top: 50px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  min-width: 200px;
  min-height: 200px;
}

.page-promotions__important-notes {
  background-color: var(--background-color);
}

.page-promotions__notes-list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 40px auto 0 auto;
  text-align: left;
}

.page-promotions__notes-item {
  background-color: var(--card-bg);
  border-left: 5px solid var(--main-color);
  padding: 20px 25px;
  margin-bottom: 15px;
  border-radius: 8px;
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-promotions__notes-item strong {
  color: var(--text-main);
}

.page-promotions__faq-section {
  background-color: var(--deep-green);
  color: #ffffff;
}

.page-promotions__faq-section .page-promotions__section-title {
  color: #ffffff;
}

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

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

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  background-color: var(--card-bg);
  transition: background-color 0.3s ease;
  list-style: none;
}

.page-promotions__faq-question::-webkit-details-marker {
  display: none;
}

.page-promotions__faq-question:hover {
  background-color: rgba(46, 122, 78, 0.2); /* Darker shade of border color for hover */
}

.page-promotions__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
  color: var(--main-color);
}

.page-promotions__faq-item[open] .page-promotions__faq-toggle {
  transform: rotate(45deg);
}

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

.page-promotions__cta-banner {
  padding: 0;
  background-color: var(--background-color);
}

.page-promotions__cta-banner .page-promotions__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  background-color: var(--card-bg);
}

.page-promotions__cta-banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  opacity: 0.2;
  min-width: 200px;
  min-height: 200px;
}

.page-promotions__cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
}

.page-promotions__cta-title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  color: var(--text-main);
  margin-bottom: 20px;
  font-weight: 700;
}

.page-promotions__cta-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.7;
}

/* Color Variables */
:root {
  --main-color: #11A84E;
  --accent-color: #22C768;
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --card-bg: #11271B;
  --background-color: #08160F;
  --text-main: #F2FFF6;
  --text-secondary: #A7D9B8;
  --border-color: #2E7A4E;
  --glow-color: #57E38D;
  --gold-color: #F2C14E;
  --divider-color: #1E3A2A;
  --deep-green: #0A4B2C;
}

/* --- Contrast Safety --- */
/* Ensure text on dark backgrounds is light */
.page-promotions,
.page-promotions__hero-section,
.page-promotions__how-to-claim,
.page-promotions__faq-section,
.page-promotions__cta-banner .page-promotions__container {
  color: var(--text-main);
}

.page-promotions__card {
  background-color: var(--card-bg);
  color: var(--text-secondary);
}

.page-promotions__card h3,
.page-promotions__card strong {
  color: var(--text-main);
}

.page-promotions__btn-primary {
  color: #ffffff;
}

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

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .page-promotions__container {
    padding-left: 15px !important;
    padding-right: 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-promotions__hero-content {
    margin-top: -40px;
    padding: 30px 15px;
  }

  .page-promotions__main-title {
    font-size: 2rem;
  }

  .page-promotions__intro-text {
    font-size: 1rem;
  }

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

  .page-promotions__btn-primary,
  .page-promotions__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 0.95rem;
  }

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

  .page-promotions__section-title {
    font-size: 2rem;
  }

  .page-promotions__section-description {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }

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

  .page-promotions__feature-item,
  .page-promotions__category-card,
  .page-promotions__step-item {
    padding: 25px;
  }

  .page-promotions__category-image,
  .page-promotions__guide-image,
  .page-promotions__cta-banner-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: 200px;
    min-height: 200px;
  }

  .page-promotions__cta-banner .page-promotions__container {
    padding: 30px 15px;
  }

  .page-promotions__cta-title {
    font-size: 1.8rem;
  }

  .page-promotions__cta-description {
    font-size: 1rem;
  }

  .page-promotions__notes-item,
  .page-promotions__faq-question,
  .page-promotions__faq-answer {
    font-size: 0.9rem;
    padding: 15px 20px;
  }

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

  /* Ensure all image containers are responsive */
  .page-promotions__hero-image-wrapper,
  .page-promotions__category-card,
  .page-promotions__how-to-claim .page-promotions__container,
  .page-promotions__cta-banner .page-promotions__container {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  /* Specific overrides for video section top padding if it existed */
  .page-promotions__video-section {
    padding-top: 10px !important;
  }

  /* Ensure all button containers are responsive */
  .page-promotions__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
}