/* style/promo.css */
.page-promo {
  font-family: Arial, sans-serif;
  color: #333333; /* Dark text for light body background */
  background-color: #FFFFFF;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

.page-promo__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-promo__section-title {
  font-size: 2.5em;
  color: #000000;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-promo__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #555555;
}

/* Hero Section */
.page-promo__hero-section {
  position: relative;
  overflow: hidden;
  padding: 0;
  margin-bottom: 60px;
  color: #FFFFFF; /* Text color for hero content over image */
}

.page-promo__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Darken image slightly for text readability */
}

.page-promo__hero-container {
  position: relative;
  max-width: 100%; /* Ensure no overflow */
  margin: 0 auto;
}

.page-promo__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10;
  max-width: 90%;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent dark background for text */
  border-radius: 10px;
}

.page-promo__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: 700;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-promo__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #F0F0F0;
}

.page-promo__cta-button {
  display: inline-block;
  background-color: #FCBC45; /* Login button color for CTA */
  color: #000000; /* Dark text for golden button */
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-promo__cta-button:hover {
  background-color: #e0a53b;
  transform: translateY(-3px);
}

/* Why Section */
.page-promo__why-section {
  padding: 60px 0;
  background-color: #F8F8F8;
  margin-bottom: 60px;
}

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

.page-promo__feature-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-promo__feature-item:hover {
  transform: translateY(-5px);
}

.page-promo__feature-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-promo__feature-title {
  font-size: 1.8em;
  color: #000000;
  margin-bottom: 10px;
}

.page-promo__feature-description {
  color: #666666;
  font-size: 1em;
}

/* Types Section */
.page-promo__types-section {
  padding: 60px 0;
  margin-bottom: 60px;
}

.page-promo__types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promo__type-card {
  background-color: #000000; /* Dark background for cards */
  color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-promo__type-card:hover {
  transform: translateY(-5px);
}

.page-promo__type-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-promo__type-title {
  font-size: 2em;
  color: #FCBC45;
  margin-bottom: 15px;
}

.page-promo__type-description {
  color: #E0E0E0;
  font-size: 1em;
  margin-bottom: 25px;
}

.page-promo__type-button {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease;
}

.page-promo__type-button:hover {
  background-color: #e0a53b;
}

/* How To Claim Section */
.page-promo__how-to-claim-section {
  padding: 60px 0;
  background-color: #F8F8F8;
  margin-bottom: 60px;
}

.page-promo__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promo__step-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.page-promo__step-number {
  font-size: 3em;
  font-weight: bold;
  color: #FCBC45;
  margin-bottom: 15px;
}

.page-promo__step-title {
  font-size: 1.7em;
  color: #000000;
  margin-bottom: 10px;
}

.page-promo__step-description {
  color: #666666;
  font-size: 0.95em;
  margin-bottom: 20px;
}

.page-promo__step-button {
  display: inline-block;
  background-color: #000000;
  color: #FFFFFF;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9em;
  transition: background-color 0.3s ease;
}

.page-promo__step-button:hover {
  background-color: #333333;
}

/* Featured Promotions Section (Detail Page List) */
.page-promo__featured-section {
  padding: 60px 0;
  margin-bottom: 60px;
}

.page-promo__detail-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promo__detail-card {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-promo__detail-card:hover {
  transform: translateY(-5px);
}

.page-promo__detail-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-promo__detail-title {
  font-size: 1.8em;
  margin-bottom: 10px;
}

.page-promo__detail-title a {
  color: #000000;
  text-decoration: none;
  font-weight: bold;
}

.page-promo__detail-title a:hover {
  color: #FCBC45;
}

.page-promo__detail-description {
  color: #666666;
  font-size: 1em;
  margin-bottom: 20px;
}

.page-promo__detail-button {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9em;
  transition: background-color 0.3s ease;
}

.page-promo__detail-button:hover {
  background-color: #e0a53b;
}

/* Terms Section */
.page-promo__terms-section {
  padding: 60px 0;
  background-color: #000000; /* Dark background for terms section */
  color: #FFFFFF;
  margin-bottom: 60px;
}

.page-promo__terms-section .page-promo__section-title {
  color: #FFFFFF;
}

.page-promo__terms-section .page-promo__section-intro {
  color: #E0E0E0;
}

.page-promo__terms-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-promo__terms-item {
  background-color: #1a1a1a;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 15px;
  border-left: 5px solid #FCBC45;
  font-size: 1.05em;
}

.page-promo__terms-item strong {
  color: #FCBC45;
}

.page-promo__terms-outro {
  text-align: center;
  margin-top: 30px;
  font-size: 1.1em;
  color: #E0E0E0;
}

.page-promo__terms-link {
  color: #FCBC45;
  text-decoration: underline;
  font-weight: bold;
}

.page-promo__terms-link:hover {
  color: #FFFFFF;
}

/* FAQ Section */
.page-promo__faq-section {
  padding: 60px 0;
  margin-bottom: 60px;
}

.page-promo__faq-accordion {
  margin-top: 40px;
}

.page-promo__faq-item {
  background-color: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-promo__faq-question {
  padding: 20px;
  font-size: 1.2em;
  color: #000000;
  cursor: pointer;
  position: relative;
  margin: 0;
  transition: background-color 0.3s ease;
}

.page-promo__faq-question::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #FCBC45;
}

.page-promo__faq-question.active::after {
  content: '-';
}

.page-promo__faq-question:hover {
  background-color: #F8F8F8;
}

.page-promo__faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 1em;
  color: #666666;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-promo__faq-answer.active {
  max-height: 200px; /* Adjust as needed for content length */
  padding: 0 20px 20px 20px;
}

/* CTA Section */
.page-promo__cta-section {
  background-color: #000000; /* Dark background for final CTA */
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
  border-radius: 10px;
  margin-bottom: 60px;
}

.page-promo__cta-title {
  font-size: 3em;
  color: #FCBC45;
  margin-bottom: 20px;
}

.page-promo__cta-description {
  font-size: 1.2em;
  color: #E0E0E0;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-promo__cta-button--large {
  padding: 18px 40px;
  font-size: 1.4em;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promo__hero-title {
    font-size: 3em;
  }
  .page-promo__hero-description {
    font-size: 1.1em;
  }
  .page-promo__section-title {
    font-size: 2em;
  }
  .page-promo__types-grid, .page-promo__features-grid, .page-promo__steps-grid, .page-promo__detail-list {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-promo__hero-section {
    margin-bottom: 40px;
  }
  .page-promo__hero-content {
    padding: 15px;
  }
  .page-promo__hero-title {
    font-size: 2.2em;
    margin-bottom: 15px;
  }
  .page-promo__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }
  .page-promo__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promo__section-title {
    font-size: 1.8em;
  }
  .page-promo__section-intro {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .page-promo__feature-image, .page-promo__type-image, .page-promo__detail-image {
    height: 200px;
    max-width: 100%;
  }
  .page-promo__cta-section {
    padding: 50px 15px;
  }
  .page-promo__cta-title {
    font-size: 2.2em;
  }
  .page-promo__cta-description {
    font-size: 1em;
  }
  .page-promo__cta-button--large {
    padding: 15px 30px;
    font-size: 1.2em;
  }

  /* Mobile image overflow prevention */
  .page-promo img {
    max-width: 100%;
    height: auto;
  }
  .page-promo__hero-image {
    max-width: 100%;
    height: auto;
  }
  .page-promo__feature-image {
    max-width: 100%;
    height: auto;
  }
  .page-promo__type-image {
    max-width: 100%;
    height: auto;
  }
  .page-promo__detail-image {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-promo__hero-title {
    font-size: 1.8em;
  }
  .page-promo__hero-description {
    font-size: 0.9em;
  }
  .page-promo__section-title {
    font-size: 1.5em;
  }
  .page-promo__features-grid, .page-promo__types-grid, .page-promo__steps-grid, .page-promo__detail-list {
    grid-template-columns: 1fr;
  }
  .page-promo__cta-title {
    font-size: 1.8em;
  }
  .page-promo__cta-button--large {
    font-size: 1em;
    padding: 12px 25px;
  }
}