.page-promotions-holiday-offers {
  font-family: 'Arial', sans-serif;
  color: #F8F8F8; /* Light text for dark background */
  background-color: #0A1931; /* Main dark background */
  line-height: 1.6;
}

.page-promotions-holiday-offers__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-promotions-holiday-offers__hero-section {
  background: linear-gradient(135deg, #0A1931 0%, #30475E 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 5px solid #FFD700;
}

.page-promotions-holiday-offers__main-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: bold;
}

.page-promotions-holiday-offers__subtitle {
  font-size: 1.5em;
  color: #E0E0E0;
  margin-bottom: 40px;
}

.page-promotions-holiday-offers__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #0A1931; /* Dark text on gold */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #FFD700;
}

.page-promotions-holiday-offers__cta-button:hover {
  background-color: #E0B500; /* Darker gold on hover */
  transform: translateY(-3px);
}

.page-promotions-holiday-offers__cta-button--secondary {
  background-color: #E03B8B; /* Accent color for secondary CTA */
  color: #F8F8F8;
  border-color: #E03B8B;
}

.page-promotions-holiday-offers__cta-button--secondary:hover {
  background-color: #C12A75;
}

.page-promotions-holiday-offers__cta-button--outline {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  margin-left: 20px;
}

.page-promotions-holiday-offers__cta-button--outline:hover {
  background-color: #FFD700;
  color: #0A1931;
}

.page-promotions-holiday-offers__introduction-section,
.page-promotions-holiday-offers__offer-categories-section,
.page-promotions-holiday-offers__how-to-claim-section,
.page-promotions-holiday-offers__featured-offers-section,
.page-promotions-holiday-offers__why-king88-section,
.page-promotions-holiday-offers__faq-section,
.page-promotions-holiday-offers__final-cta-section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-promotions-holiday-offers__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-promotions-holiday-offers__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #E03B8B;
  border-radius: 2px;
}

.page-promotions-holiday-offers__introduction-section p,
.page-promotions-holiday-offers__offer-categories-section p,
.page-promotions-holiday-offers__how-to-claim-section p,
.page-promotions-holiday-offers__featured-offers-section p,
.page-promotions-holiday-offers__why-king88-section p,
.page-promotions-holiday-offers__faq-section p,
.page-promotions-holiday-offers__final-cta-section p {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-promotions-holiday-offers__image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.page-promotions-holiday-offers__grid-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions-holiday-offers__list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-promotions-holiday-offers__list li {
  background-color: #1A2A44;
  margin-bottom: 15px;
  padding: 20px;
  border-left: 5px solid #FFD700;
  border-radius: 8px;
  font-size: 1.1em;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-holiday-offers__list li strong {
  color: #FFD700;
}

.page-promotions-holiday-offers__steps-list {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
  margin-top: 30px;
}

.page-promotions-holiday-offers__steps-list li {
  counter-increment: step-counter;
  background-color: #1A2A44;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  font-size: 1.1em;
}

.page-promotions-holiday-offers__steps-list li::before {
  content: counter(step-counter);
  background-color: #E03B8B; /* Accent color for step number */
  color: #F8F8F8;
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 1.3em;
  margin-right: 20px;
  flex-shrink: 0;
}

.page-promotions-holiday-offers__inline-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-promotions-holiday-offers__inline-link:hover {
  color: #E03B8B;
  text-decoration: underline;
}

.page-promotions-holiday-offers__full-width-image {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 10px;
  margin-top: 40px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.page-promotions-holiday-offers__offer-card {
  background-color: #1A2A44;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
}

.page-promotions-holiday-offers__card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.page-promotions-holiday-offers__card-title {
  font-size: 1.8em;
  color: #FFD700;
  padding: 20px 25px 10px;
  margin: 0;
}

.page-promotions-holiday-offers__card-description {
  padding: 0 25px 20px;
  margin: 0;
  flex-grow: 1;
}

.page-promotions-holiday-offers__card-button {
  display: block;
  text-align: center;
  background-color: #E03B8B;
  color: #F8F8F8;
  padding: 12px 25px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 0 0 10px 10px;
  transition: background-color 0.3s ease;
}

.page-promotions-holiday-offers__card-button:hover {
  background-color: #C12A75;
}

.page-promotions-holiday-offers__note {
  text-align: center;
  font-style: italic;
  margin-top: 40px;
  color: #AAAAAA;
}

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

.page-promotions-holiday-offers__benefit-item {
  background-color: #1A2A44;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border-top: 4px solid #FFD700;
}

.page-promotions-holiday-offers__benefit-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-promotions-holiday-offers__benefit-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-promotions-holiday-offers__benefit-item p {
  font-size: 1em;
  color: #E0E0E0;
}

.page-promotions-holiday-offers__faq-item {
  background-color: #1A2A44;
  margin-bottom: 15px;
  padding: 20px 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-holiday-offers__faq-question {
  font-size: 1.3em;
  color: #FFD700;
  margin: 0 0 10px 0;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-promotions-holiday-offers__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #E03B8B;
  transition: transform 0.3s ease;
}

.page-promotions-holiday-offers__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-promotions-holiday-offers__faq-answer {
  font-size: 1em;
  color: #E0E0E0;
  margin-top: 10px;
  padding-left: 10px;
  display: none;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.4s ease-out, max-height 0.4s ease-out;
}

.page-promotions-holiday-offers__faq-answer.show {
  display: block;
  opacity: 1;
  max-height: 200px; /* Adjust as needed */
}

.page-promotions-holiday-offers__final-cta-section {
  text-align: center;
  padding-bottom: 80px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-promotions-holiday-offers__main-title {
    font-size: 2.5em;
  }

  .page-promotions-holiday-offers__subtitle {
    font-size: 1.2em;
  }

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

  .page-promotions-holiday-offers__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-promotions-holiday-offers__cta-button--outline {
    margin-left: 0;
    margin-top: 15px;
  }

  .page-promotions-holiday-offers__image-grid {
    grid-template-columns: 1fr;
  }

  .page-promotions-holiday-offers__offer-card {
    margin-left: auto;
    margin-right: auto;
    max-width: 400px;
  }

  .page-promotions-holiday-offers__benefits-grid {
    grid-template-columns: 1fr;
  }

  .page-promotions-holiday-offers__steps-list li {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .page-promotions-holiday-offers__steps-list li::before {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

@media (max-width: 480px) {
  .page-promotions-holiday-offers__hero-section {
    padding: 60px 0;
  }

  .page-promotions-holiday-offers__main-title {
    font-size: 2em;
  }

  .page-promotions-holiday-offers__subtitle {
    font-size: 1em;
  }

  .page-promotions-holiday-offers__section-title {
    font-size: 1.8em;
  }

  .page-promotions-holiday-offers__introduction-section p,
  .page-promotions-holiday-offers__offer-categories-section p,
  .page-promotions-holiday-offers__how-to-claim-section p,
  .page-promotions-holiday-offers__featured-offers-section p,
  .page-promotions-holiday-offers__why-king88-section p,
  .page-promotions-holiday-offers__faq-section p,
  .page-promotions-holiday-offers__final-cta-section p {
    font-size: 0.95em;
  }
}