/* style/index-pg88-latest-promotions-overview.css */
.page-index-pg88-latest-promotions-overview {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f9fa;
}

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

/* Hero Section */
.page-index-pg88-latest-promotions-overview__hero-section {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%); /* Darker blue gradient for depth */
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-index-pg88-latest-promotions-overview__hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at top left, rgba(255, 193, 7, 0.2) 0%, rgba(255, 193, 7, 0) 70%);
  opacity: 0.5;
  transform: rotate(20deg);
  z-index: 0;
}

.page-index-pg88-latest-promotions-overview__hero-section::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at bottom right, rgba(255, 193, 7, 0.15) 0%, rgba(255, 193, 7, 0) 70%);
  opacity: 0.5;
  transform: rotate(-30deg);
  z-index: 0;
}

.page-index-pg88-latest-promotions-overview__hero-section .page-index-pg88-latest-promotions-overview__container {
  position: relative;
  z-index: 1;
}

.page-index-pg88-latest-promotions-overview__main-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-index-pg88-latest-promotions-overview__subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-pg88-latest-promotions-overview__cta-button {
  display: inline-block;
  background-color: #ffc107; /* Accent color */
  color: #000; /* High contrast for text on accent color */
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-index-pg88-latest-promotions-overview__cta-button:hover {
  background-color: #e0a800; /* Slightly darker accent on hover */
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* General Section Styling */
.page-index-pg88-latest-promotions-overview__section {
  padding: 60px 0;
  text-align: center;
}

.page-index-pg88-latest-promotions-overview__section:nth-of-type(even) {
  background-color: #e9ecef;
}

.page-index-pg88-latest-promotions-overview__section-title {
  font-size: 2.5em;
  color: #007bff; /* Main brand color for titles */
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

.page-index-pg88-latest-promotions-overview__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #ffc107; /* Accent underline */
  border-radius: 2px;
}

.page-index-pg88-latest-promotions-overview__sub-heading {
  font-size: 1.8em;
  color: #0056b3;
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-index-pg88-latest-promotions-overview__description {
  font-size: 1.1em;
  color: #555;
  max-width: 900px;
  margin: 0 auto 50px auto;
}

/* Why Choose Section */
.page-index-pg88-latest-promotions-overview__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-index-pg88-latest-promotions-overview__feature-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-pg88-latest-promotions-overview__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-index-pg88-latest-promotions-overview__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  color: #007bff; /* Icon color */
}

.page-index-pg88-latest-promotions-overview__feature-title {
  font-size: 1.5em;
  color: #007bff;
  margin-bottom: 15px;
}

.page-index-pg88-latest-promotions-overview__feature-item p {
  color: #666;
  font-size: 1em;
}

/* Promotion Types Section */
.page-index-pg88-latest-promotions-overview__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-index-pg88-latest-promotions-overview__promo-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: left;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-index-pg88-latest-promotions-overview__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-index-pg88-latest-promotions-overview__promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-index-pg88-latest-promotions-overview__promo-card .page-index-pg88-latest-promotions-overview__card-title {
  font-size: 1.4em;
  color: #007bff;
  padding: 20px 20px 10px;
  margin: 0;
}

.page-index-pg88-latest-promotions-overview__promo-card p {
  color: #666;
  font-size: 0.95em;
  padding: 0 20px 20px;
  flex-grow: 1;
}

.page-index-pg88-latest-promotions-overview__promo-card .page-index-pg88-latest-promotions-overview__card-button {
  display: block;
  background-color: #ffc107;
  color: #000;
  padding: 12px 20px;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.page-index-pg88-latest-promotions-overview__promo-card .page-index-pg88-latest-promotions-overview__card-button:hover {
  background-color: #e0a800;
}

/* How to Claim Section */
.page-index-pg88-latest-promotions-overview__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-index-pg88-latest-promotions-overview__step-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.page-index-pg88-latest-promotions-overview__step-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  color: #007bff;
}

.page-index-pg88-latest-promotions-overview__step-title {
  font-size: 1.6em;
  color: #007bff;
  margin-bottom: 15px;
}

.page-index-pg88-latest-promotions-overview__step-item p {
  color: #666;
  font-size: 1em;
  margin-bottom: 25px;
}

.page-index-pg88-latest-promotions-overview__step-button {
  display: inline-block;
  background-color: #007bff; /* Main brand color for step buttons */
  color: #fff;
  padding: 10px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.95em;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-index-pg88-latest-promotions-overview__step-button:hover {
  background-color: #0056b3;
}

.page-index-pg88-latest-promotions-overview__important-notes {
  margin-top: 60px;
  text-align: left;
  background-color: #fff3cd; /* Light warning yellow */
  border-left: 5px solid #ffc107;
  padding: 25px;
  border-radius: 8px;
}

.page-index-pg88-latest-promotions-overview__important-notes .page-index-pg88-latest-promotions-overview__sub-heading {
  color: #856404; /* Darker yellow for text */
  margin-top: 0;
  font-size: 1.5em;
}

.page-index-pg88-latest-promotions-overview__important-notes ul {
  list-style: disc inside;
  padding-left: 20px;
  color: #856404;
}

.page-index-pg88-latest-promotions-overview__important-notes ul li {
  margin-bottom: 10px;
  font-size: 1em;
}

.page-index-pg88-latest-promotions-overview__important-notes ul li strong {
  color: #554003;
}

/* Review Section */
.page-index-pg88-latest-promotions-overview__review-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 50px;
  text-align: left;
}

.page-index-pg88-latest-promotions-overview__review-block {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-index-pg88-latest-promotions-overview__review-block .page-index-pg88-latest-promotions-overview__sub-heading {
  color: #007bff;
  font-size: 1.6em;
  margin-top: 0;
}

.page-index-pg88-latest-promotions-overview__review-block ul {
  list-style: disc inside;
  padding-left: 20px;
  color: #555;
}

.page-index-pg88-latest-promotions-overview__review-block ul li {
  margin-bottom: 8px;
  font-size: 1em;
}

.page-index-pg88-latest-promotions-overview__advice {
  margin-top: 50px;
  background-color: #e2f0ff; /* Light blue background */
  border-left: 5px solid #007bff;
  padding: 25px;
  border-radius: 8px;
  text-align: left;
}

.page-index-pg88-latest-promotions-overview__advice .page-index-pg88-latest-promotions-overview__sub-heading {
  color: #0056b3;
  margin-top: 0;
  font-size: 1.5em;
}

.page-index-pg88-latest-promotions-overview__advice p {
  color: #003f8c;
  font-size: 1em;
}

/* FAQ Section */
.page-index-pg88-latest-promotions-overview__faq {
  text-align: left;
}

.page-index-pg88-latest-promotions-overview__faq-item {
  background-color: #fff;
  margin-bottom: 15px;
  padding: 20px 25px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.page-index-pg88-latest-promotions-overview__faq-question {
  font-size: 1.3em;
  color: #007bff;
  margin-top: 0;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-index-pg88-latest-promotions-overview__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
  font-weight: bold;
  color: #ffc107;
  transition: transform 0.3s ease;
}

.page-index-pg88-latest-promotions-overview__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(0deg);
}

.page-index-pg88-latest-promotions-overview__faq-answer {
  font-size: 1em;
  color: #555;
  margin-top: 10px;
  display: none; /* Hidden by default, shown by JS */
  padding-left: 10px;
  border-left: 3px solid #ffc107;
}

.page-index-pg88-latest-promotions-overview__faq-question.active + .page-index-pg88-latest-promotions-overview__faq-answer {
  display: block;
}

/* Final CTA Section */
.page-index-pg88-latest-promotions-overview__cta-section {
  background: linear-gradient(135deg, #007bff, #ffc107);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-index-pg88-latest-promotions-overview__cta-section::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -20%;
  width: 140%;
  height: 140%;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
  opacity: 0.8;
  transform: rotate(10deg);
  z-index: 0;
}

.page-index-pg88-latest-promotions-overview__cta-section .page-index-pg88-latest-promotions-overview__container {
  position: relative;
  z-index: 1;
}

.page-index-pg88-latest-promotions-overview__cta-section .page-index-pg88-latest-promotions-overview__section-title {
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.page-index-pg88-latest-promotions-overview__cta-section .page-index-pg88-latest-promotions-overview__section-title::after {
  background-color: #fff;
}

.page-index-pg88-latest-promotions-overview__cta-section .page-index-pg88-latest-promotions-overview__description {
  color: #eee;
  font-size: 1.2em;
  margin-bottom: 40px;
}

.page-index-pg88-latest-promotions-overview__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-index-pg88-latest-promotions-overview__cta-button--primary {
  background-color: #ffc107;
  color: #000;
  padding: 18px 40px;
  font-size: 1.2em;
  border-radius: 50px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-index-pg88-latest-promotions-overview__cta-button--primary:hover {
  background-color: #e0a800;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-index-pg88-latest-promotions-overview__cta-button--secondary {
  background-color: #fff;
  color: #007bff;
  padding: 18px 40px;
  font-size: 1.2em;
  border-radius: 50px;
  border: 2px solid #007bff;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-index-pg88-latest-promotions-overview__cta-button--secondary:hover {
  background-color: #e9ecef;
  color: #0056b3;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-pg88-latest-promotions-overview__main-title {
    font-size: 2.8em;
  }

  .page-index-pg88-latest-promotions-overview__subtitle {
    font-size: 1.2em;
  }

  .page-index-pg88-latest-promotions-overview__section-title {
    font-size: 2em;
  }

  .page-index-pg88-latest-promotions-overview__sub-heading {
    font-size: 1.6em;
  }

  .page-index-pg88-latest-promotions-overview__features-grid,
  .page-index-pg88-latest-promotions-overview__promo-grid,
  .page-index-pg88-latest-promotions-overview__steps-grid,
  .page-index-pg88-latest-promotions-overview__review-content {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-index-pg88-latest-promotions-overview__hero-section {
    padding: 80px 0;
  }

  .page-index-pg88-latest-promotions-overview__main-title {
    font-size: 2.2em;
  }

  .page-index-pg88-latest-promotions-overview__subtitle {
    font-size: 1.1em;
  }

  .page-index-pg88-latest-promotions-overview__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-index-pg88-latest-promotions-overview__section {
    padding: 40px 0;
  }

  .page-index-pg88-latest-promotions-overview__section-title {
    font-size: 1.8em;
  }

  .page-index-pg88-latest-promotions-overview__description {
    font-size: 1em;
  }

  .page-index-pg88-latest-promotions-overview__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-index-pg88-latest-promotions-overview__cta-button--primary,
  .page-index-pg88-latest-promotions-overview__cta-button--secondary {
    width: 80%;
    max-width: 300px;
    margin: 0 auto;
    font-size: 1.1em;
    padding: 15px 30px;
  }
}

@media (max-width: 576px) {
  .page-index-pg88-latest-promotions-overview__main-title {
    font-size: 1.8em;
  }

  .page-index-pg88-latest-promotions-overview__subtitle {
    font-size: 0.95em;
  }

  .page-index-pg88-latest-promotions-overview__section-title {
    font-size: 1.5em;
  }

  .page-index-pg88-latest-promotions-overview__features-grid,
  .page-index-pg88-latest-promotions-overview__promo-grid,
  .page-index-pg88-latest-promotions-overview__steps-grid,
  .page-index-pg88-latest-promotions-overview__review-content {
    grid-template-columns: 1fr;
  }

  .page-index-pg88-latest-promotions-overview__promo-card {
    text-align: center;
  }

  .page-index-pg88-latest-promotions-overview__promo-card .page-index-pg88-latest-promotions-overview__card-title,
  .page-index-pg88-latest-promotions-overview__promo-card p,
  .page-index-pg88-latest-promotions-overview__promo-card .page-index-pg88-latest-promotions-overview__card-button {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-index-pg88-latest-promotions-overview__promo-card .page-index-pg88-latest-promotions-overview__card-button {
    width: calc(100% - 30px);
    margin: 10px 15px;
    box-sizing: border-box;
  }

  .page-index-pg88-latest-promotions-overview__important-notes,
  .page-index-pg88-latest-promotions-overview__review-block,
  .page-index-pg88-latest-promotions-overview__advice,
  .page-index-pg88-latest-promotions-overview__faq-item {
    padding: 15px;
  }

  .page-index-pg88-latest-promotions-overview__faq-question {
    font-size: 1.1em;
  }

  .page-index-pg88-latest-promotions-overview__faq-answer {
    font-size: 0.95em;
  }

  .page-index-pg88-latest-promotions-overview__cta-button--primary,
  .page-index-pg88-latest-promotions-overview__cta-button--secondary {
    width: 90%;
    font-size: 1em;
    padding: 12px 25px;
  }
}