/* style/index-exclusive-promotions-overview.css */
.page-index-exclusive-promotions-overview {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #f5e6ce; /* Light text for dark background */
  background-color: #0A1931; /* Dark blue background */
}

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

.page-index-exclusive-promotions-overview__container--flex {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.page-index-exclusive-promotions-overview__hero-section {
  background: linear-gradient(135deg, #0A1931 0%, #1a3a6b 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-index-exclusive-promotions-overview__hero-title {
  font-size: 3.2em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-exclusive-promotions-overview__hero-subtitle {
  font-size: 1.4em;
  color: #f5e6ce;
  margin-bottom: 40px;
}

.page-index-exclusive-promotions-overview__hero-image {
  max-width: 80%;
  height: auto;
  display: block;
  margin: 40px auto 0;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-index-exclusive-promotions-overview__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-index-exclusive-promotions-overview__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #0A1931; /* Dark blue text on gold */
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

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

.page-index-exclusive-promotions-overview__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  margin-left: 20px;
}

.page-index-exclusive-promotions-overview__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A1931;
  transform: translateY(-3px);
}

.page-index-exclusive-promotions-overview__section {
  padding: 80px 0;
  text-align: center;
}

.page-index-exclusive-promotions-overview__section--offers {
  background-color: #0A1931;
}

.page-index-exclusive-promotions-overview__section--types {
  background-color: #1a2c4e;
}

.page-index-exclusive-promotions-overview__section--guide {
  background-color: #0A1931;
}

.page-index-exclusive-promotions-overview__section--tips {
  background-color: #1a2c4e;
}

.page-index-exclusive-promotions-overview__section--faq {
  background-color: #0A1931;
}

.page-index-exclusive-promotions-overview__section--cta-final {
  background: linear-gradient(45deg, #0A1931, #284473);
  padding: 100px 0;
}

.page-index-exclusive-promotions-overview__section-title {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

.page-index-exclusive-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-exclusive-promotions-overview__section-description {
  font-size: 1.1em;
  color: #f5e6ce;
  max-width: 800px;
  margin: 0 auto 50px;
}

.page-index-exclusive-promotions-overview__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-index-exclusive-promotions-overview__feature-card {
  background-color: #1a2c4e; /* Darker blue card */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-index-exclusive-promotions-overview__feature-card:hover {
  transform: translateY(-10px);
  background-color: #284473;
}

.page-index-exclusive-promotions-overview__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.7));
}

.page-index-exclusive-promotions-overview__feature-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-index-exclusive-promotions-overview__feature-text {
  color: #f5e6ce;
  font-size: 0.95em;
}

.page-index-exclusive-promotions-overview__offer-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-index-exclusive-promotions-overview__offer-card {
  background-color: #0A1931;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-index-exclusive-promotions-overview__offer-card:hover {
  transform: translateY(-10px);
}

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

.page-index-exclusive-promotions-overview__offer-card .page-index-exclusive-promotions-overview__offer-title {
  font-size: 1.6em;
  color: #FFD700;
  margin: 0 20px 10px;
}

.page-index-exclusive-promotions-overview__offer-card .page-index-exclusive-promotions-overview__offer-text {
  color: #f5e6ce;
  font-size: 0.95em;
  margin: 0 20px 20px;
  flex-grow: 1;
}

.page-index-exclusive-promotions-overview__offer-card .page-index-exclusive-promotions-overview__btn--secondary {
  margin: 0 20px 20px;
  width: calc(100% - 40px);
  text-align: center;
}

.page-index-exclusive-promotions-overview__steps {
  list-style: none;
  padding: 0;
  margin: 50px auto;
  max-width: 900px;
  text-align: left;
}

.page-index-exclusive-promotions-overview__steps li {
  background-color: #1a2c4e;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  padding-left: 80px;
}

.page-index-exclusive-promotions-overview__steps li::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #FFD700;
  color: #0A1931;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5em;
  font-weight: bold;
}

.page-index-exclusive-promotions-overview__step-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-index-exclusive-promotions-overview__step-text {
  color: #f5e6ce;
  font-size: 1em;
}

.page-index-exclusive-promotions-overview__cta-block {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-index-exclusive-promotions-overview__tips-list {
  list-style: none;
  padding: 0;
  margin: 50px auto;
  max-width: 900px;
  text-align: left;
}

.page-index-exclusive-promotions-overview__tips-list li {
  background-color: #0A1931;
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-index-exclusive-promotions-overview__tip-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-top: 0;
  margin-bottom: 8px;
}

.page-index-exclusive-promotions-overview__tip-text {
  color: #f5e6ce;
  font-size: 0.95em;
}

.page-index-exclusive-promotions-overview__faq-item {
  background-color: #1a2c4e;
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-index-exclusive-promotions-overview__faq-question {
  font-size: 1.4em;
  color: #FFD700;
  margin-top: 0;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

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

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

.page-index-exclusive-promotions-overview__faq-answer {
  color: #f5e6ce;
  font-size: 1em;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.page-index-exclusive-promotions-overview__faq-answer.active {
  max-height: 200px; /* Adjust as needed for content */
}

.page-index-exclusive-promotions-overview__cta-content {
  flex: 1;
  text-align: left;
}

.page-index-exclusive-promotions-overview__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-index-exclusive-promotions-overview__cta-description {
  font-size: 1.2em;
  color: #f5e6ce;
  margin-bottom: 30px;
}

.page-index-exclusive-promotions-overview__cta-image {
  flex-shrink: 0;
  width: 400px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

@media (max-width: 992px) {
  .page-index-exclusive-promotions-overview__hero-title {
    font-size: 2.5em;
  }
  .page-index-exclusive-promotions-overview__section-title {
    font-size: 2em;
  }
  .page-index-exclusive-promotions-overview__cta-title {
    font-size: 2.2em;
  }
  .page-index-exclusive-promotions-overview__container--flex {
    flex-direction: column;
    text-align: center;
  }
  .page-index-exclusive-promotions-overview__cta-content {
    text-align: center;
  }
  .page-index-exclusive-promotions-overview__cta-image {
    width: 80%;
  }
}

@media (max-width: 768px) {
  .page-index-exclusive-promotions-overview__hero-section,
  .page-index-exclusive-promotions-overview__section {
    padding: 60px 0;
  }
  .page-index-exclusive-promotions-overview__hero-title {
    font-size: 2em;
  }
  .page-index-exclusive-promotions-overview__hero-subtitle {
    font-size: 1.2em;
  }
  .page-index-exclusive-promotions-overview__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-index-exclusive-promotions-overview__btn--secondary {
    margin-left: 0;
    margin-top: 15px;
  }
  .page-index-exclusive-promotions-overview__grid,
  .page-index-exclusive-promotions-overview__offer-cards {
    grid-template-columns: 1fr;
  }
  .page-index-exclusive-promotions-overview__steps li {
    padding-left: 60px;
  }
  .page-index-exclusive-promotions-overview__steps li::before {
    width: 35px;
    height: 35px;
    font-size: 1.2em;
    left: 15px;
  }
  .page-index-exclusive-promotions-overview__step-title {
    font-size: 1.5em;
  }
  .page-index-exclusive-promotions-overview__cta-block {
    flex-direction: column;
    gap: 15px;
  }
  .page-index-exclusive-promotions-overview__cta-image {
    width: 90%;
  }
}