.page-promotions-latest-offers {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: var(--dark-bg-1); /* Inherited from shared.css */
}

.page-promotions-latest-offers__hero-section {
  position: relative;
  width: 100%;
  height: 600px; /* Adjust as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

.page-promotions-latest-offers__hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 0;
  transform: translate(-50%, -50%);
  background-size: cover;
}

.page-promotions-latest-offers__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.page-promotions-latest-offers__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
  color: #ffffff;
}

.page-promotions-latest-offers__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Auxiliary color for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-promotions-latest-offers__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-promotions-latest-offers__btn-primary {
  display: inline-block;
  background-color: #FFD700; /* Auxiliary color for CTA */
  color: #1A2B4C; /* Main color for text on auxiliary background */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-promotions-latest-offers__btn-primary:hover {
  background-color: #e6c200;
  color: #0d1a33;
}

.page-promotions-latest-offers__btn-secondary {
  display: inline-block;
  background-color: transparent;
  color: #FFD700; /* Auxiliary color for text */
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  border: 2px solid #FFD700;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
}

.page-promotions-latest-offers__btn-secondary:hover {
  background-color: #FFD700;
  color: #1A2B4C;
}

.page-promotions-latest-offers__section {
  padding: 80px 0;
  text-align: center;
}

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

.page-promotions-latest-offers__section-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #FFD700;
}

.page-promotions-latest-offers__section-description {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #cccccc;
}

.page-promotions-latest-offers__why-choose {
  background-color: #1A2B4C; /* Main brand color for section background */
}

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

.page-promotions-latest-offers__feature-item {
  background-color: rgba(255, 255, 255, 0.05); /* Slightly lighter background for cards */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  color: #ffffff;
}

.page-promotions-latest-offers__feature-icon {
  width: 200px;
  height: 200px;
  margin-bottom: 20px;
  border-radius: 50%;
  object-fit: cover; /* Ensure images fill the circular space */
}

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

.page-promotions-latest-offers__feature-text {
  font-size: 1em;
  color: #f0f0f0;
}

.page-promotions-latest-offers__promo-types {
  background-color: var(--dark-bg-1);
}

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

.page-promotions-latest-offers__promo-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  display: flex;
  flex-direction: column;
}

.page-promotions-latest-offers__promo-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
}

.page-promotions-latest-offers__promo-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-promotions-latest-offers__promo-title {
  font-size: 1.6em;
  margin-bottom: 15px;
  color: #FFD700;
}

.page-promotions-latest-offers__promo-text {
  font-size: 0.95em;
  color: #cccccc;
  margin-bottom: 20px;
}

.page-promotions-latest-offers__how-to-claim {
  background-color: #1A2B4C;
}

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

.page-promotions-latest-offers__step-item {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  color: #ffffff;
}

.page-promotions-latest-offers__step-number {
  font-size: 2.5em;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 15px;
}

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

.page-promotions-latest-offers__step-text {
  font-size: 1em;
  color: #f0f0f0;
}

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

.page-promotions-latest-offers__step-text a:hover {
  color: #e6c200;
}

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

.page-promotions-latest-offers__terms-conditions {
  background-color: var(--dark-bg-1);
}

.page-promotions-latest-offers__faq-section {
  background-color: #1A2B4C;
}

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

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

.page-promotions-latest-offers__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: #1A2B4C; /* Main brand color for question background */
  color: #FFD700; /* Auxiliary color for question text */
  font-weight: bold;
  transition: background-color 0.3s ease;
}

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

.page-promotions-latest-offers__faq-heading {
  margin: 0;
  font-size: 1.2em;
  color: #FFD700;
}

.page-promotions-latest-offers__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-promotions-latest-offers__faq-item.active .page-promotions-latest-offers__faq-toggle {
  transform: rotate(45deg); /* Plus sign rotates to form an X or minus */
}

.page-promotions-latest-offers__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  background-color: rgba(255, 255, 255, 0.03);
  color: #cccccc;
  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 all content */
  padding: 20px 25px;
}

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

.page-promotions-latest-offers__final-cta {
  padding-bottom: 80px;
  background-color: var(--dark-bg-1);
}

/* Image and Video Responsiveness */
.page-promotions-latest-offers img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page-promotions-latest-offers video {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .page-promotions-latest-offers {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-promotions-latest-offers__hero-section {
    height: 500px;
    padding-top: var(--header-offset, 120px) !important; /* Ensure content is not hidden by fixed header on mobile */
  }

  .page-promotions-latest-offers__hero-title {
    font-size: 2.2em;
  }

  .page-promotions-latest-offers__hero-description {
    font-size: 1em;
  }

  .page-promotions-latest-offers__section-title {
    font-size: 2em;
  }

  .page-promotions-latest-offers__container {
    padding: 0 15px;
  }

  .page-promotions-latest-offers__features-grid,
  .page-promotions-latest-offers__promo-grid,
  .page-promotions-latest-offers__steps-grid {
    grid-template-columns: 1fr;
  }

  .page-promotions-latest-offers__feature-item,
  .page-promotions-latest-offers__promo-card,
  .page-promotions-latest-offers__step-item,
  .page-promotions-latest-offers__faq-item {
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .page-promotions-latest-offers__promo-image {
    height: 200px;
  }

  .page-promotions-latest-offers__btn-primary,
  .page-promotions-latest-offers__btn-secondary,
  .page-promotions-latest-offers a[class*="button"],
  .page-promotions-latest-offers a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-promotions-latest-offers__cta-buttons,
  .page-promotions-latest-offers__button-group,
  .page-promotions-latest-offers__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  .page-promotions-latest-offers img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-promotions-latest-offers video,
  .page-promotions-latest-offers__hero-video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-promotions-latest-offers__video-section,
  .page-promotions-latest-offers__video-container,
  .page-promotions-latest-offers__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-promotions-latest-offers__faq-answer {
    padding: 0 15px;
  }

  .page-promotions-latest-offers__faq-item.active .page-promotions-latest-offers__faq-answer {
    padding: 15px 15px;
  }

  .page-promotions-latest-offers__faq-question {
    padding: 15px 15px;
  }
}