.page-promotions {
  color: #ffffff; /* Default text color for dark body background */
  background-color: #0a0a0a; /* Ensure consistency with body background */
  padding-top: var(--header-offset, 120px); /* Adjust for fixed header */
}

.page-promotions__hero-banner {
  width: 100%;
  padding: 0;
  margin: 0;
  position: relative;
  overflow: hidden;
}

.page-promotions__hero-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  gap: 40px;
}

.page-promotions__hero-content {
  flex: 1;
  max-width: 800px;
  z-index: 1;
}

.page-promotions__main-title {
  font-size: 48px;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-promotions__intro-text {
  font-size: 18px;
  line-height: 1.6;
  color: #f0f0f0;
  margin-bottom: 30px;
}

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

.page-promotions__btn-primary {
  background-color: #FFD700;
  color: #0a0a0a; /* Dark text for golden background */
  border: 2px solid #FFD700;
}

.page-promotions__btn-primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

.page-promotions__hero-image {
  flex-shrink: 0;
  width: 100%;
  max-width: 800px;
}

.page-promotions__hero-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-promotions__overview-section,
.page-promotions__claim-guide-section {
  background-color: #1a1a1a;
  padding: 80px 20px;
  color: #f0f0f0;
}

.page-promotions__dark-bg {
  background-color: #0a0a0a;
  padding: 80px 20px;
  color: #ffffff;
}

.page-promotions__light-bg {
  background-color: #1a1a1a;
  padding: 80px 20px;
  color: #f0f0f0;
}

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

.page-promotions__section-title {
  font-size: 38px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 25px;
  color: #FFD700;
  line-height: 1.3;
}

.page-promotions__section-description {
  font-size: 17px;
  text-align: center;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #cccccc;
}

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

.page-promotions__feature-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background 0.3s ease;
}

.page-promotions__feature-item:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.1);
}

.page-promotions__feature-item img {
  
  
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__feature-item h3 {
  font-size: 22px;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-promotions__feature-item p {
  font-size: 15px;
  color: #cccccc;
  line-height: 1.6;
}

.page-promotions__promo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 50px;
}

.page-promotions__promo-card {
  display: flex;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  align-items: center;
}

.page-promotions__promo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.page-promotions__promo-card img {
  width: 40%;
  height: auto;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}

.page-promotions__promo-content {
  padding: 30px;
  flex: 1;
}

.page-promotions__promo-content h3 {
  font-size: 28px;
  color: #FFD700;
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-promotions__promo-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #e0e0e0;
  margin-bottom: 20px;
}

.page-promotions__promo-content ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #e0e0e0;
}

.page-promotions__promo-content ul li {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 8px;
}

.page-promotions__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions__step-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions__step-number {
  width: 60px;
  height: 60px;
  background-color: #FFD700;
  color: #0a0a0a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: bold;
  margin: 0 auto 25px auto;
  box-shadow: 0 2px 10px rgba(255, 215, 0, 0.4);
}

.page-promotions__step-item h3 {
  font-size: 24px;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-promotions__step-item p {
  font-size: 16px;
  color: #cccccc;
  line-height: 1.6;
}

.page-promotions__cta-bottom {
  text-align: center;
  margin-top: 60px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-promotions__btn-secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-promotions__btn-secondary:hover {
  background-color: #FFD700;
  color: #0a0a0a;
}

.page-promotions__faq-section {
  padding: 80px 20px;
  background-color: #0a0a0a;
  color: #ffffff;
}

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

.page-promotions__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease;
  position: relative;
}

.page-promotions__faq-question:hover {
  background: rgba(255, 255, 255, 0.18);
}

.page-promotions__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  color: #FFD700;
  pointer-events: none;
}

.page-promotions__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #FFD700;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.page-promotions__faq-item.active .page-promotions__faq-toggle {
  color: #FFD700;
  transform: rotate(45deg);
}

.page-promotions__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 25px;
  opacity: 0;
  color: #e0e0e0;
  font-size: 15px;
  line-height: 1.7;
}

.page-promotions__faq-item.active .page-promotions__faq-answer {
  max-height: 2000px !important;
  padding: 20px 25px !important;
  opacity: 1;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0 0 8px 8px;
}

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

/* Media Queries for Responsive Design */
@media (max-width: 1024px) {
  .page-promotions__hero-container {
    padding: 50px 20px;
    gap: 30px;
  }

  .page-promotions__main-title {
    font-size: 42px;
  }

  .page-promotions__intro-text {
    font-size: 17px;
  }

  .page-promotions__section-title {
    font-size: 34px;
  }

  .page-promotions__section-description {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .page-promotions__promo-card img {
    width: 35%;
  }

  .page-promotions__promo-content {
    padding: 25px;
  }

  .page-promotions__promo-content h3 {
    font-size: 24px;
  }

  .page-promotions__promo-content p {
    font-size: 15px;
  }

  .page-promotions__faq-question h3 {
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .page-promotions {
    padding-top: var(--header-offset, 120px) !important; /* Ensure mobile padding is applied */
  }

  .page-promotions__hero-banner {
    padding-top: 0 !important; /* If shared.css sets body padding-top, this must be 0 */
  }

  .page-promotions__hero-container {
    flex-direction: column;
    padding: 40px 15px;
    gap: 30px;
  }

  .page-promotions__main-title {
    font-size: 32px;
    margin-bottom: 15px;
  }

  .page-promotions__intro-text {
    font-size: 15px;
    margin-bottom: 25px;
  }

  .page-promotions__btn-primary,
  .page-promotions__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 15px;
    margin-bottom: 10px; /* Add margin for stacked buttons */
  }

  .page-promotions__hero-image {
    width: 100% !important;
    max-width: 100% !important;
  }

  .page-promotions__hero-image img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    border-radius: 8px;
  }

  .page-promotions__overview-section,
  .page-promotions__claim-guide-section,
  .page-promotions__dark-bg,
  .page-promotions__light-bg {
    padding: 50px 15px;
  }

  .page-promotions__container {
    padding: 0;
  }

  .page-promotions__section-title {
    font-size: 28px;
    margin-bottom: 20px;
  }

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

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

  .page-promotions__feature-item {
    padding: 25px 15px;
  }

  .page-promotions__feature-item img {
    
    
    margin-bottom: 15px;
  }

  .page-promotions__feature-item h3 {
    font-size: 20px;
  }

  .page-promotions__promo-grid {
    gap: 30px;
  }

  .page-promotions__promo-card {
    flex-direction: column;
    text-align: center;
  }

  .page-promotions__promo-card img {
    width: 100% !important;
    height: 200px !important; /* Fixed height for mobile */
    object-fit: cover;
    border-radius: 8px 8px 0 0;
  }

  .page-promotions__promo-content {
    padding: 20px;
  }

  .page-promotions__promo-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .page-promotions__promo-content p {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .page-promotions__promo-content ul {
    margin-left: 15px;
    margin-bottom: 15px;
  }

  .page-promotions__promo-content ul li {
    font-size: 13px;
  }

  .page-promotions__guide-steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-promotions__step-item {
    padding: 25px 15px;
  }

  .page-promotions__step-number {
    width: 50px;
    height: 50px;
    font-size: 28px;
    margin-bottom: 20px;
  }

  .page-promotions__step-item h3 {
    font-size: 20px;
  }

  .page-promotions__step-item p {
    font-size: 14px;
  }

  .page-promotions__cta-bottom {
    flex-direction: column;
    gap: 15px;
    margin-top: 40px;
  }

  .page-promotions__faq-list {
    margin-top: 30px;
  }

  .page-promotions__faq-item {
    margin-bottom: 10px;
    border-radius: 6px;
  }

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

  .page-promotions__faq-question h3 {
    font-size: 16px;
  }

  .page-promotions__faq-toggle {
    font-size: 24px;
    width: 28px;
    height: 28px;
  }

  .page-promotions__faq-answer {
    padding: 0 20px;
    font-size: 14px;
  }

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

  /* General image responsiveness for content area, excluding specific small items */
  .page-promotions img:not(.page-promotions__feature-item img) {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

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

  .page-promotions__hero-content {
    padding-left: 0;
    padding-right: 0;
  }

  /* Specific override for feature item icons to keep them small */
  .page-promotions__feature-item img {
    
    
    
  }
}