/* style/index-latest-promotions-overview.css */
.page-index-latest-promotions-overview {
  font-family: 'Arial', sans-serif;
  color: #1A1A1A; /* Dark grey for text on light backgrounds */
  background-color: #f5f5f5; /* Light grey background */
}

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

/* Hero Section */
.page-index-latest-promotions-overview__hero-section {
  background: linear-gradient(135deg, #FFD700, #1A1A1A);
  color: #FFFFFF;
  padding: 100px 0;
  text-align: center;
}

.page-index-latest-promotions-overview__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-latest-promotions-overview__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-index-latest-promotions-overview__hero-actions .page-index-latest-promotions-overview__btn {
  margin: 0 10px;
}

/* Buttons */
.page-index-latest-promotions-overview__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1.1em;
}

.page-index-latest-promotions-overview__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #1A1A1A; /* Dark grey for text */
  border: 2px solid #FFD700;
}

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

.page-index-latest-promotions-overview__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
}

.page-index-latest-promotions-overview__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A1A1A;
  transform: translateY(-2px);
}

.page-index-latest-promotions-overview__btn--link {
  background-color: transparent;
  color: #FFD700; /* Gold text */
  border: none;
  padding: 8px 15px;
  font-size: 1em;
}

.page-index-latest-promotions-overview__btn--link:hover {
  text-decoration: underline;
  color: #e6c200;
}

/* General Section Styling */
.page-index-latest-promotions-overview__intro-section,
.page-index-latest-promotions-overview__promotions-grid,
.page-index-latest-promotions-overview__how-to-claim,
.page-index-latest-promotions-overview__terms-section,
.page-index-latest-promotions-overview__why-choose,
.page-index-latest-promotions-overview__faq-section,
.page-index-latest-promotions-overview__cta-section {
  padding: 60px 0;
}

.page-index-latest-promotions-overview__section-title {
  font-size: 2.5em;
  color: #1A1A1A;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

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

.page-index-latest-promotions-overview__section-description,
.page-index-latest-promotions-overview__text-block {
  font-size: 1.1em;
  line-height: 1.7;
  color: #333333;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px auto;
}

.page-index-latest-promotions-overview__text-block {
    text-align: left;
    margin-bottom: 15px;
}

.page-index-latest-promotions-overview__text-block strong {
  color: #FFD700;
}

/* Promotions Grid */
.page-index-latest-promotions-overview__promotions-grid .page-index-latest-promotions-overview__container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

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

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

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

.page-index-latest-promotions-overview__card-title {
  font-size: 1.6em;
  color: #1A1A1A;
  margin-bottom: 15px;
  padding: 0 20px;
}

.page-index-latest-promotions-overview__card-text {
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
  margin-bottom: 20px;
  padding: 0 20px;
}

.page-index-latest-promotions-overview__list {
  list-style-type: disc;
  text-align: left;
  margin: 0 40px 20px;
  color: #444444;
}

.page-index-latest-promotions-overview__list li {
  margin-bottom: 8px;
  font-size: 0.95em;
}

/* How-To Section */
.page-index-latest-promotions-overview__how-to-claim {
  background-color: #FFFFFF;
}

.page-index-latest-promotions-overview__step-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 900px;
}

.page-index-latest-promotions-overview__step-list li {
  background-color: #fdfdfd;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.page-index-latest-promotions-overview__step-list li:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.page-index-latest-promotions-overview__step-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-index-latest-promotions-overview__step-list p {
  font-size: 1em;
  line-height: 1.6;
  color: #444444;
}

.page-index-latest-promotions-overview__step-list a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-index-latest-promotions-overview__step-list a:hover {
  text-decoration: underline;
}

/* Terms Section */
.page-index-latest-promotions-overview__terms-section {
  background-color: #1A1A1A;
  color: #FFFFFF;
}

.page-index-latest-promotions-overview__terms-section .page-index-latest-promotions-overview__section-title {
  color: #FFD700;
}

.page-index-latest-promotions-overview__terms-section .page-index-latest-promotions-overview__section-title::after {
  background-color: #FFFFFF;
}

.page-index-latest-promotions-overview__terms-section .page-index-latest-promotions-overview__text-block {
  color: #f0f0f0;
  text-align: center;
}

.page-index-latest-promotions-overview__list-important {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 0 auto;
}

.page-index-latest-promotions-overview__list-important li {
  background-color: #2a2a2a;
  border-left: 5px solid #FFD700;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  color: #e0e0e0;
  line-height: 1.6;
}

.page-index-latest-promotions-overview__list-important li strong {
  color: #FFD700;
}

/* Why Choose Section */
.page-index-latest-promotions-overview__why-choose {
  background-color: #fdfdfd;
}

.page-index-latest-promotions-overview__benefits-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1000px;
  margin: 40px auto 0 auto;
}

.page-index-latest-promotions-overview__benefits-list li {
  background-color: #FFFFFF;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.3s ease;
}

.page-index-latest-promotions-overview__benefits-list li:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-index-latest-promotions-overview__benefit-title {
  font-size: 1.5em;
  color: #1A1A1A;
  margin-bottom: 10px;
}

.page-index-latest-promotions-overview__benefits-list p {
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
}

.page-index-latest-promotions-overview__benefits-list a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-index-latest-promotions-overview__benefits-list a:hover {
  text-decoration: underline;
}

/* FAQ Section */
.page-index-latest-promotions-overview__faq-section {
  background-color: #eaeaea;
}

.page-index-latest-promotions-overview__faq-item {
  background-color: #FFFFFF;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-latest-promotions-overview__faq-question {
  font-size: 1.3em;
  color: #1A1A1A;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px; /* Space for toggle icon */
}

.page-index-latest-promotions-overview__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #FFD700;
}

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

.page-index-latest-promotions-overview__faq-answer {
  font-size: 1em;
  line-height: 1.6;
  color: #555555;
  display: none; /* Hidden by default */
  padding-top: 10px;
}

.page-index-latest-promotions-overview__faq-item.active .page-index-latest-promotions-overview__faq-answer {
  display: block;
}

.page-index-latest-promotions-overview__faq-answer a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-index-latest-promotions-overview__faq-answer a:hover {
  text-decoration: underline;
}

/* CTA Section */
.page-index-latest-promotions-overview__cta-section {
  background: #1A1A1A;
  color: #FFFFFF;
  text-align: center;
  padding: 80px 0;
}

.page-index-latest-promotions-overview__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-index-latest-promotions-overview__cta-text {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #f0f0f0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-latest-promotions-overview__cta-text a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-index-latest-promotions-overview__cta-text a:hover {
  text-decoration: underline;
}

.page-index-latest-promotions-overview__cta-actions .page-index-latest-promotions-overview__btn {
  margin: 0 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-index-latest-promotions-overview__hero-title {
    font-size: 2.5em;
  }
  .page-index-latest-promotions-overview__section-title {
    font-size: 2em;
  }
  .page-index-latest-promotions-overview__promotions-grid .page-index-latest-promotions-overview__container {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-index-latest-promotions-overview__hero-section,
  .page-index-latest-promotions-overview__intro-section,
  .page-index-latest-promotions-overview__promotions-grid,
  .page-index-latest-promotions-overview__how-to-claim,
  .page-index-latest-promotions-overview__terms-section,
  .page-index-latest-promotions-overview__why-choose,
  .page-index-latest-promotions-overview__faq-section,
  .page-index-latest-promotions-overview__cta-section {
    padding: 40px 0;
  }
  .page-index-latest-promotions-overview__hero-title {
    font-size: 2em;
  }
  .page-index-latest-promotions-overview__hero-subtitle {
    font-size: 1.1em;
  }
  .page-index-latest-promotions-overview__section-title {
    font-size: 1.8em;
  }
  .page-index-latest-promotions-overview__btn {
    padding: 10px 20px;
    font-size: 1em;
  }
  .page-index-latest-promotions-overview__hero-actions .page-index-latest-promotions-overview__btn {
    display: block;
    margin: 15px auto;
    max-width: 250px;
  }
  .page-index-latest-promotions-overview__cta-actions .page-index-latest-promotions-overview__btn {
    display: block;
    margin: 15px auto;
    max-width: 250px;
  }
  .page-index-latest-promotions-overview__benefits-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-index-latest-promotions-overview__hero-title {
    font-size: 1.8em;
  }
  .page-index-latest-promotions-overview__section-title {
    font-size: 1.5em;
  }
  .page-index-latest-promotions-overview__container {
    padding: 0 15px;
  }
  .page-index-latest-promotions-overview__card-title {
    font-size: 1.4em;
  }
  .page-index-latest-promotions-overview__faq-question {
    font-size: 1.1em;
  }
  .page-index-latest-promotions-overview__cta-title {
    font-size: 2em;
  }
}