.page-promotions {
  color: #ffffff;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #1a1a2e; /* Body background from shared.css */
}

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

.page-promotions__section-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: #FFD700; /* Main brand color for titles */
}

.page-promotions__paragraph {
  font-size: 16px;
  margin-bottom: 20px;
  color: #f0f0f0;
  text-align: justify;
}

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

.page-promotions__btn-primary {
  background: #FFD700;
  color: #1a1a2e;
  border: 2px solid #FFD700;
}

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

.page-promotions__btn-secondary {
  background: #8B0000;
  color: #ffffff;
  border: 2px solid #8B0000;
}

.page-promotions__btn-secondary:hover {
  background: #6a0000;
  border-color: #6a0000;
}

/* Hero Content Section */
.page-promotions__hero-content-section {
  padding-top: var(--header-offset, 120px); /* Adjust for fixed header */
  padding-bottom: 60px;
  background: linear-gradient(135deg, #1a1a2e 0%, #3a0000 100%);
  position: relative;
  overflow: hidden;
}

.page-promotions__hero-content-section .page-promotions__container {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.page-promotions__hero-content-wrapper {
  flex: 1;
  min-width: 300px;
}

.page-promotions__hero-image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: right;
}

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

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

.page-promotions__hero-description {
  font-size: 18px;
  margin-bottom: 30px;
  color: #f0f0f0;
}

/* Introduction Section */
.page-promotions__introduction-section {
  padding: 80px 0;
  background-color: #1a1a2e;
  color: #ffffff;
}

/* Promotion Types Section */
.page-promotions__types-section {
  padding: 80px 0;
  background-color: #0d0d1e;
}

.page-promotions__promotion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-promotions__promotion-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.page-promotions__card-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #FFD700;
}

.page-promotions__card-description {
  font-size: 15px;
  color: #f0f0f0;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* How To Claim Section */
.page-promotions__how-to-claim-section {
  padding: 80px 0;
  background-color: #8B0000;
  color: #ffffff;
}

.page-promotions__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-promotions__step-item {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-promotions__step-item img {
  
  
  object-fit: contain;
  margin-bottom: 20px;
}

.page-promotions__step-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #FFD700;
}

.page-promotions__step-description {
  font-size: 15px;
  color: #f0f0f0;
}

.page-promotions__cta-bottom {
  text-align: center;
  margin-top: 50px;
}

/* Terms and Conditions Section */
.page-promotions__terms-section {
  padding: 80px 0;
  background-color: #0d0d1e;
  color: #ffffff;
}

.page-promotions__terms-list {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 30px;
  color: #f0f0f0;
  font-size: 16px;
}

.page-promotions__terms-list li {
  margin-bottom: 10px;
}

.page-promotions__terms-list strong {
  color: #FFD700;
}

/* Advantages Section */
.page-promotions__advantages-section {
  padding: 80px 0;
  background-color: #1a1a2e;
  color: #ffffff;
}

.page-promotions__advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-promotions__advantage-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-promotions__advantage-item img {
  
  
  object-fit: contain;
  margin-bottom: 20px;
}

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

.page-promotions__advantage-item p {
  font-size: 15px;
  color: #f0f0f0;
}

/* FAQ Section */
.page-promotions__faq-section {
  padding: 80px 0;
  background-color: #0d0d1e;
  color: #ffffff;
}

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

.page-promotions__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

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

.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: 30px;
  height: 30px;
}

.page-promotions__faq-item.active .page-promotions__faq-toggle {
  color: #ffffff;
  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;
  background: rgba(0, 0, 0, 0.2);
  color: #f0f0f0;
  font-size: 15px;
}

.page-promotions__faq-item.active .page-promotions__faq-answer {
  max-height: 2000px !important;
  padding: 20px 25px !important;
  opacity: 1;
}

/* Final CTA Section */
.page-promotions__cta-final-section {
  padding: 80px 0;
  text-align: center;
  background-color: #8B0000;
  color: #ffffff;
}

.page-promotions__cta-final-section .page-promotions__paragraph {
  font-size: 20px;
  color: #f0f0f0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions__hero-title {
    font-size: 42px;
  }
  .page-promotions__hero-description {
    font-size: 17px;
  }
  .page-promotions__section-title {
    font-size: 32px;
  }
  .page-promotions__promotion-card {
    padding: 20px;
  }
  .page-promotions__card-title {
    font-size: 22px;
  }
  .page-promotions__card-description {
    font-size: 14px;
  }
  .page-promotions__step-item {
    padding: 20px;
  }
  .page-promotions__step-title {
    font-size: 20px;
  }
  .page-promotions__advantage-item {
    padding: 20px;
  }
  .page-promotions__advantage-item h3 {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .page-promotions__container {
    padding: 0 15px;
  }
  .page-promotions__hero-content-section {
    padding-top: var(--header-offset, 120px) !important; /* Ensure offset is applied */
    padding-bottom: 40px;
  }
  .page-promotions__hero-content-section .page-promotions__container {
    flex-direction: column-reverse;
    text-align: center;
  }
  .page-promotions__hero-image-wrapper {
    text-align: center;
    margin-bottom: 30px;
  }
  .page-promotions__hero-image-wrapper img {
    margin-left: auto;
    margin-right: auto;
  }
  .page-promotions__hero-title {
    font-size: 32px;
    text-align: center;
  }
  .page-promotions__hero-description {
    font-size: 16px;
    text-align: center;
  }
  .page-promotions__btn-primary,
  .page-promotions__btn-secondary {
    width: 100% !important;
    font-size: 16px;
    padding: 10px 20px;
  }
  .page-promotions__section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .page-promotions__introduction-section,
  .page-promotions__types-section,
  .page-promotions__how-to-claim-section,
  .page-promotions__terms-section,
  .page-promotions__advantages-section,
  .page-promotions__faq-section,
  .page-promotions__cta-final-section {
    padding: 50px 0;
  }
  .page-promotions__promotion-grid,
  .page-promotions__steps-grid,
  .page-promotions__advantages-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-promotions__card-image {
    height: 180px;
  }
  .page-promotions__card-title {
    font-size: 20px;
  }
  .page-promotions__card-description {
    font-size: 14px;
  }
  .page-promotions__step-item img,
  .page-promotions__advantage-item img {
    
    
  }
  .page-promotions__step-title,
  .page-promotions__advantage-item h3 {
    font-size: 18px;
  }
  .page-promotions__paragraph,
  .page-promotions__terms-list li,
  .page-promotions__step-description,
  .page-promotions__advantage-item p,
  .page-promotions__faq-answer p {
    font-size: 14px;
  }
  .page-promotions__faq-question {
    padding: 15px 20px;
  }
  .page-promotions__faq-question h3 {
    font-size: 16px;
  }
  .page-promotions__faq-toggle {
    font-size: 24px;
    width: 25px;
    height: 25px;
  }
  .page-promotions__faq-item.active .page-promotions__faq-answer {
    padding: 15px 20px !important;
  }
  .page-promotions__cta-final-section .page-promotions__paragraph {
    font-size: 16px;
  }

  /* Image responsiveness */
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-promotions__hero-image-wrapper img {
    width: 100%;
    height: auto;
  }
  .page-promotions__promotion-card .page-promotions__card-image {
    width: 100%;
    height: 180px;
  }
  .page-promotions__step-item img,
  .page-promotions__advantage-item img {
    
    
  }
  .page-promotions__section,
  .page-promotions__card,
  .page-promotions__container,
  .page-promotions__hero-content-section,
  .page-promotions__introduction-section,
  .page-promotions__types-section,
  .page-promotions__how-to-claim-section,
  .page-promotions__terms-section,
  .page-promotions__advantages-section,
  .page-promotions__faq-section,
  .page-promotions__cta-final-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-promotions__promotion-grid,
  .page-promotions__steps-grid,
  .page-promotions__advantages-grid {
    padding-left: 0;
    padding-right: 0;
  }
  .page-promotions__promotion-card, .page-promotions__step-item, .page-promotions__advantage-item {
    margin-left: auto;
    margin-right: auto;
  }

  /* Button responsiveness */
  .page-promotions__btn-primary,
  .page-promotions__btn-secondary,
  .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;
  }
  .page-promotions__cta-bottom,
  .page-promotions__button-group,
  .page-promotions__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    flex-wrap: wrap !important;
    gap: 15px;
  }
  .page-promotions__cta-bottom {
    padding: 0 15px;
  }
}