.page-promo {
  color: #333333;
  line-height: 1.6;
  font-family: Arial, sans-serif;
}

.page-promo__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Ensures content is below fixed header */
  background-color: #0d0d0d; /* Dark background for hero */
  overflow: hidden;
}

.page-promo__hero-container {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
}

.page-promo__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 700px; /* Limit hero image height */
}

.page-promo__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 900px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  z-index: 10;
}

.page-promo__hero-title {
  font-size: 2.8em;
  color: #ffc107; /* Gold for title */
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-promo__hero-description {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.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.3s ease;
  font-size: 1.1em;
}

.page-promo__cta-button--primary {
  background-color: #ffc107; /* Gold */
  color: #000000;
  border: 2px solid #ffc107;
}

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

.page-promo__cta-button--secondary {
  background-color: #007bff; /* Deep Blue */
  color: #ffffff;
  border: 2px solid #007bff;
}

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

.page-promo__promotions-grid,
.page-promo__how-to-claim,
.page-promo__terms-section,
.page-promo__faq-section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-promo__section-title {
  font-size: 2.2em;
  color: #007bff; /* Deep Blue */
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #ffc107;
}

.page-promo__section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  color: #555555;
}

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

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

.page-promo__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-promo__card-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

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

.page-promo__card-title {
  font-size: 1.6em;
  color: #007bff;
  margin-bottom: 15px;
}

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

.page-promo__card-button {
  display: inline-block;
  background-color: #ffc107;
  color: #000000;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
  transition: background-color 0.3s ease;
  border: 2px solid #ffc107;
}

.page-promo__card-button:hover {
  background-color: #e0a800;
}

.page-promo__how-to-claim {
  background-color: #f0f8ff; /* Light blue background */
  border: 1px solid #d0e8ff;
}

.page-promo__claim-steps {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-promo__step-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-promo__step-title {
  font-size: 1.4em;
  color: #007bff;
  margin-bottom: 10px;
}

.page-promo__step-text {
  color: #555555;
}

.page-promo__step-text a {
  color: #007bff;
  text-decoration: underline;
}

.page-promo__step-text a:hover {
  color: #0056b3;
}

.page-promo__how-to-cta {
  text-align: center;
  margin-top: 30px;
}

.page-promo__terms-section {
  background-color: #fffaf0; /* Light yellow background */
  border: 1px solid #ffe0b3;
}

.page-promo__terms-list {
  list-style: disc;
  margin-left: 25px;
  color: #666666;
}

.page-promo__term-item {
  margin-bottom: 10px;
}

.page-promo__terms-disclaimer {
  margin-top: 20px;
  font-style: italic;
  color: #777777;
}

.page-promo__terms-disclaimer a {
  color: #007bff;
  text-decoration: underline;
}

.page-promo__terms-disclaimer a:hover {
  color: #0056b3;
}

.page-promo__faq-section {
  background-color: #f0f0f0;
}

.page-promo__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-promo__faq-question {
  font-size: 1.3em;
  color: #007bff;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-promo__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-promo__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.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: 150px; /* Adjust as needed */
  padding-top: 10px;
}

/* Floating Register/Login Buttons */
.page-promo__floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}

.page-promo__floating-button {
  display: block;
  width: 120px;
  padding: 12px 0;
  text-align: center;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-promo__floating-button--register {
  background-color: #ffc107; /* Gold */
  color: #000000;
}

.page-promo__floating-button--register:hover {
  background-color: #e0a800;
  transform: scale(1.05);
}

.page-promo__floating-button--login {
  background-color: #007bff; /* Deep Blue */
  color: #ffffff;
}

.page-promo__floating-button--login:hover {
  background-color: #0056b3;
  transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-promo__hero-title {
    font-size: 2.2em;
  }
  .page-promo__hero-description {
    font-size: 1em;
  }
  .page-promo__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promo__section-title {
    font-size: 1.8em;
  }
  .page-promo__card-title {
    font-size: 1.4em;
  }
}

@media (max-width: 768px) {
  .page-promo__hero-content {
    width: 95%;
    padding: 15px;
  }
  .page-promo__hero-title {
    font-size: 1.8em;
  }
  .page-promo__hero-description {
    font-size: 0.9em;
  }
  .page-promo__hero-cta {
    flex-direction: column;
    gap: 15px;
  }
  .page-promo__cta-button {
    width: 80%;
    max-width: 300px;
  }
  .page-promo__promotions-grid,
  .page-promo__how-to-claim,
  .page-promo__terms-section,
  .page-promo__faq-section {
    margin: 20px auto;
    padding: 15px;
  }
  .page-promo__section-title {
    font-size: 1.6em;
  }
  .page-promo__grid-container {
    grid-template-columns: 1fr;
  }
  .page-promo__card-image {
    height: 200px;
  }
  .page-promo__card-title {
    font-size: 1.2em;
  }
  .page-promo__card-text {
    font-size: 0.9em;
  }
  .page-promo__floating-buttons {
    bottom: 15px;
    right: 15px;
    flex-direction: row; /* Horizontal for mobile */
    gap: 8px;
  }
  .page-promo__floating-button {
    width: 100px;
    padding: 10px 0;
    font-size: 0.9em;
  }
  /* Ensure content images do not overflow on mobile */
  .page-promo__promotions-grid img,
  .page-promo__how-to-claim img,
  .page-promo__terms-section img,
  .page-promo__faq-section img {
    max-width: 100%;
    height: auto;
  }
  .page-promo__promo-card img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum size for content images */
    min-height: 200px;
  }
  /* Specific override for hero image to respect the max-height and object-fit */
  .page-promo__hero-image {
    max-width: 100%;
    height: auto;
    max-height: 400px; /* Adjust hero height for mobile */
  }
}