.page-promotions-latest-offers {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: transparent; /* Assuming body handles global background */
}

.page-promotions-latest-offers__section {
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden; /* Ensure no overflow */
}

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

.page-promotions-latest-offers__section-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #ffffff; /* For dark sections */
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-promotions-latest-offers__description,
.page-promotions-latest-offers__lead-paragraph {
  font-size: 1.1em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

/* Color Contrast Handling */
.page-promotions-latest-offers__dark-bg {
  background-color: rgba(0, 0, 0, 0.7); /* Slightly transparent black for content over video/image */
  color: #ffffff;
}

.page-promotions-latest-offers__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-promotions-latest-offers__light-bg .page-promotions-latest-offers__section-title,
.page-promotions-latest-offers__light-bg .page-promotions-latest-offers__description,
.page-promotions-latest-offers__light-bg .page-promotions-latest-offers__lead-paragraph,
.page-promotions-latest-offers__light-bg .page-promotions-latest-offers__card-title,
.page-promotions-latest-offers__light-bg .page-promotions-latest-offers__card-text,
.page-promotions-latest-offers__light-bg .page-promotions-latest-offers__faq-question h3,
.page-promotions-latest-offers__light-bg .page-promotions-latest-offers__faq-answer p {
  color: #333333; /* Dark text for light backgrounds */
}

/* Hero Section */
.page-promotions-latest-offers__hero-section {
  padding: 0;
  background-color: #0a0a0a; /* Ensure hero section background is dark */
  position: relative;
  min-height: 600px; /* Minimum height for hero */
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--header-offset, 120px); /* Apply header offset here */
}

.page-promotions-latest-offers__video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.page-promotions-latest-offers__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  cursor: pointer; /* Indicate clickable video */
}

.page-promotions-latest-offers__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-promotions-latest-offers__hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  text-align: center;
  padding: 20px;
}

.page-promotions-latest-offers__main-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #ffffff;
  line-height: 1.2;
}

.page-promotions-latest-offers__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap; /* For mobile responsiveness */
}

.page-promotions-latest-offers__btn-primary,
.page-promotions-latest-offers__btn-secondary,
.page-promotions-latest-offers__btn-link {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
}

.page-promotions-latest-offers__btn-primary {
  background-color: #EA7C07; /* Login color for primary CTA */
  color: #ffffff;
  border: 2px solid #EA7C07;
}

.page-promotions-latest-offers__btn-primary:hover {
  background-color: #d16e06;
  border-color: #d16e06;
}

.page-promotions-latest-offers__btn-secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-promotions-latest-offers__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-promotions-latest-offers__btn-large {
  min-width: 200px;
  padding: 18px 35px;
  font-size: 1.1em;
}

.page-promotions-latest-offers__btn-link {
  background-color: transparent;
  color: #26A9E0;
  border: none;
  padding: 0;
  text-align: left;
  font-size: 1em;
}

.page-promotions-latest-offers__btn-link:hover {
  text-decoration: underline;
}

.page-promotions-latest-offers__cta-center {
  margin-top: 40px;
}

/* Detail Section */
.page-promotions-latest-offers__detail-section {
  padding: 100px 0;
  text-align: left;
}

.page-promotions-latest-offers__content-grid {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-promotions-latest-offers__content-grid--reverse {
  flex-direction: row-reverse;
}

.page-promotions-latest-offers__text-block {
  flex: 1;
}

.page-promotions-latest-offers__text-block p {
  margin-bottom: 20px;
  color: #333333;
}

.page-promotions-latest-offers__text-block ul {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #333333;
}

.page-promotions-latest-offers__text-block ul li {
  margin-bottom: 10px;
  color: #333333;
}

.page-promotions-latest-offers__text-block a {
  color: #26A9E0;
  text-decoration: none;
}

.page-promotions-latest-offers__text-block a:hover {
  text-decoration: underline;
}

.page-promotions-latest-offers__image-block {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-promotions-latest-offers__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  display: block;
}

/* How to Claim Section */
.page-promotions-latest-offers__how-to-claim {
  background-color: #26A9E0; /* Using brand color for dark section */
  color: #ffffff;
  padding: 100px 0;
}

.page-promotions-latest-offers__how-to-claim .page-promotions-latest-offers__section-title {
  color: #ffffff;
}

.page-promotions-latest-offers__how-to-claim .page-promotions-latest-offers__description {
  color: #f0f0f0;
}

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

.page-promotions-latest-offers__step-card {
  background-color: rgba(255, 255, 255, 0.15); /* Semi-transparent white on brand color */
  padding: 30px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-promotions-latest-offers__step-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #ffffff;
}

.page-promotions-latest-offers__step-card p {
  color: #f0f0f0;
  margin-bottom: 15px;
}

.page-promotions-latest-offers__step-card a {
  color: #ffffff;
  text-decoration: underline;
}

.page-promotions-latest-offers__step-card a:hover {
  color: #f0f0f0;
}


/* Other Promotions Section */
.page-promotions-latest-offers__other-promotions {
  padding: 100px 0;
  background-color: #0a0a0a; /* Dark background */
  color: #ffffff;
}

.page-promotions-latest-offers__other-promotions .page-promotions-latest-offers__section-title {
  color: #ffffff;
}

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

.page-promotions-latest-offers__card {
  background-color: #ffffff; /* Light background for cards on dark section */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
  transition: transform 0.3s ease;
}

.page-promotions-latest-offers__card:hover {
  transform: translateY(-5px);
}

.page-promotions-latest-offers__card-image {
  width: 100%;
  height: 250px; /* Fixed height for consistent card appearance */
  object-fit: cover;
  display: block;
}

.page-promotions-latest-offers__card-content {
  padding: 25px;
}

.page-promotions-latest-offers__card-title {
  font-size: 1.4em;
  margin-bottom: 10px;
  color: #333333;
}

.page-promotions-latest-offers__card-title a {
  color: #333333;
  text-decoration: none;
}

.page-promotions-latest-offers__card-title a:hover {
  color: #26A9E0;
}

.page-promotions-latest-offers__card-text {
  color: #666666;
  margin-bottom: 20px;
}

/* FAQ Section */
.page-promotions-latest-offers__faq-section {
  padding: 100px 0;
  background-color: #f8f8f8; /* Light background */
  color: #333333;
}

.page-promotions-latest-offers__faq-section .page-promotions-latest-offers__section-title {
  color: #333333;
}

.page-promotions-latest-offers__faq-section .page-promotions-latest-offers__description {
  color: #666666;
}

.page-promotions-latest-offers__faq-list {
  max-width: 900px;
  margin: 50px auto 0;
  text-align: left;
}

.page-promotions-latest-offers__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-promotions-latest-offers__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: #f0f0f0;
  transition: background-color 0.3s ease;
}

.page-promotions-latest-offers__faq-question:hover {
  background-color: #e5e5e5;
}

.page-promotions-latest-offers__faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: #333333;
}

.page-promotions-latest-offers__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: #26A9E0;
  transition: transform 0.3s ease;
}

.page-promotions-latest-offers__faq-item.active .page-promotions-latest-offers__faq-toggle {
  transform: rotate(45deg); /* Plus sign to X or minus */
  content: "−"; /* Visually change to minus */
}

.page-promotions-latest-offers__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

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

.page-promotions-latest-offers__faq-answer p {
  margin: 0;
  color: #555555;
}

/* CTA Section */
.page-promotions-latest-offers__cta-section {
  background-color: #26A9E0; /* Brand color */
  padding: 80px 0;
  color: #ffffff;
}

.page-promotions-latest-offers__cta-content {
  max-width: 900px;
}

.page-promotions-latest-offers__cta-section .page-promotions-latest-offers__section-title {
  color: #ffffff;
}

.page-promotions-latest-offers__cta-section .page-promotions-latest-offers__description {
  color: #f0f0f0;
}

.page-promotions-latest-offers__cta-section .page-promotions-latest-offers__description a {
  color: #ffffff;
  text-decoration: underline;
}