.page-promotions {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f4f7f6;
}

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

.page-promotions__hero-section {
  background: linear-gradient(135deg, #003366 0%, #004488 100%); /* Dark blue gradient */
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-promotions__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('[GALLERY:bg:abstract,geometric,pattern,dark_blue_gold]');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
}

.page-promotions__hero-section .page-promotions__container {
  position: relative;
  z-index: 1;
}

.page-promotions__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFCC00; /* Gold for highlight */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-promotions__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

.page-promotions__cta-button {
  display: inline-block;
  background-color: #FFCC00; /* Gold */
  color: #003366; /* Dark blue text on gold */
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-promotions__cta-button:hover {
  background-color: #e6b800; /* Slightly darker gold */
  transform: translateY(-3px);
}

.page-promotions__section-title {
  font-size: 2.8em;
  color: #003366; /* Dark blue */
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  padding-bottom: 15px;
}

.page-promotions__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFCC00; /* Gold underline */
  border-radius: 2px;
}

.page-promotions__intro-text {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: -30px auto 60px auto;
  color: #555;
}

.page-promotions__why-choose-us, .page-promotions__types, .page-promotions__how-to-claim, .page-promotions__terms, .page-promotions__detail-pages, .page-promotions__faq, .page-promotions__final-cta {
  padding: 80px 0;
}

.page-promotions__why-choose-us {
  background-color: #ffffff;
}

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

.page-promotions__feature-item {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #eee;
}

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

.page-promotions__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.page-promotions__feature-item h3 {
  font-size: 1.5em;
  color: #003366;
  margin-bottom: 15px;
}

.page-promotions__feature-item p {
  color: #666;
  font-size: 1em;
}

.page-promotions__types {
  background-color: #f4f7f6;
}

.page-promotions__promotion-category {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-left: 5px solid #003366;
}

.page-promotions__category-title {
  font-size: 2em;
  color: #003366;
  margin-bottom: 20px;
  border-bottom: 2px solid #FFCC00;
  padding-bottom: 10px;
  display: inline-block;
}

.page-promotions__promotion-category p {
  margin-bottom: 15px;
  color: #444;
}

.page-promotions__promotion-category ul {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 20px;
}

.page-promotions__promotion-category ul li {
  margin-bottom: 10px;
  color: #555;
}

.page-promotions__promotion-category ul li strong {
  color: #003366;
}

.page-promotions__inline-cta {
  display: inline-block;
  background-color: #003366; /* Dark blue */
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease;
}

.page-promotions__inline-cta:hover {
  background-color: #004488; /* Slightly lighter dark blue */
}

.page-promotions__how-to-claim {
  background-color: #fcfcfc;
}

.page-promotions__steps-list {
  list-style: none;
  counter-reset: step-counter;
  padding: 0;
  max-width: 900px;
  margin: 0 auto;
}

.page-promotions__steps-list li {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 25px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  padding-left: 80px;
  border-left: 5px solid #FFCC00;
}

.page-promotions__steps-list li::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #FFCC00; /* Gold */
  color: #003366; /* Dark blue */
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.5em;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-promotions__steps-list li h4 {
  font-size: 1.4em;
  color: #003366;
  margin-bottom: 10px;
}

.page-promotions__steps-list li p {
  color: #555;
}

.page-promotions__steps-list li a {
  color: #003366;
  font-weight: bold;
  text-decoration: none;
}

.page-promotions__steps-list li a:hover {
  text-decoration: underline;
}

.page-promotions__cta-bottom-text {
  text-align: center;
  font-size: 1.1em;
  margin-top: 40px;
  margin-bottom: 20px;
  color: #444;
}

.page-promotions__cta-button--secondary {
  background-color: #003366; /* Dark blue */
  color: #ffffff;
  margin-left: 20px;
}

.page-promotions__cta-button--secondary:hover {
  background-color: #004488;
}

.page-promotions__terms {
  background-color: #e6f0ff; /* Light blue background for terms */
}

.page-promotions__terms-list {
  list-style: decimal inside;
  max-width: 900px;
  margin: 0 auto;
  padding-left: 20px;
  color: #444;
  font-size: 1.05em;
}

.page-promotions__terms-list li {
  margin-bottom: 15px;
  background-color: #ffffff;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border-left: 4px solid #FFCC00;
}

.page-promotions__emphasis-text {
  text-align: center;
  font-style: italic;
  margin-top: 30px;
  font-size: 1.1em;
  color: #003366;
  font-weight: bold;
}

.page-promotions__detail-pages {
  background-color: #f9f9f9;
}

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

.page-promotions__detail-card {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-top: 5px solid #FFCC00;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__detail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-promotions__detail-card h3 {
  font-size: 1.4em;
  margin-bottom: 15px;
  min-height: 60px; /* Ensure consistent height for titles */
}

.page-promotions__detail-card h3 a {
  color: #003366;
  text-decoration: none;
  font-weight: bold;
}

.page-promotions__detail-card h3 a:hover {
  text-decoration: underline;
  color: #004488;
}

.page-promotions__detail-card p {
  color: #666;
  margin-bottom: 20px;
  min-height: 80px; /* Ensure consistent height for descriptions */
}

.page-promotions__detail-button {
  display: inline-block;
  background-color: #FFCC00; /* Gold */
  color: #003366; /* Dark blue text on gold */
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-promotions__detail-button:hover {
  background-color: #e6b800;
  transform: translateY(-2px);
}

.page-promotions__faq {
  background-color: #ffffff;
}

.page-promotions__faq-item {
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 25px 30px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  border-left: 4px solid #003366;
}

.page-promotions__faq-item h3 {
  font-size: 1.3em;
  color: #003366;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-promotions__faq-item h3::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #FFCC00;
  transition: transform 0.3s ease;
}

.page-promotions__faq-item.active h3::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-promotions__faq-item p {
  color: #555;
  font-size: 1em;
  display: none; /* Hidden by default */
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px dashed #eee;
}

.page-promotions__faq-item.active p {
  display: block;
}

.page-promotions__faq-item p a {
  color: #003366;
  font-weight: bold;
  text-decoration: none;
}

.page-promotions__faq-item p a:hover {
  text-decoration: underline;
}

.page-promotions__final-cta {
  background: linear-gradient(135deg, #003366 0%, #004488 100%);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.page-promotions__final-cta .page-promotions__section-title {
  color: #FFCC00;
}

.page-promotions__final-cta .page-promotions__hero-description {
  color: #e0e0e0;
}

.page-promotions__final-cta .page-promotions__cta-button {
  margin: 10px;
}

.highlight {
  color: #FFCC00;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-promotions__hero-title {
    font-size: 2.8em;
  }
  .page-promotions__section-title {
    font-size: 2.2em;
  }
  .page-promotions__features-grid, .page-promotions__detail-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-promotions__hero-section, .page-promotions__why-choose-us, .page-promotions__types, .page-promotions__how-to-claim, .page-promotions__terms, .page-promotions__detail-pages, .page-promotions__faq, .page-promotions__final-cta {
    padding: 60px 0;
  }
  .page-promotions__hero-title {
    font-size: 2.2em;
  }
  .page-promotions__hero-description {
    font-size: 1.1em;
  }
  .page-promotions__section-title {
    font-size: 1.8em;
  }
  .page-promotions__intro-text {
    font-size: 1em;
    margin-bottom: 40px;
  }
  .page-promotions__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promotions__promotion-category {
    padding: 30px;
  }
  .page-promotions__category-title {
    font-size: 1.8em;
  }
  .page-promotions__steps-list li {
    padding-left: 60px;
  }
  .page-promotions__steps-list li::before {
    width: 35px;
    height: 35px;
    font-size: 1.3em;
    left: 15px;
  }
  .page-promotions__cta-button--secondary {
    margin-left: 0;
    margin-top: 15px;
  }
}

@media (max-width: 480px) {
  .page-promotions__hero-section, .page-promotions__why-choose-us, .page-promotions__types, .page-promotions__how-to-claim, .page-promotions__terms, .page-promotions__detail-pages, .page-promotions__faq, .page-promotions__final-cta {
    padding: 40px 0;
  }
  .page-promotions__hero-title {
    font-size: 1.8em;
  }
  .page-promotions__hero-description {
    font-size: 0.95em;
  }
  .page-promotions__section-title {
    font-size: 1.6em;
    margin-bottom: 40px;
  }
  .page-promotions__intro-text {
    margin-bottom: 30px;
  }
  .page-promotions__cta-button {
    width: 100%;
    margin: 10px 0;
  }
  .page-promotions__features-grid, .page-promotions__detail-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions__promotion-category {
    padding: 20px;
  }
  .page-promotions__category-title {
    font-size: 1.5em;
  }
  .page-promotions__steps-list li {
    padding-left: 20px;
    text-align: left;
  }
  .page-promotions__steps-list li::before {
    display: none;
  }
  .page-promotions__steps-list li h4 {
    font-size: 1.2em;
  }
  .page-promotions__detail-card h3, .page-promotions__detail-card p {
    min-height: auto; /* Allow height to adjust on small screens */
  }
  .page-promotions__detail-button {
    width: 100%;
    text-align: center;
  }
}