/* style/index-latest-promotions-overview.css */
:root {
  --page-primary-color: #003366;
  --page-secondary-color: #FFCC00;
  --page-text-color-dark: #333333;
  --page-text-color-light: #ffffff;
  --page-background-light: #f4f7fa;
  --page-background-dark: #002244;
  --page-border-color: #e0e0e0;
}

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

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

.page-index-latest-promotions-overview__hero-section {
  background: linear-gradient(135deg, var(--page-primary-color) 0%, #004488 100%);
  padding: 80px 0;
  color: var(--page-text-color-light);
  text-align: center;
}

.page-index-latest-promotions-overview__main-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: var(--page-secondary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-index-latest-promotions-overview__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-index-latest-promotions-overview__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-index-latest-promotions-overview__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  font-size: 1em;
}

.page-index-latest-promotions-overview__btn--primary {
  background-color: var(--page-secondary-color);
  color: var(--page-primary-color);
}

.page-index-latest-promotions-overview__btn--primary:hover {
  background-color: #e6b800;
  transform: translateY(-2px);
}

.page-index-latest-promotions-overview__btn--secondary {
  background-color: transparent;
  color: var(--page-secondary-color);
  border: 2px solid var(--page-secondary-color);
}

.page-index-latest-promotions-overview__btn--secondary:hover {
  background-color: var(--page-secondary-color);
  color: var(--page-primary-color);
  transform: translateY(-2px);
}

.page-index-latest-promotions-overview__btn--small {
  padding: 8px 15px;
  font-size: 0.9em;
}

.page-index-latest-promotions-overview__btn--center {
  display: block;
  margin: 40px auto 20px auto;
  width: fit-content;
}

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

.page-index-latest-promotions-overview__section:nth-of-type(even) {
  background-color: var(--page-background-light);
}

.page-index-latest-promotions-overview__section-title {
  font-size: 2.2em;
  color: var(--page-primary-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-index-latest-promotions-overview__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--page-secondary-color);
  margin: 15px auto 0 auto;
  border-radius: 2px;
}

.page-index-latest-promotions-overview__text-content {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-index-latest-promotions-overview__text-content strong {
  color: var(--page-primary-color);
}

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

.page-index-latest-promotions-overview__promo-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-index-latest-promotions-overview__promo-img {
  width: 100%;
  max-width: 200px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-index-latest-promotions-overview__card-title {
  font-size: 1.5em;
  color: var(--page-primary-color);
  margin-bottom: 15px;
}

.page-index-latest-promotions-overview__card-description {
  font-size: 1em;
  color: #666666;
  margin-bottom: 25px;
}

.page-index-latest-promotions-overview__promo-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-index-latest-promotions-overview__list-item {
  background-color: #ffffff;
  border-left: 5px solid var(--page-secondary-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 8px;
}

.page-index-latest-promotions-overview__list-title {
  font-size: 1.4em;
  color: var(--page-primary-color);
  margin-bottom: 10px;
}

.page-index-latest-promotions-overview__list-description {
  color: #555555;
}

.page-index-latest-promotions-overview__how-to-claim {
  background-color: var(--page-background-dark);
  color: var(--page-text-color-light);
}

.page-index-latest-promotions-overview__how-to-claim .page-index-latest-promotions-overview__section-title {
  color: var(--page-secondary-color);
}

.page-index-latest-promotions-overview__how-to-claim .page-index-latest-promotions-overview__text-content {
  color: #e0e0e0;
}

.page-index-latest-promotions-overview__how-to-claim .page-index-latest-promotions-overview__text-content a {
  color: var(--page-secondary-color);
  text-decoration: underline;
}

.page-index-latest-promotions-overview__how-to-claim .page-index-latest-promotions-overview__text-content a:hover {
  color: #fff;
}

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

.page-index-latest-promotions-overview__step-card {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
}

.page-index-latest-promotions-overview__step-icon {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: brightness(1.2) drop-shadow(0 0 5px var(--page-secondary-color)); /* Allowed for icons to enhance visibility */
}

.page-index-latest-promotions-overview__step-title {
  font-size: 1.4em;
  color: var(--page-secondary-color);
  margin-bottom: 10px;
}

.page-index-latest-promotions-overview__step-description {
  color: #c0c0c0;
  font-size: 0.95em;
}

.page-index-latest-promotions-overview__note {
  margin-top: 40px;
  font-style: italic;
  text-align: center;
}

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

.page-index-latest-promotions-overview__faq-question {
  font-size: 1.2em;
  color: var(--page-primary-color);
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-index-latest-promotions-overview__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.5em;
  line-height: 1;
  color: var(--page-secondary-color);
}

.page-index-latest-promotions-overview__faq-question.active::after {
  content: '-';
}

.page-index-latest-promotions-overview__faq-answer {
  font-size: 1em;
  color: #555555;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  padding-top: 0;
}

.page-index-latest-promotions-overview__faq-answer.active {
  max-height: 200px; /* Adjust as needed */
  padding-top: 15px;
}

.page-index-latest-promotions-overview__cta-section {
  background-color: var(--page-primary-color);
  color: var(--page-text-color-light);
  padding: 70px 0;
  text-align: center;
}

.page-index-latest-promotions-overview__cta-section .page-index-latest-promotions-overview__section-title {
  color: var(--page-secondary-color);
}

.page-index-latest-promotions-overview__cta-section .page-index-latest-promotions-overview__section-title::after {
  background-color: var(--page-secondary-color);
}

.page-index-latest-promotions-overview__cta-section .page-index-latest-promotions-overview__text-content {
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #e0e0e0;
}

.page-index-latest-promotions-overview__cta-section .page-index-latest-promotions-overview__text-content a {
  color: var(--page-secondary-color);
  text-decoration: underline;
}

.page-index-latest-promotions-overview__cta-section .page-index-latest-promotions-overview__text-content a:hover {
  color: #fff;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-index-latest-promotions-overview__main-title {
    font-size: 2.2em;
  }

  .page-index-latest-promotions-overview__hero-description,
  .page-index-latest-promotions-overview__text-content {
    font-size: 1em;
  }

  .page-index-latest-promotions-overview__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

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

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

  .page-index-latest-promotions-overview__promo-card,
  .page-index-latest-promotions-overview__step-card,
  .page-index-latest-promotions-overview__faq-item {
    padding: 20px;
  }

  .page-index-latest-promotions-overview__btn {
    width: 100%;
    max-width: 300px;
  }
  
  .page-index-latest-promotions-overview__btn--center {
    width: 100%;
    max-width: 300px;
  }
}

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

  .page-index-latest-promotions-overview__hero-section {
    padding: 60px 0;
  }

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

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

  .page-index-latest-promotions-overview__promo-img {
    max-width: 150px;
  }

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