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

.page-promo__hero-section {
  background-color: #003366; /* Primary color background for hero */
  padding: 80px 20px 60px; /* Adjust padding to accommodate header offset */
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-promo__hero-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  color: #ffffff;
}

.page-promo__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for title */
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.page-promo__hero-description {
  font-size: 1.4em;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.page-promo__hero-image-wrapper {
  margin-bottom: 40px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-promo__hero-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #003366; /* Dark blue text */
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.3em;
  font-weight: 700;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

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

.page-promo__content-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-promo__overview-section, .page-promo__welcome-bonus-section, .page-promo__daily-offers-section, .page-promo__featured-promos-section, .page-promo__how-to-participate-section, .page-promo__benefits-section, .page-promo__cta-section, .page-promo__related-promos-section {
  padding: 60px 0;
  background-color: #f9f9f9;
  border-bottom: 1px solid #eee;
}

.page-promo__overview-section:nth-of-type(even),
.page-promo__welcome-bonus-section:nth-of-type(odd),
.page-promo__how-to-participate-section:nth-of-type(even),
.page-promo__benefits-section:nth-of-type(odd) {
  background-color: #ffffff;
}

h2 {
  font-size: 2.5em;
  color: #003366;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 700;
}

h3 {
  font-size: 1.8em;
  color: #003366;
  margin-bottom: 15px;
  font-weight: 600;
}

p {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #555555;
  text-align: justify;
}

.page-promo__overview-image, .page-promo__welcome-bonus-image, .page-promo__daily-offers-image, .page-promo__cta-image {
  width: 100%;
  height: auto;
  max-width: 800px;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-promo__welcome-bonus-button, .page-promo__daily-offers-button, .page-promo__how-to-participate-button {
  display: block;
  width: fit-content;
  margin: 30px auto 0;
  background-color: #FFD700;
  color: #003366;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-promo__welcome-bonus-button:hover, .page-promo__daily-offers-button:hover, .page-promo__how-to-participate-button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

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

.page-promo__featured-promos-item {
  background-color: #e6f0fa; /* Light blue background */
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  font-size: 1.1em;
  color: #003366;
  line-height: 1.6;
  font-weight: 500;
}

.page-promo__featured-promos-item strong {
  color: #003366;
}

.page-promo__inline-link {
  color: #003366;
  text-decoration: underline;
  font-weight: 600;
}

.page-promo__inline-link:hover {
  color: #FFD700;
}

.page-promo__cta-section {
  background-color: #003366; /* Primary color background */
  color: #ffffff;
  text-align: center;
  padding: 80px 0;
}

.page-promo__cta-title {
  color: #FFD700;
  font-size: 3em;
}

.page-promo__cta-description {
  font-size: 1.3em;
  max-width: 800px;
  margin: 20px auto 40px;
  color: #f0f0f0;
}

.page-promo__cta-image {
  max-width: 1000px;
  margin-bottom: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.page-promo__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #003366;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: 700;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.page-promo__related-promos-section {
  background-color: #f0f5f9;
}

.page-promo__related-promos-title {
  color: #003366;
}

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

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

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

.page-promo__card-title {
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-promo__card-title a {
  color: #003366;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promo__card-title a:hover {
  color: #FFD700;
}

.page-promo__card-description {
  font-size: 1em;
  color: #666666;
  margin-bottom: 25px;
  text-align: center;
}

.page-promo__card-button {
  display: inline-block;
  background-color: #003366;
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1em;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-promo__card-button:hover {
  background-color: #004d99;
  transform: translateY(-2px);
}

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

  .page-promo__hero-description {
    font-size: 1.2em;
  }

  h2 {
    font-size: 2.2em;
  }

  .page-promo__cta-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-promo__hero-section {
    padding: 60px 15px 40px;
  }

  .page-promo__hero-title {
    font-size: 2.5em;
  }

  .page-promo__hero-description {
    font-size: 1.1em;
  }

  .page-promo__hero-button {
    padding: 15px 30px;
    font-size: 1.1em;
  }

  .page-promo__content-container {
    padding: 30px 15px;
  }

  h2 {
    font-size: 2em;
    margin-bottom: 25px;
  }

  p {
    font-size: 1em;
  }

  .page-promo__overview-image, .page-promo__welcome-bonus-image, .page-promo__daily-offers-image, .page-promo__cta-image {
    max-width: 100%;
    height: auto;
    margin: 20px auto;
  }

  .page-promo__welcome-bonus-button, .page-promo__daily-offers-button, .page-promo__how-to-participate-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-promo__featured-promos-list {
    grid-template-columns: 1fr;
  }

  .page-promo__cta-title {
    font-size: 2em;
  }

  .page-promo__cta-description {
    font-size: 1.1em;
  }

  .page-promo__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-promo__cta-button {
    width: 80%;
    max-width: 300px;
    padding: 14px 25px;
    font-size: 1em;
  }

  .page-promo__promo-cards {
    grid-template-columns: 1fr;
  }

  /* Ensure all content images are responsive and do not overflow */
  .page-promo img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-promo__hero-title {
    font-size: 2em;
  }

  .page-promo__hero-description {
    font-size: 0.95em;
  }

  h2 {
    font-size: 1.8em;
  }

  h3 {
    font-size: 1.4em;
  }

  p {
    font-size: 0.95em;
  }

  .page-promo__cta-title {
    font-size: 1.8em;
  }

  .page-promo__cta-description {
    font-size: 1em;
  }

  .page-promo__cta-button {
    width: 90%;
  }
}

/* Fixed header offset for main content */
.page-promo {
  padding-top: var(--header-offset, 120px); /* Default for desktop, adjusted by JS for mobile */
}

/* No background-image for hero section */
.page-promo__hero-section { 
  background-image: none; 
  background-color: #003366; /* Ensure background color is set */
}