:root {
  --primary-color: #FFD700;
  --secondary-color: #1A1A1A;
  --text-light: #ffffff;
  --text-dark: #333333;
  --bg-light: #f8f9fa;
  --border-color: #e0e0e0;
}

.page-promotions-latest-offer-details {
  font-family: 'Arial', sans-serif;
  color: var(--text-light);
  background-color: var(--secondary-color);
  line-height: 1.6;
}

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

.page-promotions-latest-offer-details__hero-banner {
  padding-top: 180px; /* Desktop: Adjust based on fixed header height */
  padding-bottom: 60px;
  background: linear-gradient(135deg, var(--secondary-color), #0d0d0d);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-promotions-latest-offer-details__hero-title {
  font-size: 48px;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-latest-offer-details__hero-description {
  font-size: 18px;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-promotions-latest-offer-details__highlight {
  color: var(--primary-color);
  font-weight: bold;
}

.page-promotions-latest-offer-details__cta-button {
  display: inline-block;
  padding: 15px 40px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-promotions-latest-offer-details__btn-primary {
  background: var(--primary-color);
  color: var(--secondary-color); /* Dark text on gold button for contrast */
}

.page-promotions-latest-offer-details__btn-primary:hover {
  background: #e6c200; /* Slightly darker gold */
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-promotions-latest-offer-details__btn-secondary {
  background: var(--text-light);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-promotions-latest-offer-details__btn-secondary:hover {
  background: var(--primary-color);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-promotions-latest-offer-details__section-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  color: var(--primary-color);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-promotions-latest-offer-details__text-block {
  font-size: 16px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: var(--text-light);
}

.page-promotions-latest-offer-details__promotions-grid {
  padding: 60px 0;
  background-color: var(--bg-light);
  color: var(--text-dark);
}

.page-promotions-latest-offer-details__promotions-grid .page-promotions-latest-offer-details__section-title,
.page-promotions-latest-offer-details__promotions-grid .page-promotions-latest-offer-details__text-block {
  color: var(--text-dark);
}

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

.page-promotions-latest-offer-details__promo-card {
  background: var(--text-light);
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--text-dark);
}

.page-promotions-latest-offer-details__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-promotions-latest-offer-details__promo-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 25px;
  object-fit: cover;
  aspect-ratio: 16/9;
}

.page-promotions-latest-offer-details__card-title {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-promotions-latest-offer-details__card-description {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-promotions-latest-offer-details__how-to-claim {
  padding: 60px 0;
  background-color: var(--secondary-color);
  color: var(--text-light);
}

.page-promotions-latest-offer-details__how-to-claim .page-promotions-latest-offer-details__section-title {
  color: var(--primary-color);
}

.page-promotions-latest-offer-details__how-to-claim .page-promotions-latest-offer-details__text-block {
  color: var(--text-light);
}

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

.page-promotions-latest-offer-details__step-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
  color: var(--text-light);
}

.page-promotions-latest-offer-details__step-card:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.1);
}

.page-promotions-latest-offer-details__step-icon {
  width: 250px; /* Increased size to meet minimum 200px requirement */
  height: auto;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-promotions-latest-offer-details__step-title {
  font-size: 22px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-promotions-latest-offer-details__step-description {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-light);
}

.page-promotions-latest-offer-details__step-description a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
}

.page-promotions-latest-offer-details__step-description a:hover {
  text-decoration: underline;
}

.page-promotions-latest-offer-details__centered-cta {
  text-align: center;
  margin-top: 60px;
}

.page-promotions-latest-offer-details__why-choose-us {
  padding: 60px 0;
  background-color: var(--bg-light);
  color: var(--text-dark);
}

.page-promotions-latest-offer-details__why-choose-us .page-promotions-latest-offer-details__section-title,
.page-promotions-latest-offer-details__why-choose-us .page-promotions-latest-offer-details__text-block {
  color: var(--text-dark);
}

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

.page-promotions-latest-offer-details__feature-item {
  background: var(--text-light);
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--text-dark);
}

.page-promotions-latest-offer-details__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.page-promotions-latest-offer-details__feature-icon {
  width: 250px; /* Increased size to meet minimum 200px requirement */
  height: auto;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-promotions-latest-offer-details__feature-title {
  font-size: 22px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-promotions-latest-offer-details__feature-description {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-dark);
}

.page-promotions-latest-offer-details__faq-section {
  padding: 60px 0;
  background-color: var(--secondary-color);
  color: var(--text-light);
}

.page-promotions-latest-offer-details__faq-section .page-promotions-latest-offer-details__section-title {
  color: var(--primary-color);
}

.page-promotions-latest-offer-details__faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
}

.page-promotions-latest-offer-details__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-promotions-latest-offer-details__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 20px;
  opacity: 0;
}

.page-promotions-latest-offer-details__faq-item.active .page-promotions-latest-offer-details__faq-answer {
  max-height: 2000px !important;
  padding: 20px !important;
  opacity: 1;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-light);
  border-radius: 0 0 8px 8px;
}

.page-promotions-latest-offer-details__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
  color: var(--text-light);
}

.page-promotions-latest-offer-details__faq-question:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.2);
}

.page-promotions-latest-offer-details__faq-question:active {
  background: rgba(255, 255, 255, 0.2);
}

.page-promotions-latest-offer-details__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: var(--text-light);
}

.page-promotions-latest-offer-details__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: var(--primary-color);
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 20px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}

.page-promotions-latest-offer-details__faq-item.active .page-promotions-latest-offer-details__faq-toggle {
  color: var(--text-light);
  transform: rotate(45deg);
}

@media (max-width: 1024px) {
  .page-promotions-latest-offer-details__hero-title {
    font-size: 40px;
  }
  .page-promotions-latest-offer-details__section-title {
    font-size: 32px;
  }
  .page-promotions-latest-offer-details__promo-cards-grid,
  .page-promotions-latest-offer-details__steps-grid,
  .page-promotions-latest-offer-details__features-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-promotions-latest-offer-details__hero-banner {
    padding-top: 160px !important;
    padding-bottom: 40px;
  }
  .page-promotions-latest-offer-details__container {
    padding: 0 15px;
  }
  .page-promotions-latest-offer-details__hero-title {
    font-size: 32px;
  }
  .page-promotions-latest-offer-details__hero-description {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .page-promotions-latest-offer-details__cta-button {
    padding: 12px 30px;
    font-size: 16px;
  }
  .page-promotions-latest-offer-details__section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .page-promotions-latest-offer-details__text-block {
    font-size: 15px;
    margin-bottom: 40px;
  }
  .page-promotions-latest-offer-details__promotions-grid,
  .page-promotions-latest-offer-details__how-to-claim,
  .page-promotions-latest-offer-details__why-choose-us,
  .page-promotions-latest-offer-details__faq-section {
    padding: 40px 0;
  }
  .page-promotions-latest-offer-details__promo-cards-grid,
  .page-promotions-latest-offer-details__steps-grid,
  .page-promotions-latest-offer-details__features-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .page-promotions-latest-offer-details__promo-card,
  .page-promotions-latest-offer-details__step-card,
  .page-promotions-latest-offer-details__feature-item {
    padding: 25px;
  }
  .page-promotions-latest-offer-details__promo-image {
    margin-bottom: 20px;
  }
}