.page-promo {
  color: #333333; /* Dark text for light body background */
}

.page-promo__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  min-height: 600px; /* Minimum height for hero */
}

.page-promo__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: -1;
}

.page-promo__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 40px;
  background: rgba(0, 0, 0, 0.7); /* Dark overlay for text readability */
  border-radius: 10px;
  color: #FFFFFF; /* Light text on dark overlay */
}

.page-promo__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FCBC45; /* Login button color for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promo__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-promo__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-promo__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
  cursor: pointer;
  border: none;
}

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

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

.page-promo__button--secondary {
  background-color: #FFFFFF; /* Register button color */
  color: #000000; /* Dark text for contrast */
  border: 2px solid #FCBC45;
}

.page-promo__button--secondary:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
}

.page-promo__button--alt {
  background-color: #000000; /* Main color */
  color: #FFFFFF; /* Auxiliary color */
  border: 2px solid #FCBC45; /* Login button color for border */
}

.page-promo__button--alt:hover {
  background-color: #1a1a1a;
  transform: translateY(-2px);
}

.page-promo__button--small {
  padding: 10px 20px;
  font-size: 0.9em;
  background-color: #000000; /* Main color */
  color: #FFFFFF; /* Auxiliary color */
}

.page-promo__button--small:hover {
  background-color: #1a1a1a;
}

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

.page-promo__introduction-section,
.page-promo__featured-promotions-section,
.page-promo__vip-section,
.page-promo__how-to-claim-section,
.page-promo__why-helpslot-section,
.page-promo__responsible-gaming-section,
.page-promo__faq-section,
.page-promo__final-cta-section {
  padding: 60px 0;
  background-color: #FFFFFF; /* Consistent light background */
}

.page-promo__section-title {
  font-size: 2.8em;
  color: #000000; /* Main color */
  text-align: center;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.page-promo__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FCBC45; /* Login button color for accent */
  border-radius: 2px;
}

.page-promo__section-description {
  font-size: 1.1em;
  line-height: 1.8;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #555555;
}

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

.page-promo__promo-card {
  background-color: #f9f9f9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-promo__promo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-promo__promo-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

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

.page-promo__promo-title {
  font-size: 1.8em;
  color: #000000;
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-promo__promo-text {
  font-size: 1em;
  line-height: 1.7;
  color: #666666;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-promo__promo-card .page-promo__button {
  align-self: flex-start;
  margin-top: auto; /* Push button to bottom */
  background-color: #000000;
  color: #FFFFFF;
  border: none;
  padding: 12px 25px;
  font-size: 1em;
}

.page-promo__promo-card .page-promo__button:hover {
  background-color: #1a1a1a;
}

.page-promo__vip-section .page-promo__button {
  margin-top: 30px;
  margin-right: 20px;
}

.page-promo__how-to-claim-section .page-promo__section-description {
  margin-bottom: 60px;
}

.page-promo__claim-steps {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-promo__claim-step {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

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

.page-promo__step-text {
  font-size: 1em;
  line-height: 1.7;
  color: #666666;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promo__claim-step .page-promo__button {
  align-self: flex-start;
  margin-top: auto;
}

.page-promo__advantages-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

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

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

.page-promo__advantage-text {
  font-size: 1em;
  line-height: 1.7;
  color: #666666;
}

.page-promo__faq-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.page-promo__faq-item {
  background-color: #f9f9f9;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-promo__faq-question {
  font-size: 1.4em;
  color: #000000;
  padding: 20px 25px;
  margin: 0;
  cursor: pointer;
  background-color: #f0f0f0;
  border-bottom: 1px solid #e0e0e0;
  transition: background-color 0.3s ease;
}

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

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

.page-promo__faq-item.active .page-promo__faq-answer {
  max-height: 200px; /* Adjust as needed */
  padding-top: 15px;
}

.page-promo__final-cta-section .page-promo__hero-actions {
  margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promo__hero-title {
    font-size: 3em;
  }
  .page-promo__section-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-promo__hero-section {
    min-height: 400px;
  }
  .page-promo__hero-content {
    padding: 30px;
  }
  .page-promo__hero-title {
    font-size: 2.5em;
  }
  .page-promo__hero-description {
    font-size: 1.1em;
  }
  .page-promo__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-promo__button {
    width: 100%;
    max-width: 300px;
  }
  .page-promo__introduction-section,
  .page-promo__featured-promotions-section,
  .page-promo__vip-section,
  .page-promo__how-to-claim-section,
  .page-promo__why-helpslot-section,
  .page-promo__responsible-gaming-section,
  .page-promo__faq-section,
  .page-promo__final-cta-section {
    padding: 40px 0;
  }
  .page-promo__section-title {
    font-size: 1.8em;
    margin-bottom: 20px;
  }
  .page-promo__section-description {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-promo__promo-image {
    height: 200px; /* Ensure images are not too small */
    max-width: 100%; height: auto;
  }
  .page-promo__promo-card {
    max-width: 100%;
  }
  .page-promo__promo-title {
    font-size: 1.5em;
  }
  .page-promo__claim-step,
  .page-promo__advantage-item {
    padding: 25px;
  }
  .page-promo__faq-question {
    font-size: 1.2em;
    padding: 15px 20px;
  }
  .page-promo__faq-answer {
    padding: 0 20px 15px 20px;
  }
  
  /* Critical: Ensure content images are responsive and not too small */
  .page-promo img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure images are not too small */
    min-height: 200px; /* Ensure images are not too small */
    object-fit: cover; /* Maintain aspect ratio */
  }
}

@media (max-width: 480px) {
  .page-promo__hero-title {
    font-size: 2em;
  }
  .page-promo__hero-description {
    font-size: 0.9em;
  }
  .page-promo__section-title {
    font-size: 1.5em;
  }
  .page-promo__button {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-promo__promo-image {
    height: 180px; /* This will be overridden by min-height: 200px on .page-promo img */
  }
}