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

.page-promo-latest-offers__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background-color: #000000; /* Dark background for hero */
  color: #FFFFFF;
  overflow: hidden;
}

.page-promo-latest-offers__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-promo-latest-offers__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4; /* Slightly dim image to make text readable */
}

.page-promo-latest-offers__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.page-promo-latest-offers__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FCBC45; /* Login button color for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-promo-latest-offers__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #F0F0F0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-promo-latest-offers__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-promo-latest-offers__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;
  white-space: nowrap;
}

.page-promo-latest-offers__button--register {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #FFFFFF;
}

.page-promo-latest-offers__button--register:hover {
  background-color: #FCBC45;
  border-color: #FCBC45;
  color: #000000;
  transform: translateY(-3px);
}

.page-promo-latest-offers__button--login {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-promo-latest-offers__button--login:hover {
  background-color: #FFFFFF;
  border-color: #FFFFFF;
  color: #000000;
  transform: translateY(-3px);
}

.page-promo-latest-offers__offers-grid-section,
.page-promo-latest-offers__details-section,
.page-promo-latest-offers__terms-section,
.page-promo-latest-offers__faq-section,
.page-promo-latest-offers__cta-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.page-promo-latest-offers__section-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 20px;
}

.page-promo-latest-offers__section-description {
  font-size: 1.1em;
  color: #555555;
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promo-latest-offers__offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-promo-latest-offers__offer-card {
  background-color: #F8F8F8;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-promo-latest-offers__offer-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-promo-latest-offers__offer-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  border-bottom: 1px solid #EEEEEE;
}

.page-promo-latest-offers__offer-title {
  font-size: 1.6em;
  color: #000000;
  margin: 25px 20px 15px;
}

.page-promo-latest-offers__offer-text {
  font-size: 1em;
  color: #666666;
  padding: 0 20px;
  flex-grow: 1;
  margin-bottom: 25px;
}

.page-promo-latest-offers__button--card {
  background-color: #FCBC45;
  color: #000000;
  border: none;
  margin: 0 20px 25px;
}

.page-promo-latest-offers__button--card:hover {
  background-color: #E0A535;
  transform: translateY(-3px);
}

.page-promo-latest-offers__details-content,
.page-promo-latest-offers__terms-content {
  font-size: 1.1em;
  color: #444444;
}

.page-promo-latest-offers__paragraph {
  margin-bottom: 20px;
}

.page-promo-latest-offers__paragraph a {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
}

.page-promo-latest-offers__paragraph a:hover {
  text-decoration: underline;
}

.page-promo-latest-offers__steps-list,
.page-promo-latest-offers__terms-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-promo-latest-offers__step-item,
.page-promo-latest-offers__term-item {
  background-color: #F8F8F8;
  border-left: 5px solid #FCBC45;
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.page-promo-latest-offers__step-title,
.page-promo-latest-offers__term-heading {
  font-size: 1.4em;
  color: #000000;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-promo-latest-offers__step-description,
.page-promo-latest-offers__term-description {
  color: #555555;
  font-size: 1em;
}

.page-promo-latest-offers__step-description a {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
}

.page-promo-latest-offers__step-description a:hover {
  text-decoration: underline;
}

.page-promo-latest-offers__button--details {
  background-color: #000000;
  color: #FFFFFF;
  border: none;
  margin-top: 30px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.page-promo-latest-offers__button--details:hover {
  background-color: #333333;
  transform: translateY(-3px);
}

.page-promo-latest-offers__faq-container {
  margin-top: 30px;
}

.page-promo-latest-offers__faq-item {
  background-color: #F8F8F8;
  border-radius: 8px;
  padding: 20px 25px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-promo-latest-offers__faq-question {
  font-size: 1.3em;
  color: #000000;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-promo-latest-offers__faq-answer {
  font-size: 1em;
  color: #555555;
}

.page-promo-latest-offers__cta-section {
  background-color: #000000;
  color: #FFFFFF;
  text-align: center;
  padding: 80px 20px;
}

.page-promo-latest-offers__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FCBC45;
}

.page-promo-latest-offers__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #F0F0F0;
}

.page-promo-latest-offers__cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-promo-latest-offers__button--cta-register {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-promo-latest-offers__button--cta-register:hover {
  background-color: #FFFFFF;
  border-color: #FFFFFF;
  color: #000000;
  transform: translateY(-3px);
}

.page-promo-latest-offers__button--cta-login {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.page-promo-latest-offers__button--cta-login:hover {
  background-color: #FCBC45;
  border-color: #FCBC45;
  color: #000000;
  transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-promo-latest-offers__hero-title {
    font-size: 2.8em;
  }
  .page-promo-latest-offers__hero-description {
    font-size: 1.1em;
  }
  .page-promo-latest-offers__section-title {
    font-size: 2.2em;
  }
  .page-promo-latest-offers__cta-title {
    font-size: 2.4em;
  }
}

@media (max-width: 768px) {
  .page-promo-latest-offers__hero-section {
    padding: 60px 15px;
  }
  .page-promo-latest-offers__hero-title {
    font-size: 2.2em;
  }
  .page-promo-latest-offers__hero-description {
    font-size: 1em;
  }
  .page-promo-latest-offers__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-promo-latest-offers__button {
    width: 100%;
    padding: 12px 20px;
  }
  .page-promo-latest-offers__offers-grid-section,
  .page-promo-latest-offers__details-section,
  .page-promo-latest-offers__terms-section,
  .page-promo-latest-offers__faq-section,
  .page-promo-latest-offers__cta-section {
    padding: 40px 15px;
  }
  .page-promo-latest-offers__section-title {
    font-size: 1.8em;
  }
  .page-promo-latest-offers__section-description {
    font-size: 0.95em;
  }
  .page-promo-latest-offers__offer-title {
    font-size: 1.4em;
  }
  .page-promo-latest-offers__offer-text {
    font-size: 0.9em;
  }
  .page-promo-latest-offers__offer-image {
    height: 200px;
  }
  .page-promo-latest-offers__step-title,
  .page-promo-latest-offers__term-heading {
    font-size: 1.2em;
  }
  .page-promo-latest-offers__faq-question {
    font-size: 1.1em;
  }
  .page-promo-latest-offers__cta-title {
    font-size: 2em;
  }
  /* Prevent image overflow on mobile */
  .page-promo-latest-offers img {
    max-width: 100%;
    height: auto;
  }
  .page-promo-latest-offers {
    overflow-x: hidden;
  }
}

@media (max-width: 480px) {
  .page-promo-latest-offers__hero-title {
    font-size: 1.8em;
  }
  .page-promo-latest-offers__hero-description {
    font-size: 0.9em;
  }
  .page-promo-latest-offers__section-title {
    font-size: 1.6em;
  }
  .page-promo-latest-offers__cta-title {
    font-size: 1.8em;
  }
}