.page-index-latest-promotions {
  color: #333333; /* Dark text on light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #FFFFFF;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

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

.page-index-latest-promotions__hero-section {
  background-color: #000000; /* Main brand color for hero background */
  color: #FFFFFF;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-index-latest-promotions__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4; /* Slightly dim image to make text readable */
  z-index: 1;
}

.page-index-latest-promotions__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

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

.page-index-latest-promotions__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  line-height: 1.8;
  color: #F0F0F0;
}

.page-index-latest-promotions__hero-button {
  display: inline-block;
  background-color: #FCBC45; /* Login button color */
  color: #000000;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-index-latest-promotions__hero-button:hover {
  background-color: #FFD700;
  transform: translateY(-3px);
}

.page-index-latest-promotions__section-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 20px;
  padding-top: 40px;
}

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

.page-index-latest-promotions__featured-promos {
  padding: 60px 0;
  background-color: #F5F5F5;
}

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

.page-index-latest-promotions__promo-card {
  background-color: #FFFFFF;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-index-latest-promotions__card-image {
  width: 100%;
  height: 250px; /* Fixed height for consistent card appearance */
  object-fit: cover;
  display: block;
  border-bottom: 1px solid #EEEEEE;
}

.page-index-latest-promotions__card-title {
  font-size: 1.8em;
  color: #000000;
  margin: 25px 15px 15px;
}

.page-index-latest-promotions__card-text {
  font-size: 1em;
  color: #666666;
  padding: 0 20px;
  margin-bottom: 25px;
}

.page-index-latest-promotions__card-button {
  display: inline-block;
  background-color: #FCBC45; /* Login button color */
  color: #000000;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-index-latest-promotions__card-button:hover {
  background-color: #FFD700;
}

.page-index-latest-promotions__view-all-button-wrapper {
  text-align: center;
  margin-top: 40px;
}

.page-index-latest-promotions__view-all-button {
  display: inline-block;
  background-color: #000000; /* Main brand color */
  color: #FFFFFF;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-index-latest-promotions__view-all-button:hover {
  background-color: #333333;
}

.page-index-latest-promotions__how-to-claim {
  padding: 80px 0;
  background-color: #FFFFFF;
}

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

.page-index-latest-promotions__step-card {
  text-align: center;
  padding: 30px;
  background-color: #F9F9F9;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-index-latest-promotions__step-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-index-latest-promotions__step-title {
  font-size: 1.5em;
  color: #000000;
  margin-bottom: 15px;
}

.page-index-latest-promotions__step-text {
  color: #666666;
}

.page-index-latest-promotions__cta-wrapper {
  text-align: center;
  margin-top: 60px;
}

.page-index-latest-promotions__cta-button {
  display: inline-block;
  background-color: #FCBC45; /* Login button color */
  color: #000000;
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.3em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-index-latest-promotions__cta-button:hover {
  background-color: #FFD700;
  transform: translateY(-3px);
}

.page-index-latest-promotions__bonus-types {
  padding: 80px 0;
  background-color: #F5F5F5;
}

.page-index-latest-promotions__bonus-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.page-index-latest-promotions__bonus-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.page-index-latest-promotions__bonus-item-title {
  font-size: 2em;
  color: #000000;
  margin-bottom: 15px;
}

.page-index-latest-promotions__bonus-item-text {
  color: #555555;
  line-height: 1.7;
}

.page-index-latest-promotions__why-ph8 {
  padding: 80px 0;
  background-color: #FFFFFF;
}

.page-index-latest-promotions__advantages-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-index-latest-promotions__advantage-item {
  text-align: center;
  padding: 30px;
  background-color: #F9F9F9;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-index-latest-promotions__advantage-icon {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-index-latest-promotions__advantage-title {
  font-size: 1.6em;
  color: #000000;
  margin-bottom: 10px;
}

.page-index-latest-promotions__advantage-text {
  color: #666666;
}

.page-index-latest-promotions__faq-section {
  padding: 80px 0;
  background-color: #F5F5F5;
}

.page-index-latest-promotions__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-index-latest-promotions__faq-item {
  background-color: #FFFFFF;
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
}

.page-index-latest-promotions__faq-question {
  font-size: 1.3em;
  color: #000000;
  padding: 20px 25px;
  cursor: pointer;
  position: relative;
  margin: 0;
  transition: background-color 0.3s ease;
}

.page-index-latest-promotions__faq-question::after {
  content: '+';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-index-latest-promotions__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-index-latest-promotions__faq-answer {
  font-size: 1em;
  color: #555555;
  padding: 0 25px 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-index-latest-promotions__faq-answer.active {
  max-height: 300px; /* Adjust as needed */
  padding: 0 25px 20px;
}

.page-index-latest-promotions__cta-bottom {
  background-color: #000000; /* Main brand color */
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
}

.page-index-latest-promotions__cta-title {
  font-size: 3em;
  color: #FCBC45; /* Login button color */
  margin-bottom: 20px;
}

.page-index-latest-promotions__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #F0F0F0;
}

.page-index-latest-promotions__cta-secondary-button {
  display: inline-block;
  background-color: transparent;
  color: #FCBC45; /* Login button color */
  border: 2px solid #FCBC45;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  margin-left: 20px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-index-latest-promotions__cta-secondary-button:hover {
  background-color: #FCBC45;
  color: #000000;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-index-latest-promotions__hero-title {
    font-size: 3em;
  }
  .page-index-latest-promotions__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-index-latest-promotions {
    padding-top: var(--header-offset, 80px); /* Adjust for smaller header on mobile */
  }
  .page-index-latest-promotions__hero-section {
    padding: 60px 20px;
  }
  .page-index-latest-promotions__hero-title {
    font-size: 2.5em;
  }
  .page-index-latest-promotions__hero-description {
    font-size: 1em;
  }
  .page-index-latest-promotions__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-index-latest-promotions__section-title {
    font-size: 1.8em;
  }
  .page-index-latest-promotions__section-description {
    font-size: 0.95em;
  }
  .page-index-latest-promotions__promo-grid,
  .page-index-latest-promotions__steps-grid,
  .page-index-latest-promotions__advantages-list {
    grid-template-columns: 1fr;
  }
  .page-index-latest-promotions__card-image {
    height: 200px;
  }
  .page-index-latest-promotions__promo-card,
  .page-index-latest-promotions__step-card,
  .page-index-latest-promotions__advantage-item,
  .page-index-latest-promotions__bonus-item {
    padding: 20px;
  }
  .page-index-latest-promotions__card-title {
    font-size: 1.5em;
  }
  .page-index-latest-promotions__step-icon,
  .page-index-latest-promotions__advantage-icon {
    width: 80px;
    height: 80px;
  }
  .page-index-latest-promotions__cta-title {
    font-size: 2.2em;
  }
  .page-index-latest-promotions__cta-button,
  .page-index-latest-promotions__cta-secondary-button {
    font-size: 1em;
    padding: 12px 25px;
    margin: 10px 0;
  }
  .page-index-latest-promotions__cta-secondary-button {
    margin-left: 0;
  }
  /* Ensure all content area images are responsive */
  .page-index-latest-promotions img {
    max-width: 100%;
    height: auto; /* Important for preventing overflow */
  }
  .page-index-latest-promotions__hero-image {
    width: 100%; /* Override fixed width if any */
    height: 100%; /* Override fixed height if any */
    object-fit: cover;
  }
  .page-index-latest-promotions__step-icon, 
  .page-index-latest-promotions__advantage-icon {
    max-width: 100px;
    height: auto;
  }
}