.page-promo {
  padding-top: var(--header-offset, 120px); /* Ensures content is below fixed header */
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-promo__section-title,
.page-promo__content-subtitle,
.page-promo__content-subheading {
  color: #8B0000; /* Auxiliary color for headings */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-promo__section-title {
  font-size: 2.5em;
  margin-top: 40px;
}

.page-promo__section-description {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.1em;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promo__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #f0f0f0; /* Fallback if image fails */
}

.page-promo__hero-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-promo__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.6); /* Darken image for text readability, not changing color */
}

.page-promo__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  color: #ffffff;
  max-width: 900px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text */
  border-radius: 10px;
}

.page-promo__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Main brand color */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-promo__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
}

.page-promo__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-promo__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.page-promo__button--primary {
  background-color: #FFD700; /* Main brand color */
  color: #8B0000; /* Auxiliary color for contrast */
}

.page-promo__button--primary:hover {
  background-color: #e0b800;
  transform: translateY(-2px);
}

.page-promo__button--secondary {
  background-color: #8B0000; /* Auxiliary color */
  color: #FFD700; /* Main brand color for contrast */
}

.page-promo__button--secondary:hover {
  background-color: #6a0000;
  transform: translateY(-2px);
}

.page-promo__featured-promotions {
  padding: 60px 0;
  background-color: #f9f9f9;
}

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

.page-promo__promo-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.page-promo__promo-card:hover {
  transform: translateY(-5px);
}

.page-promo__promo-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-promo__card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-promo__card-title {
  font-size: 1.6em;
  color: #8B0000;
  margin-bottom: 10px;
  min-height: 50px; /* Ensure consistent title height */
}

.page-promo__card-title a {
  color: #8B0000;
  text-decoration: none;
}

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

.page-promo__card-description {
  font-size: 1em;
  color: #555555;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promo__button--details {
  background-color: #FFD700;
  color: #8B0000;
  padding: 10px 20px;
  font-size: 0.9em;
  align-self: flex-start;
}

.page-promo__button--details:hover {
  background-color: #e0b800;
}

.page-promo__how-to-claim {
  padding: 60px 0;
}

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

.page-promo__step-card {
  background-color: #ffffff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
}

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

.page-promo__step-title {
  font-size: 1.8em;
  color: #8B0000;
  margin-bottom: 15px;
}

.page-promo__step-description {
  color: #555555;
  margin-bottom: 25px;
}

.page-promo__button--step {
  background-color: #FFD700;
  color: #8B0000;
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-promo__button--step:hover {
  background-color: #e0b800;
}

.page-promo__terms-conditions {
  padding: 60px 0;
  background-color: #f0f0f0;
}

.page-promo__terms-list {
  list-style: disc inside;
  text-align: left;
  max-width: 800px;
  margin: 0 auto 30px;
  color: #555555;
  font-size: 1.05em;
}

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

.page-promo__button--link {
  background-color: #8B0000;
  color: #FFD700;
  padding: 15px 30px;
  margin-top: 20px;
}

.page-promo__button--link:hover {
  background-color: #6a0000;
}

.page-promo__cta-section {
  padding: 80px 0;
  background-color: #8B0000; /* Auxiliary color as background */
  color: #ffffff;
  text-align: center;
}

.page-promo__cta-title {
  font-size: 2.8em;
  color: #FFD700; /* Main brand color for contrast */
  margin-bottom: 20px;
}

.page-promo__cta-description {
  font-size: 1.2em;
  max-width: 700px;
  margin: 0 auto 40px;
}

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

.page-promo__cta-buttons .page-promo__button--primary {
  background-color: #FFD700;
  color: #8B0000;
}

.page-promo__cta-buttons .page-promo__button--secondary {
  background-color: #ffffff;
  color: #8B0000;
}

.page-promo__app-download {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.page-promo__app-download-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.page-promo__app-text {
  flex: 1;
  min-width: 300px;
}

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

.page-promo__app-title {
  font-size: 2.2em;
  color: #8B0000;
  margin-bottom: 15px;
}

.page-promo__app-description {
  font-size: 1.1em;
  color: #555555;
  margin-bottom: 30px;
}

.page-promo__button--download {
  background-color: #FFD700;
  color: #8B0000;
  padding: 15px 30px;
}

.page-promo__button--download:hover {
  background-color: #e0b800;
}

.page-promo__app-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.page-promo__deep-content {
  padding: 60px 0;
}

.page-promo__content-subtitle {
  font-size: 2em;
  color: #8B0000;
  margin-top: 40px;
  margin-bottom: 20px;
  text-align: left;
}

.page-promo__content-subheading {
  font-size: 1.5em;
  color: #8B0000;
  margin-top: 30px;
  margin-bottom: 15px;
  text-align: left;
}

.page-promo__content-paragraph {
  font-size: 1.05em;
  color: #444444;
  margin-bottom: 20px;
  text-align: justify;
}

.page-promo__content-list {
  list-style: disc inside;
  margin: 20px 0 30px 20px;
  color: #444444;
  font-size: 1.05em;
}

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

.page-promo__content-list strong {
  color: #8B0000;
}

.page-promo__button--large {
  padding: 18px 35px;
  font-size: 1.2em;
  margin-top: 30px;
}

@media (max-width: 1024px) {
  .page-promo__hero-title {
    font-size: 2.8em;
  }
  .page-promo__hero-description {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-promo__hero-section {
    padding: 40px 15px;
  }
  .page-promo__hero-image {
    filter: brightness(0.5); /* Slightly darker for mobile */
  }
  .page-promo__hero-content {
    padding: 15px;
  }
  .page-promo__hero-title {
    font-size: 2.2em;
  }
  .page-promo__hero-description {
    font-size: 1em;
  }
  .page-promo__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-promo__button {
    width: 100%;
    padding: 12px 25px;
  }
  .page-promo__section-title {
    font-size: 2em;
  }
  .page-promo__section-description {
    font-size: 1em;
  }
  .page-promo__promo-grid {
    grid-template-columns: 1fr;
  }
  .page-promo__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-promo__cta-title {
    font-size: 2.2em;
  }
  .page-promo__cta-description {
    font-size: 1em;
  }
  .page-promo__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-promo__app-download-content {
    flex-direction: column;
    text-align: center;
  }
  .page-promo__app-text, .page-promo__app-image-wrapper {
    min-width: unset;
    width: 100%;
  }
  .page-promo__app-title {
    font-size: 1.8em;
  }
  .page-promo__app-description {
    font-size: 1em;
  }
  .page-promo__deep-content img,
  .page-promo__how-to-claim img,
  .page-promo__featured-promotions img,
  .page-promo__app-download img {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
    object-fit: contain; /* Ensure images fit without cropping too much */
  }
  .page-promo__content-subtitle,
  .page-promo__content-subheading {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .page-promo__hero-title {
    font-size: 1.8em;
  }
  .page-promo__hero-description {
    font-size: 0.9em;
  }
  .page-promo__button {
    font-size: 1em;
    padding: 10px 20px;
  }
  .page-promo__section-title {
    font-size: 1.8em;
  }
  .page-promo__cta-title {
    font-size: 1.8em;
  }
  .page-promo__app-title {
    font-size: 1.6em;
  }
  .page-promo__button--large {
    font-size: 1.1em;
    padding: 15px 25px;
  }
}