.page-promotions {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light backgrounds */
}

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

.page-promotions__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 10px; /* Minimal top padding, body handles header offset */
  padding-bottom: 60px;
  background-color: #0056b3; /* Primary color as background */
  color: #ffffff; /* White text on dark blue background */
  overflow: hidden;
}

.page-promotions__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.page-promotions__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6); /* Darken image slightly for text readability */
}

.page-promotions__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.3); /* Semi-transparent overlay for text */
  border-radius: 8px;
  margin-top: 80px; /* Adjust as needed to ensure clear separation from header */
}

.page-promotions__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffc107; /* Auxiliary color for title for contrast */
}

.page-promotions__hero-description {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-promotions__hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.page-promotions__cta-button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  min-width: 180px; /* Ensure buttons are not too small */
  text-align: center;
}

.page-promotions__cta-button--primary {
  background-color: #ffc107; /* Auxiliary color for primary action */
  color: #0056b3; /* Primary color for text on auxiliary background */
  border: 2px solid #ffc107;
}

.page-promotions__cta-button--primary:hover {
  background-color: #e0a800;
  border-color: #e0a800;
}

.page-promotions__cta-button--secondary {
  background-color: transparent;
  color: #ffc107; /* Auxiliary color for text */
  border: 2px solid #ffc107;
}

.page-promotions__cta-button--secondary:hover {
  background-color: #ffc107;
  color: #0056b3;
}

.page-promotions__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  color: #0056b3; /* Primary color for section titles */
}

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

/* Why Choose Section */
.page-promotions__why-choose-section {
  padding: 60px 0;
}

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

.page-promotions__feature-item {
  text-align: center;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-promotions__feature-icon {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  min-height: 200px; /* Ensure image meets minimum size */
  object-fit: cover;
}

.page-promotions__feature-title {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #0056b3;
}

.page-promotions__feature-text {
  font-size: 1rem;
  color: #666666;
}

/* Promotion Types Section */
.page-promotions__promotion-types-section {
  padding: 60px 0;
  background-color: #0056b3; /* Primary color background */
  color: #ffffff; /* White text */
}

.page-promotions__promotion-types-section .page-promotions__section-title {
  color: #ffc107; /* Auxiliary color for title on primary background */
}

.page-promotions__promotion-types-section .page-promotions__section-description {
  color: #f0f0f0;
}

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

.page-promotions__promo-card {
  background-color: rgba(255, 255, 255, 0.1); /* Slightly transparent white on dark background */
  padding: 25px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 450px; /* Ensure cards have a consistent height */
}

.page-promotions__promo-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-promotions__promo-card-title {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #ffc107; /* Auxiliary color for card titles */
}

.page-promotions__promo-card-text {
  font-size: 0.95rem;
  color: #f0f0f0;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-promotions__promo-card .page-promotions__cta-button {
  width: 100%;
  background-color: #ffc107;
  color: #0056b3;
  border: 2px solid #ffc107;
}

.page-promotions__promo-card .page-promotions__cta-button:hover {
  background-color: #e0a800;
  border-color: #e0a800;
}

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

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

.page-promotions__step-item {
  text-align: center;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-promotions__step-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #0056b3;
  margin-bottom: 15px;
}

.page-promotions__step-title {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #0056b3;
}

.page-promotions__step-text {
  font-size: 1rem;
  color: #666666;
  margin-bottom: 20px;
}

.page-promotions__cta-button--small {
  padding: 10px 20px;
  font-size: 0.9rem;
}

/* Featured Promotions Section (Carousel-like) */
.page-promotions__featured-promotions-section {
  padding: 60px 0;
  background-color: #0056b3; /* Primary color background */
  color: #ffffff; /* White text */
}

.page-promotions__featured-promotions-section .page-promotions__section-title {
  color: #ffc107;
}

.page-promotions__featured-promotions-section .page-promotions__section-description {
  color: #f0f0f0;
}

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

/* Mobile App Section */
.page-promotions__mobile-app-section {
  padding: 60px 0;
  background-color: #f8f9fa;
}

.page-promotions__app-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-promotions__app-image {
  width: 50%;
  max-width: 500px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

.page-promotions__app-text {
  width: 50%;
}

.page-promotions__app-subtitle {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #0056b3;
}

.page-promotions__app-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #555555;
}

.page-promotions__app-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

/* Responsible Gaming Section */
.page-promotions__responsible-gaming-section {
  padding: 60px 0;
  background-color: #0056b3; /* Primary color background */
  color: #ffffff; /* White text */
}

.page-promotions__responsible-gaming-section .page-promotions__section-title {
  color: #ffc107;
}

.page-promotions__responsible-gaming-section .page-promotions__section-description {
  color: #f0f0f0;
}

.page-promotions__responsible-gaming-content {
  display: flex;
  flex-direction: row-reverse; /* Image on right */
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-promotions__responsible-gaming-image {
  width: 50%;
  max-width: 500px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

.page-promotions__responsible-gaming-text {
  width: 50%;
}

.page-promotions__responsible-gaming-subtitle {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #ffc107;
}

.page-promotions__responsible-gaming-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #f0f0f0;
}

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

.page-promotions__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  background-color: #f0f0f0;
  transition: background-color 0.3s ease;
}

.page-promotions__faq-question:hover {
  background-color: #e9ecef;
}

.page-promotions__faq-title {
  font-size: 1.15rem;
  font-weight: bold;
  color: #0056b3;
  margin: 0;
}

.page-promotions__faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  color: #0056b3;
  transition: transform 0.3s ease;
}

.page-promotions__faq-item.active .page-promotions__faq-toggle {
  transform: rotate(45deg);
}

.page-promotions__faq-answer {
  max-height: 0; /* Initial state: collapsed */
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: #ffffff;
  color: #666666;
}

.page-promotions__faq-item.active .page-promotions__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 20px;
}

.page-promotions__faq-answer p {
  margin-bottom: 0;
}

/* Bottom CTA Section */
.page-promotions__cta-bottom-section {
  padding: 60px 0;
  background-color: #0056b3; /* Primary color background */
  color: #ffffff; /* White text */
  text-align: center;
}

.page-promotions__cta-bottom-section .page-promotions__section-title {
  color: #ffc107;
}

.page-promotions__cta-bottom-section .page-promotions__section-description {
  color: #f0f0f0;
}

.page-promotions__cta-bottom-section .page-promotions__cta-group {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-promotions__hero-content {
    margin-top: 60px;
    padding: 30px 15px;
  }
  .page-promotions__hero-description {
    font-size: 1.1rem;
  }
  .page-promotions__app-content,
  .page-promotions__responsible-gaming-content {
    flex-direction: column;
    text-align: center;
  }
  .page-promotions__app-image,
  .page-promotions__app-text,
  .page-promotions__responsible-gaming-image,
  .page-promotions__responsible-gaming-text {
    width: 100%;
  }
  .page-promotions__app-cta-group {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .page-promotions__hero-content {
    margin-top: 40px;
    padding: 20px 10px;
  }
  .page-promotions__main-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }
  .page-promotions__hero-description {
    font-size: 1rem;
  }
  .page-promotions__section-title {
    font-size: clamp(1.8rem, 7vw, 2.2rem);
  }
  .page-promotions__section-description {
    font-size: 0.95rem;
  }
  .page-promotions__cta-button {
    padding: 10px 20px;
    font-size: 0.9rem;
    min-width: unset;
    width: 100% !important;
  }
  .page-promotions__hero-cta-group, .page-promotions__app-cta-group, .page-promotions__cta-bottom-section .page-promotions__cta-group {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .page-promotions__features-grid, .page-promotions__promo-cards-grid, .page-promotions__steps-list, .page-promotions__promo-carousel {
    grid-template-columns: 1fr;
  }
  .page-promotions img {
    max-width: 100% !important;
    height: auto !important;
    display: block;
  }
  .page-promotions__section, .page-promotions__card, .page-promotions__container, .page-promotions__promo-card, .page-promotions__feature-item, .page-promotions__step-item, .page-promotions__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-promotions__hero-section {
    padding-top: 10px !important;
  }
  .page-promotions__hero-image-wrapper {
    position: relative;
    height: 250px;
  }
  .page-promotions__hero-content {
    margin-top: 0;
    background: none;
    padding: 20px 0;
  }
  .page-promotions__hero-image {
    filter: brightness(0.4);
  }
  .page-promotions__app-image, .page-promotions__responsible-gaming-image {
    width: 100%;
    max-width: 100%;
    min-width: 200px;
    min-height: 200px;
  }
  .page-promotions__promo-card-image, .page-promotions__feature-icon {
    min-width: 200px;
    min-height: 200px;
  }
}