.page-promotions {
  font-family: Arial, sans-serif;
  color: #333333; /* Default text color for light background */
  background-color: #f8f8f8;
  line-height: 1.6;
}

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

/* Hero Section */
.page-promotions__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  padding: var(--header-offset, 120px) 0 60px;
  overflow: hidden;
  text-align: center;
}

.page-promotions__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.6);
}

.page-promotions__hero-content {
  position: relative;
  z-index: 1;
  color: #ffffff;
  max-width: 800px;
  padding: 20px;
}

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

.page-promotions__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #f0f0f0;
}

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

/* General Section Styling */
.page-promotions__section-title {
  font-size: 2.5em;
  color: #1A202C;
  text-align: center;
  margin-bottom: 20px;
  padding-top: 60px;
}

.page-promotions__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #555555;
}

/* Video Section */
.page-promotions__video-section {
  background-color: #1A202C;
  padding: 60px 0;
  text-align: center;
}

.page-promotions__video-section .page-promotions__section-title {
  color: #FFD700;
}

.page-promotions__video-section .page-promotions__section-description,
.page-promotions__video-caption {
  color: #f0f0f0;
}

.page-promotions__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 900px;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-promotions__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  cursor: pointer;
}

.page-promotions__video-caption {
  margin-top: 20px;
  font-size: 1em;
}

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

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

.page-promotions__promo-card {
  background-color: #fdfdfd;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-promotions__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-promotions__card-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__card-title {
  font-size: 1.5em;
  color: #1A202C;
  margin-bottom: 15px;
  min-height: 45px;
}

.page-promotions__card-text {
  color: #666666;
  margin-bottom: 25px;
  flex-grow: 1;
}

/* How To Section */
.page-promotions__how-to-section {
  padding: 60px 0;
  background-color: #f0f0f0;
}

.page-promotions__how-to-list {
  list-style: none;
  counter-reset: step-counter;
  padding: 0;
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.page-promotions__how-to-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 30px;
  text-align: left;
  position: relative;
  flex: 1 1 calc(50% - 30px);
  max-width: calc(50% - 30px);
  box-sizing: border-box;
}

.page-promotions__how-to-item::before {
  counter-increment: step-counter;
  content: "0" counter(step-counter);
  position: absolute;
  top: -15px;
  left: -15px;
  background-color: #FFD700;
  color: #1A202C;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__how-to-step-title {
  font-size: 1.3em;
  color: #1A202C;
  margin-top: 10px;
  margin-bottom: 10px;
}

.page-promotions__how-to-item p {
  color: #666666;
}

.page-promotions__text-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-promotions__text-link:hover {
  text-decoration: underline;
}

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

.page-promotions__terms-list {
  list-style: disc;
  margin: 40px auto 0;
  padding-left: 30px;
  max-width: 900px;
  color: #555555;
}

.page-promotions__terms-item {
  margin-bottom: 15px;
  font-size: 1.1em;
}

.page-promotions__terms-button-wrapper {
  text-align: center;
  margin-top: 40px;
}

/* FAQ Section */
.page-promotions__faq-section {
  padding: 60px 0;
  background-color: #f0f0f0;
}

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

.page-promotions__faq-item {
  background-color: #ffffff;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: #fdfdfd;
  border-bottom: 1px solid #eeeeee;
  transition: background-color 0.3s ease;
}

.page-promotions__faq-question:hover {
  background-color: #f5f5f5;
}

.page-promotions__faq-question-text {
  font-size: 1.2em;
  color: #1A202C;
  margin: 0;
  flex-grow: 1;
}

.page-promotions__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: #FFD700;
  transition: transform 0.3s ease;
}

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

.page-promotions__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  color: #666666;
}

.page-promotions__faq-item.active .page-promotions__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 15px 25px 25px;
}

/* CTA Section */
.page-promotions__cta-section {
  background-color: #1A202C;
  padding: 80px 0;
  text-align: center;
}

.page-promotions__cta-section .page-promotions__section-title {
  color: #FFD700;
}

.page-promotions__cta-section .page-promotions__section-description {
  color: #f0f0f0;
  margin-bottom: 50px;
}

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

/* Buttons */
.page-promotions__btn-primary,
.page-promotions__btn-secondary,
.page-promotions__btn-tertiary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  white-space: nowrap;
  word-wrap: normal;
  box-sizing: border-box;
  text-align: center;
}

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

.page-promotions__btn-primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

.page-promotions__btn-secondary:hover {
  background-color: #333d4e;
  border-color: #333d4e;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__btn-tertiary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  padding: 10px 20px;
  font-size: 1em;
}

.page-promotions__btn-tertiary:hover {
  background-color: #FFD700;
  color: #1A202C;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions__hero-title {
    font-size: 3em;
  }
  .page-promotions__section-title {
    font-size: 2em;
  }
  .page-promotions__how-to-item {
    flex: 1 1 calc(100% - 20px);
    max-width: calc(100% - 20px);
  }
}

@media (max-width: 768px) {
  .page-promotions__hero-section {
    padding: var(--header-offset, 120px) 0 40px;
  }
  .page-promotions__hero-title {
    font-size: 2.5em;
  }
  .page-promotions__hero-description {
    font-size: 1.1em;
  }
  .page-promotions__hero-buttons,
  .page-promotions__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-promotions__btn-primary,
  .page-promotions__btn-secondary,
  .page-promotions__btn-tertiary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-promotions__promo-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions__how-to-item {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .page-promotions__how-to-item::before {
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
  }
  .page-promotions__how-to-list {
    padding: 0;
  }
  .page-promotions__how-to-item {
    text-align: center;
    padding-top: 50px; /* Adjust for number bubble */
  }
  .page-promotions__video-section {
    padding-top: var(--header-offset, 120px) !important;
  }
  /* Mobile specific image and container rules */
  .page-promotions img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-promotions__container,
  .page-promotions__promo-card,
  .page-promotions__how-to-item,
  .page-promotions__faq-item,
  .page-promotions__video-wrapper,
  .page-promotions__hero-buttons,
  .page-promotions__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

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

@media (max-width: 480px) {
  .page-promotions__hero-title {
    font-size: 2em;
  }
  .page-promotions__section-title {
    font-size: 1.8em;
  }
  .page-promotions__hero-buttons {
    gap: 10px;
  }
}