.page-index-latest-promotions {
  --bg-color-primary: #08160F;
  --bg-color-card: #11271B;
  --text-color-main: #F2FFF6;
  --text-color-secondary: #A7D9B8;
  --border-color: #2E7A4E;
  --glow-color: #57E38D;
  --gold-color: #F2C14E;
  --divider-color: #1E3A2A;
  --deep-green: #0A4B2C;
  --btn-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);

  background-color: var(--bg-color-primary);
  color: var(--text-color-main);
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-index-latest-promotions__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 60px;
  padding-top: 10px; /* Small decorative top padding, body handles header offset */
  overflow: hidden;
}

.page-index-latest-promotions__hero-image-wrapper {
  width: 100%;
  position: relative;
  z-index: 1;
}

.page-index-latest-promotions__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-index-latest-promotions__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-align: center;
  padding: 30px 20px;
  margin-top: -100px; /* Adjust to slightly overlap with image */
  background-color: var(--bg-color-primary);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-index-latest-promotions__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: var(--gold-color);
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.page-index-latest-promotions__hero-description {
  font-size: 1.1rem;
  color: var(--text-color-secondary);
  margin-bottom: 30px;
}

.page-index-latest-promotions__cta-button {
  display: inline-block;
  background: var(--btn-gradient);
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-index-latest-promotions__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  opacity: 0.9;
}

.page-index-latest-promotions__cta-button--small {
  padding: 10px 20px;
  font-size: 1rem;
}

.page-index-latest-promotions__cta-button--large {
  padding: 18px 40px;
  font-size: 1.2rem;
}

.page-index-latest-promotions__section {
  padding: 80px 0;
  text-align: center;
}

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

.page-index-latest-promotions__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--gold-color);
  margin-bottom: 40px;
  font-weight: 700;
}

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

.page-index-latest-promotions__grid--two-cols {
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.page-index-latest-promotions__card {
  background-color: var(--bg-color-card);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  text-align: left;
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  color: var(--text-color-main);
}

.page-index-latest-promotions__card-title {
  font-size: 1.5rem;
  color: var(--gold-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-index-latest-promotions__card-text {
  font-size: 1rem;
  color: var(--text-color-secondary);
  line-height: 1.7;
}

.page-index-latest-promotions__promo-card {
  background-color: var(--bg-color-card);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 20px;
}

.page-index-latest-promotions__promo-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 20px;
}

.page-index-latest-promotions__promo-title {
  font-size: 1.6rem;
  color: var(--gold-color);
  margin-bottom: 10px;
  padding: 0 20px;
  font-weight: 600;
}

.page-index-latest-promotions__promo-description {
  font-size: 1rem;
  color: var(--text-color-secondary);
  line-height: 1.7;
  padding: 0 20px;
  margin-bottom: 20px;
  flex-grow: 1;
}

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

.page-index-latest-promotions__step-card {
  background-color: var(--bg-color-card);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.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.4rem;
  color: var(--gold-color);
  margin-bottom: 10px;
  font-weight: 600;
}

.page-index-latest-promotions__step-text {
  font-size: 0.95rem;
  color: var(--text-color-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-index-latest-promotions__step-link {
  color: var(--glow-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-index-latest-promotions__step-link:hover {
  color: var(--gold-color);
}

.page-index-latest-promotions__terms-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  text-align: left;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-latest-promotions__terms-list li {
  background-color: var(--bg-color-card);
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  border-left: 5px solid var(--glow-color);
  color: var(--text-color-main);
  font-size: 1rem;
}

.page-index-latest-promotions__terms-list li strong {
  color: var(--gold-color);
}

.page-index-latest-promotions__text-block {
  font-size: 1.05rem;
  color: var(--text-color-secondary);
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-latest-promotions__faq-section {
  background-color: var(--deep-green);
  padding: 80px 0;
}

.page-index-latest-promotions__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.page-index-latest-promotions__faq-item {
  background-color: var(--bg-color-card);
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  color: var(--text-color-main);
}

.page-index-latest-promotions__faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gold-color);
  transition: background-color 0.3s ease;
}

.page-index-latest-promotions__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-index-latest-promotions__faq-item summary:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.page-index-latest-promotions__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-index-latest-promotions__faq-item[open] .page-index-latest-promotions__faq-toggle {
  transform: rotate(45deg);
}

.page-index-latest-promotions__faq-answer {
  padding: 0 25px 20px;
  font-size: 1rem;
  color: var(--text-color-secondary);
  line-height: 1.7;
}

.page-index-latest-promotions__faq-answer p {
  margin-bottom: 10px;
}

.page-index-latest-promotions__inline-link {
  color: var(--glow-color);
  text-decoration: underline;
  font-weight: bold;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-index-latest-promotions__hero-content {
    margin-top: -80px;
    padding: 20px;
  }
  .page-index-latest-promotions__main-title {
    font-size: clamp(2rem, 4vw, 3rem);
  }
  .page-index-latest-promotions__section {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .page-index-latest-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-index-latest-promotions__hero-image {
    height: 300px; /* Smaller height for mobile hero */
  }
  .page-index-latest-promotions__hero-content {
    margin-top: -60px;
    padding: 15px;
  }
  .page-index-latest-promotions__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }
  .page-index-latest-promotions__hero-description {
    font-size: 1rem;
  }
  .page-index-latest-promotions__cta-button,
  .page-index-latest-promotions__cta-button--small,
  .page-index-latest-promotions__cta-button--large,
  .page-index-latest-promotions a[class*="button"],
  .page-index-latest-promotions 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-index-latest-promotions__cta-buttons,
  .page-index-latest-promotions__button-group,
  .page-index-latest-promotions__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-index-latest-promotions__section,
  .page-index-latest-promotions__card,
  .page-index-latest-promotions__container,
  .page-index-latest-promotions__promo-card,
  .page-index-latest-promotions__step-card,
  .page-index-latest-promotions__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-index-latest-promotions__hero-section {
    padding-top: 10px !important;
  }
  .page-index-latest-promotions__section-title {
    font-size: clamp(1.5rem, 5vw, 2.2rem);
  }
  .page-index-latest-promotions__grid,
  .page-index-latest-promotions__grid--two-cols,
  .page-index-latest-promotions__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-index-latest-promotions__promo-image {
    height: 200px;
  }
  .page-index-latest-promotions__faq-item summary {
    font-size: 1rem;
    padding: 15px 20px;
  }
  .page-index-latest-promotions__faq-answer {
    padding: 0 20px 15px;
  }
}