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

.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-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #666666;
}

/* Hero Section */
.page-promo__hero-section {
  position: relative;
  overflow: hidden;
  padding: 0;
  margin-bottom: 60px;
}

.page-promo__hero-container {
  position: relative;
  width: 100%;
}

.page-promo__hero-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-promo__hero-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay for text readability */
  padding: 20px;
  box-sizing: border-box;
}

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

.page-promo__hero-description {
  font-size: 1.5em;
  color: #f0f0f0;
  margin-bottom: 30px;
  max-width: 900px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.page-promo__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-size: 1.1em;
  text-transform: uppercase;
}

.page-promo__cta-button--primary {
  background-color: #FCBC45; /* Login color for primary CTA */
  color: #000000; /* Dark text for contrast */
  border: none;
}

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

.page-promo__cta-button--secondary {
  background-color: #000000; /* Main color for secondary CTA */
  color: #FFFFFF; /* White text for contrast */
  border: 1px solid #FCBC45;
}

.page-promo__cta-button--secondary:hover {
  background-color: #333333;
  border-color: #FCBC45;
  transform: translateY(-2px);
}

/* Overview Section */
.page-promo__overview-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

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

.page-promo__category-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-promo__card-title {
  font-size: 1.8em;
  color: #000000;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promo__card-text {
  font-size: 1em;
  color: #555555;
  margin-bottom: 25px;
  flex-grow: 1;
}

/* Featured Section */
.page-promo__featured-section {
  padding: 60px 0;
}

.page-promo__offers-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
}

.page-promo__offer-item {
  display: flex;
  flex-direction: column;
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.page-promo__offer-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.page-promo__offer-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.page-promo__offer-title {
  font-size: 2em;
  color: #000000;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promo__offer-text {
  font-size: 1.1em;
  color: #555555;
  margin-bottom: 25px;
  flex-grow: 1;
}

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

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

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

.page-promo__step-number {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background-color: #FCBC45;
  color: #000000;
  border-radius: 50%;
  font-size: 1.8em;
  font-weight: bold;
  margin: 0 auto 20px auto;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

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

.page-promo__step-text {
  font-size: 1em;
  color: #555555;
}

.page-promo__bottom-cta {
  text-align: center;
  margin-top: 50px;
}

/* Terms & Conditions Section */
.page-promo__terms-section {
  padding: 60px 0;
}

.page-promo__terms-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-promo__terms-section .page-promo__cta-button {
  margin-top: 40px;
}

/* FAQ Section */
.page-promo__faq-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.page-promo__faq-item {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 25px;
  margin-bottom: 20px;
}

.page-promo__faq-question {
  font-size: 1.4em;
  color: #000000;
  margin-bottom: 10px;
  cursor: pointer;
  font-weight: bold;
  position: relative;
  padding-right: 30px;
}

.page-promo__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  color: #FCBC45;
}

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

.page-promo__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-promo__faq-answer.active {
  max-height: 200px; /* Adjust as needed */
  padding-top: 15px;
}

/* Register CTA Section */
.page-promo__register-cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #000000, #333333);
  text-align: center;
  color: #FFFFFF;
}

.page-promo__register-cta-section .page-promo__section-title {
  color: #FFFFFF;
  font-size: 3em;
}

.page-promo__register-cta-section .page-promo__section-description {
  color: #f0f0f0;
  font-size: 1.2em;
  margin-bottom: 50px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promo__hero-title {
    font-size: 2.8em;
  }
  .page-promo__hero-description {
    font-size: 1.3em;
  }
  .page-promo__section-title {
    font-size: 2em;
  }
  .page-promo__category-image {
    height: 180px;
  }
  .page-promo__offer-image {
    height: 250px;
  }
  .page-promo__offer-title {
    font-size: 1.8em;
  }
  .page-promo__register-cta-section .page-promo__section-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-promo__hero-title {
    font-size: 2em;
  }
  .page-promo__hero-description {
    font-size: 1em;
  }
  .page-promo__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promo__categories-grid,
  .page-promo__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-promo__offer-item {
    flex-direction: column;
  }
  .page-promo__offer-image {
    height: 200px;
  }
  .page-promo__offer-title {
    font-size: 1.5em;
  }
  .page-promo__section-title {
    font-size: 1.8em;
  }
  .page-promo__section-description {
    font-size: 0.95em;
  }
  .page-promo__register-cta-section .page-promo__section-title {
    font-size: 2em;
  }
  .page-promo__register-cta-section .page-promo__section-description {
    font-size: 1em;
  }

  /* Mobile image scaling for content area */
  .page-promo img {
    max-width: 100%;
    height: auto;
  }
  .page-promo__category-image, .page-promo__offer-image {
    max-width: 100%;
    height: auto;
    min-height: 200px; /* Ensure minimum size */
  }
  .page-promo__hero-image {
    max-width: 100%;
    height: auto;
    min-height: 200px; /* Ensure minimum size */
  }
}

@media (max-width: 480px) {
  .page-promo__hero-title {
    font-size: 1.5em;
  }
  .page-promo__hero-description {
    font-size: 0.9em;
  }
  .page-promo__cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-promo__section-title {
    font-size: 1.5em;
  }
  .page-promo__card-title,
  .page-promo__offer-title,
  .page-promo__step-title,
  .page-promo__faq-question {
    font-size: 1.2em;
  }
  .page-promo__register-cta-section .page-promo__section-title {
    font-size: 1.8em;
  }
}