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

.page-promotions__dark-bg {
  background-color: #B71C1C; /* Custom background color */
  color: #FFF5E1; /* Custom text color for dark backgrounds */
}

.page-promotions__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-promotions__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 40px;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  overflow: hidden;
}

.page-promotions__hero-image-wrapper {
  width: 100%;
  max-height: 500px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-promotions__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-promotions__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  margin-top: -100px; /* Adjust to place content below image but not too far */
  background-color: rgba(183, 28, 28, 0.9); /* Deep Red with some transparency */
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  color: #FFF5E1;
}

.page-promotions__main-title {
  font-size: clamp(2em, 5vw, 3em);
  font-weight: bold;
  margin-bottom: 15px;
  color: #FFD86A;
  line-height: 1.2;
}

.page-promotions__description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #FFF5E1;
}

.page-promotions__cta-button {
  display: inline-block;
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%);
  color: #7A0E0E;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: 2px solid #F2B544;
}

.page-promotions__cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  background: linear-gradient(180deg, #E6B800 0%, #FFD86A 100%);
}

.page-promotions__video-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  padding-top: 10px; /* Small top padding for video section */
  background-color: #ffffff;
}

.page-promotions__video-wrapper {
  width: 100%;
  max-width: 1200px;
  box-sizing: border-box;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-promotions__video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
}

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

.page-promotions__video-caption {
  text-align: center;
  margin-top: 15px;
  font-size: 0.95em;
  color: #555555;
}

.page-promotions__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-promotions__section-title {
  font-size: 2.2em;
  color: #C91F17;
  margin-top: 40px;
  margin-bottom: 25px;
  text-align: center;
  font-weight: bold;
}

.page-promotions__section-title:first-of-type {
  margin-top: 0;
}

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

.page-promotions__promo-card {
  background-color: #D32F2F; /* Custom Card BG */
  color: #FFF5E1; /* Custom Text Main */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid #F2B544; /* Custom Border */
}

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

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

.page-promotions__card-title {
  font-size: 1.5em;
  font-weight: bold;
  margin: 20px 20px 10px;
  color: #FFD86A;
}

.page-promotions__promo-card p {
  padding: 0 20px;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions__card-button {
  display: inline-block;
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%);
  color: #7A0E0E;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  margin: 0 20px 20px;
  align-self: flex-start;
  transition: all 0.3s ease;
  border: 2px solid #F2B544;
}

.page-promotions__card-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  background: linear-gradient(180deg, #E6B800 0%, #FFD86A 100%);
}

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

.page-promotions__step-item {
  background-color: #f8f8f8;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 1px solid #eee;
}

.page-promotions__step-number {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #C91F17;
  color: #ffffff;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 15px;
}

.page-promotions__step-title {
  font-size: 1.3em;
  color: #C91F17;
  margin-bottom: 10px;
}

.page-promotions__terms-list {
  list-style: disc inside;
  padding-left: 20px;
  margin-bottom: 30px;
}

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

.page-promotions__faq-list {
  margin-top: 30px;
  margin-bottom: 40px;
}

.page-promotions__faq-item {
  background-color: #f8f8f8;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-promotions__faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  cursor: pointer;
  font-weight: bold;
  color: #C91F17;
  background-color: #fff;
  border-bottom: 1px solid #eee;
}

.page-promotions__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-promotions__faq-qtext {
  flex-grow: 1;
}

.page-promotions__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 10px;
  color: #E53935;
}

.page-promotions__faq-item[open] summary {
  border-bottom: none;
}

.page-promotions__faq-item[open] .page-promotions__faq-toggle {
  content: '−';
}

.page-promotions__faq-answer {
  padding: 15px 20px;
  color: #555;
  background-color: #fcfcfc;
  border-top: 1px solid #eee;
}

.page-promotions__faq-answer p {
  margin: 0;
}

.page-promotions__cta-section {
  text-align: center;
  padding: 50px 20px;
  border-radius: 10px;
  margin-top: 50px;
  color: #FFF5E1;
}

.page-promotions__cta-title {
  font-size: 2.5em;
  color: #FFD86A;
  margin-bottom: 20px;
}

.page-promotions__cta-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-promotions__hero-content {
    margin-top: -80px;
  }
  .page-promotions__main-title {
    font-size: clamp(1.8em, 4.5vw, 2.8em);
  }
  .page-promotions__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-promotions__hero-image-wrapper {
    max-height: 300px;
  }
  .page-promotions__hero-content {
    margin-top: -60px;
    padding: 15px;
  }
  .page-promotions__main-title {
    font-size: clamp(1.5em, 6vw, 2.5em);
  }
  .page-promotions__description {
    font-size: 1em;
  }
  .page-promotions__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promotions__section-title {
    font-size: 1.8em;
    margin-top: 30px;
    margin-bottom: 20px;
  }
  .page-promotions__promo-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions__steps {
    grid-template-columns: 1fr;
  }
  .page-promotions__cta-title {
    font-size: 2em;
  }
  .page-promotions__cta-description {
    font-size: 1em;
  }
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-promotions video,
  .page-promotions__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-promotions__hero-section,
  .page-promotions__video-section,
  .page-promotions__content-area,
  .page-promotions__promo-card,
  .page-promotions__step-item,
  .page-promotions__faq-item,
  .page-promotions__cta-section,
  .page-promotions__video-wrapper,
  .page-promotions__video-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }
  .page-promotions__video-section {
    padding-top: 10px !important;
  }
  .page-promotions__cta-button,
  .page-promotions__card-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin-left: 0;
    margin-right: 0;
  }
  .page-promotions__hero-content {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 480px) {
  .page-promotions__hero-content {
    margin-top: -40px;
  }
  .page-promotions__main-title {
    font-size: clamp(1.2em, 7vw, 2em);
  }
  .page-promotions__section-title {
    font-size: 1.5em;
  }
  .page-promotions__cta-title {
    font-size: 1.8em;
  }
}