/* style/index-latest-promotions-overview.css */
.page-index-latest-promotions-overview {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light grey for general text on dark backgrounds */
  background-color: #1A202C; /* Main dark background */
  line-height: 1.6;
}

.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, #1A202C 0%, #3a4a6b 100%); /* Dark gradient for hero */
  padding: 100px 0;
  text-align: center;
  color: #FFFFFF;
}

.page-index-latest-promotions-overview__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFFFFF; /* White for main title */
}

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

.page-index-latest-promotions-overview__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold for CTA button */
  color: #1A202C; /* Dark text on gold button for contrast */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-index-latest-promotions-overview__cta-button:hover {
  background-color: #e5c100; /* Slightly darker gold on hover */
  transform: translateY(-3px);
}

.page-index-latest-promotions-overview__section-title {
  font-size: 2.8em;
  text-align: center;
  margin-bottom: 20px;
  color: #FFFFFF; /* White for section titles */
  font-weight: bold;
}

.page-index-latest-promotions-overview__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
  color: #B0B0B0;
}

.page-index-latest-promotions-overview__highlight-text {
  color: #FFD700; /* Gold for highlight text */
}

.page-index-latest-promotions-overview__promotions-grid {
  padding: 80px 0;
  background-color: #2a344a; /* Slightly lighter dark background for this section */
}

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

.page-index-latest-promotions-overview__promotion-card {
  background-color: #1A202C; /* Dark background for cards */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.page-index-latest-promotions-overview__promotion-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 3px solid #FFD700; /* Gold border for visual separation */
}

.page-index-latest-promotions-overview__card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-index-latest-promotions-overview__card-title {
  font-size: 1.8em;
  color: #FFD700; /* Gold for card titles */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-index-latest-promotions-overview__card-description {
  font-size: 1em;
  color: #B0B0B0;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-index-latest-promotions-overview__card-features {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-index-latest-promotions-overview__card-features li {
  color: #E0E0E0;
  margin-bottom: 8px;
  position: relative;
  padding-left: 25px;
}

.page-index-latest-promotions-overview__card-features li::before {
  content: '✓';
  color: #FFD700;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-index-latest-promotions-overview__card-button {
  display: block;
  width: 100%;
  text-align: center;
  background-color: #FFD700;
  color: #1A202C;
  padding: 12px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease;
  margin-top: auto; /* Push button to the bottom */
}

.page-index-latest-promotions-overview__card-button:hover {
  background-color: #e5c100;
}

.page-index-latest-promotions-overview__why-choose {
  padding: 80px 0;
  background-color: #1A202C;
}

.page-index-latest-promotions-overview__why-choose-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.page-index-latest-promotions-overview__text-block {
  flex: 1;
  min-width: 300px;
  color: #B0B0B0;
  font-size: 1.1em;
}

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

.page-index-latest-promotions-overview__why-choose-image {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

.page-index-latest-promotions-overview__cta-banner {
  background: linear-gradient(90deg, #FFD700, #e5c100); /* Gold gradient for CTA banner */
  padding: 60px 0;
  text-align: center;
  color: #1A202C; /* Dark text on gold background for contrast */
}

.page-index-latest-promotions-overview__cta-title {
  font-size: 2.5em;
  margin-bottom: 15px;
  font-weight: bold;
  color: #1A202C;
}

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

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

.page-index-latest-promotions-overview__cta-button--primary {
  background-color: #1A202C; /* Dark button on gold banner */
  color: #FFD700;
}

.page-index-latest-promotions-overview__cta-button--primary:hover {
  background-color: #333333;
  color: #FFD700;
}

.page-index-latest-promotions-overview__cta-button--secondary {
  background-color: transparent;
  border: 2px solid #1A202C; /* Dark border for secondary button */
  color: #1A202C;
}

.page-index-latest-promotions-overview__cta-button--secondary:hover {
  background-color: #1A202C;
  color: #FFD700;
}

.page-index-latest-promotions-overview__faq {
  padding: 80px 0;
  background-color: #2a344a;
}

.page-index-latest-promotions-overview__faq-item {
  background-color: #1A202C;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-index-latest-promotions-overview__faq-question {
  font-size: 1.5em;
  color: #FFD700;
  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.2em;
  transition: transform 0.3s ease;
}

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

.page-index-latest-promotions-overview__faq-answer {
  font-size: 1.1em;
  color: #B0B0B0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
  opacity: 0;
}

.page-index-latest-promotions-overview__faq-answer.active {
  max-height: 200px; /* Adjust as needed */
  opacity: 1;
  margin-top: 10px;
}

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

  .page-index-latest-promotions-overview__hero-subtitle {
    font-size: 1em;
  }

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

  .page-index-latest-promotions-overview__why-choose-content {
    flex-direction: column;
  }

  .page-index-latest-promotions-overview__why-choose-image {
    max-width: 100%;
  }

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

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

  .page-index-latest-promotions-overview__cta-button {
    width: 80%;
    margin: 0 auto;
  }
}

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

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

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

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

  .page-index-latest-promotions-overview__cta-button {
    width: 90%;
  }

  .page-index-latest-promotions-overview__grid-layout {
    grid-template-columns: 1fr;
  }
}