.page-promotions-latest-offers {
  font-family: Arial, sans-serif;
  color: #ffffff; /* Default text color for dark body background */
  background-color: #0a0a0a; /* Ensure consistency with body background */
}

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

.page-promotions-latest-offers__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.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: 2;
}

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

.page-promotions-latest-offers__hero-title {
  font-size: 3.2em;
  color: #FFFFFF;
  margin-bottom: 20px;
  line-height: 1.2;
}

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

.page-promotions-latest-offers__hero-cta-button {
  display: inline-block;
  background-color: #26A9E0;
  color: #FFFFFF;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
  border: 2px solid transparent;
}

.page-promotions-latest-offers__hero-cta-button:hover {
  background-color: #1e87b7;
}

.page-promotions-latest-offers__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #0a0a0a; /* Ensure content area also has dark background */
  color: #ffffff;
}

.page-promotions-latest-offers__container {
  max-width: 100%;
  margin: 0 auto;
}

.page-promotions-latest-offers__section-title {
  font-size: 2.5em;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 20px;
}

.page-promotions-latest-offers__section-intro,
.page-promotions-latest-offers__section-outro {
  font-size: 1.1em;
  line-height: 1.6;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #f0f0f0;
}

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

.page-promotions-latest-offers__promo-card,
.page-promotions-latest-offers__terms-item,
.page-promotions-latest-offers__step-card {
  background-color: rgba(255, 255, 255, 0.08); /* Slightly lighter background for cards */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-latest-offers__promo-card:hover,
.page-promotions-latest-offers__terms-item:hover,
.page-promotions-latest-offers__step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-promotions-latest-offers__promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-promotions-latest-offers__card-title,
.page-promotions-latest-offers__terms-title,
.page-promotions-latest-offers__step-title {
  font-size: 1.6em;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-promotions-latest-offers__card-text,
.page-promotions-latest-offers__terms-text,
.page-promotions-latest-offers__step-text {
  font-size: 1em;
  line-height: 1.6;
  color: #f0f0f0;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-promotions-latest-offers__card-button {
  display: inline-block;
  background-color: #26A9E0;
  color: #FFFFFF;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease;
  margin-top: auto;
  border: 2px solid transparent;
}

.page-promotions-latest-offers__card-button:hover {
  background-color: #1e87b7;
}

.page-promotions-latest-offers__step-icon {
  background-color: #26A9E0;
  color: #FFFFFF;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  margin: 0 auto 20px auto;
}

.page-promotions-latest-offers__faq-section {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  margin-bottom: 60px;
}

.page-promotions-latest-offers__faq-image {
  flex: 1;
  max-width: 50%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  min-width: 200px; /* Ensure minimum size */
}

.page-promotions-latest-offers__faq-list {
  flex: 1;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-promotions-latest-offers__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  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: 18px 25px;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.15);
  transition: background-color 0.3s ease;
}

.page-promotions-latest-offers__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

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

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

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

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

.page-promotions-latest-offers__faq-item.active .page-promotions-latest-offers__faq-answer {
  max-height: 1000px !important; /* Ensure it expands sufficiently */
  padding: 15px 25px;
}

.page-promotions-latest-offers__faq-answer p {
  margin: 0;
  line-height: 1.6;
}

.page-promotions-latest-offers__cta-buttons {
  text-align: center;
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.page-promotions-latest-offers__btn-primary,
.page-promotions-latest-offers__btn-secondary {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

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

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

.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;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-promotions-latest-offers__hero-title {
    font-size: 2.5em;
  }

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

  .page-promotions-latest-offers__faq-section {
    flex-direction: column;
    align-items: center;
  }

  .page-promotions-latest-offers__faq-image,
  .page-promotions-latest-offers__faq-list {
    max-width: 100%;
    width: 100%;
  }
}

@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;
  }

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

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

  .page-promotions-latest-offers__content-area {
    padding: 30px 15px;
  }

  .page-promotions-latest-offers__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-promotions-latest-offers__section-intro,
  .page-promotions-latest-offers__section-outro {
    margin-bottom: 30px;
  }

  .page-promotions-latest-offers__promo-grid,
  .page-promotions-latest-offers__terms-grid,
  .page-promotions-latest-offers__steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }

  .page-promotions-latest-offers__promo-card,
  .page-promotions-latest-offers__terms-item,
  .page-promotions-latest-offers__step-card {
    padding: 25px;
  }

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

  .page-promotions-latest-offers__card-title,
  .page-promotions-latest-offers__terms-title,
  .page-promotions-latest-offers__step-title {
    font-size: 1.4em;
  }

  .page-promotions-latest-offers__faq-section {
    gap: 20px;
  }

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

  .page-promotions-latest-offers__faq-question h3 {
    font-size: 1.1em;
  }

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

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

  .page-promotions-latest-offers__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-promotions-latest-offers__btn-primary,
  .page-promotions-latest-offers__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 25px;
    font-size: 1em;
  }

  /* Mobile image and container responsive */
  .page-promotions-latest-offers img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-promotions-latest-offers__section,
  .page-promotions-latest-offers__card,
  .page-promotions-latest-offers__container,
  .page-promotions-latest-offers__faq-section,
  .page-promotions-latest-offers__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-promotions-latest-offers__promo-card,
  .page-promotions-latest-offers__terms-item,
  .page-promotions-latest-offers__step-card {
    padding-left: 15px;
    padding-right: 15px;
  }

}

@media (max-width: 480px) {
  .page-promotions-latest-offers__hero-title {
    font-size: 1.8em;
  }

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

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

  .page-promotions-latest-offers__faq-question h3 {
    font-size: 1em;
  }

  .page-promotions-latest-offers__hero-cta-button {
    padding: 10px 20px;
    font-size: 1em;
  }
}