:root {
  --primary-color: #0A192F; /* Deep Navy Blue */
  --secondary-color: #FFD700; /* Gold */
  --text-light: #ffffff;
  --text-dark: #333333;
  --background-light: #f5f7fa;
  --background-dark: #0A192F;
  --border-color: #e0e0e0;
  --button-hover-dark: #071220;
  --button-hover-light: #e6c200;
}

.page-promotions {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Default text color for dark body background */
  background-color: var(--background-dark);
}

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

.page-promotions__section-title {
  font-size: 36px;
  font-weight: bold;
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.page-promotions__section-title--light {
  color: var(--text-light);
}

.page-promotions__section-description {
  font-size: 18px;
  color: #cccccc;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__section-description--light {
  color: #eeeeee;
}

/* Hero Section */
.page-promotions__hero-section {
  position: relative;
  padding: 120px 20px 80px; /* Adjusted padding-top for fixed header */
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('[GALLERY:promotion:hero_background,1920x1080]') no-repeat center center/cover;
  color: var(--text-light);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-promotions__hero-container {
  max-width: 900px;
}

.page-promotions__hero-title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--secondary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions__hero-description {
  font-size: 20px;
  margin-bottom: 40px;
  line-height: 1.8;
  color: #f0f0f0;
}

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

.page-promotions__hero-cta-button {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
}

.page-promotions__hero-cta-button--primary {
  background: var(--secondary-color);
  color: var(--primary-color);
  border: 2px solid var(--secondary-color);
}

.page-promotions__hero-cta-button--primary:hover {
  background: var(--button-hover-light);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions__hero-cta-button--secondary {
  background: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

.page-promotions__hero-cta-button--secondary:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Categories Section */
.page-promotions__categories-section {
  background-color: var(--background-light);
  color: var(--text-dark);
  padding: 80px 0;
}

.page-promotions__categories-section .page-promotions__section-title {
  color: var(--primary-color);
}

.page-promotions__categories-section .page-promotions__section-description {
  color: var(--text-dark);
}

.page-promotions__category-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-promotions__category-item {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
}

.page-promotions__category-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.page-promotions__category-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-promotions__category-title {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-promotions__category-text {
  font-size: 16px;
  color: var(--text-dark);
}

/* Featured Promotions */
.page-promotions__featured-promos {
  background-color: var(--background-dark);
  padding: 80px 0;
}

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

.page-promotions__promo-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
  color: var(--text-dark);
}

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

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

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

.page-promotions__promo-title-link {
  text-decoration: none;
  color: var(--primary-color);
  transition: color 0.3s ease;
}

.page-promotions__promo-title-link:hover {
  color: var(--secondary-color);
}

.page-promotions__promo-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 1.4;
}

.page-promotions__promo-text {
  font-size: 16px;
  color: #555555;
  margin-bottom: 20px;
}

.page-promotions__promo-features {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  color: #444444;
}

.page-promotions__promo-features li {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  font-size: 15px;
}

.page-promotions__feature-icon {
  color: #28a745; /* Green checkmark */
  margin-right: 10px;
  font-weight: bold;
}

.page-promotions__promo-button {
  display: block;
  width: 100%;
  padding: 12px 20px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-align: center;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 17px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
}

.page-promotions__promo-button:hover {
  background: var(--button-hover-light);
  transform: translateY(-2px);
}

/* How to Claim Section */
.page-promotions__how-to-claim {
  background-color: var(--background-dark);
  padding: 80px 0;
  color: var(--text-light);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.page-promotions__steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.page-promotions__step-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: rgba(255, 255, 255, 0.08);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions__step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--secondary-color);
  color: var(--primary-color);
  font-size: 24px;
  font-weight: bold;
  flex-shrink: 0;
}

.page-promotions__step-content {
  flex: 1;
}

.page-promotions__step-title {
  font-size: 22px;
  font-weight: bold;
  color: var(--secondary-color);
  margin-top: 0;
  margin-bottom: 10px;
}

.page-promotions__step-text {
  font-size: 16px;
  color: #cccccc;
}

.page-promotions__step-text a {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: bold;
}

.page-promotions__step-text a:hover {
  text-decoration: underline;
}

.page-promotions__final-cta-claim {
  text-align: center;
  margin-top: 50px;
}

.page-promotions__promo-button--large {
  padding: 18px 45px;
  font-size: 22px;
  max-width: 400px;
  margin: 0 auto;
}

/* Why Choose Section */
.page-promotions__why-choose {
  background-color: var(--background-light);
  color: var(--text-dark);
  padding: 80px 0;
}

.page-promotions__why-choose .page-promotions__section-title {
  color: var(--primary-color);
}

.page-promotions__why-choose .page-promotions__section-description {
  color: var(--text-dark);
}

.page-promotions__benefits-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-promotions__benefit-item {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
}

.page-promotions__benefit-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.page-promotions__benefit-icon {
  width: 90px;
  height: 90px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-promotions__benefit-title {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-promotions__benefit-text {
  font-size: 16px;
  color: #555555;
}

/* FAQ Section */
.page-promotions__faq-section {
  background-color: var(--background-dark);
  padding: 80px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.page-promotions__faq-section .page-promotions__section-title {
  color: var(--secondary-color);
}

.page-promotions__faq-section .page-promotions__section-description {
  color: #cccccc;
}

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

.page-promotions__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: border-color 0.3s ease;
}

.page-promotions__faq-item.active {
  border-color: var(--secondary-color);
}

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

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

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

.page-promotions__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: var(--secondary-color);
  transition: transform 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 {
  transform: rotate(45deg); /* Change to X or rotate for active state */
  color: var(--text-light);
}

.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: #cccccc;
}

.page-promotions__faq-item.active .page-promotions__faq-answer {
  max-height: 2000px !important; /* Sufficiently large to contain any content */
  padding: 20px 25px !important;
  opacity: 1;
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.page-promotions__faq-answer p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
}

.page-promotions__faq-answer strong {
  color: var(--secondary-color);
}

/* Final CTA Section */
.page-promotions__final-cta {
  background-color: var(--background-dark);
  padding: 80px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.page-promotions__final-cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 10px;
  font-size: 24px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  margin-top: 30px;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
}

.page-promotions__final-cta-button:hover {
  background: var(--button-hover-light);
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions__hero-title {
    font-size: 40px;
  }

  .page-promotions__hero-description {
    font-size: 18px;
  }

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

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

@media (max-width: 768px) {
  .page-promotions__container {
    padding: 30px 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  
  .page-promotions__hero-section {
    padding-top: 100px !important; /* Mobile padding-top for fixed header */
    padding-bottom: 60px;
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-promotions__hero-title {
    font-size: 32px;
  }

  .page-promotions__hero-description {
    font-size: 16px;
  }

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

  .page-promotions__hero-cta-button {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px !important;
    font-size: 18px !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

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

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

  .page-promotions__categories-section, 
  .page-promotions__featured-promos, 
  .page-promotions__how-to-claim, 
  .page-promotions__why-choose, 
  .page-promotions__faq-section, 
  .page-promotions__final-cta {
    padding: 50px 0 !important;
  }

  .page-promotions__category-list, 
  .page-promotions__promo-grid, 
  .page-promotions__benefits-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .page-promotions__category-item, .page-promotions__promo-card, .page-promotions__benefit-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 20px !important;
  }

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

  .page-promotions__promo-title {
    font-size: 20px;
  }

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

  .page-promotions__promo-button {
    font-size: 16px !important;
    padding: 10px 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-promotions__steps-list {
    gap: 20px;
  }

  .page-promotions__step-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }

  .page-promotions__step-number {
    margin-bottom: 15px;
  }

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

  .page-promotions__step-text {
    font-size: 15px;
  }

  .page-promotions__promo-button--large {
    font-size: 18px !important;
    padding: 15px 30px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-promotions__benefit-icon {
    width: 70px;
    height: 70px;
  }

  .page-promotions__benefit-title {
    font-size: 20px;
  }

  .page-promotions__benefit-text {
    font-size: 15px;
  }

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

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

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

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

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

  .page-promotions__faq-answer p {
    font-size: 15px;
  }

  .page-promotions__final-cta-button {
    font-size: 20px !important;
    padding: 15px 30px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  
  /* Ensure all images are responsive */
  .page-promotions img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
    box-sizing: border-box !important;
  }

  /* Ensure all image containers are responsive */
  .page-promotions__category-item, 
  .page-promotions__promo-card, 
  .page-promotions__benefit-item,
  .page-promotions__hero-section,
  .page-promotions__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
}

@media (max-width: 480px) {
  .page-promotions__hero-title {
    font-size: 28px;
  }
  .page-promotions__hero-description {
    font-size: 15px;
  }
  .page-promotions__section-title {
    font-size: 24px;
  }
  .page-promotions__hero-cta-button {
    font-size: 16px !important;
    padding: 10px 15px !important;
  }
  .page-promotions__promo-title {
    font-size: 18px;
  }
  .page-promotions__step-title {
    font-size: 18px;
  }
  .page-promotions__step-number {
    min-width: 40px;
    height: 40px;
    font-size: 20px;
  }
  .page-promotions__benefit-title {
    font-size: 18px;
  }
  .page-promotions__faq-question h3 {
    font-size: 15px;
  }
  .page-promotions__faq-toggle {
    font-size: 22px;
    width: 24px;
    height: 24px;
  }
  .page-promotions__final-cta-button {
    font-size: 18px !important;
    padding: 12px 25px !important;
  }
}