:root {
  --primary-color: #017439;
  --secondary-color: #FFFFFF;
  --text-on-dark: #FFFFFF;
  --text-on-light: #333333;
  --background-dark: #0a0a0a; /* From body background info */
  --register-btn-bg: #C30808;
  --login-btn-bg: #C30808;
  --register-login-font: #FFFF00;
}

/* Base styles for the page content, considering the dark body background */
.page-promotions {
  color: var(--text-on-dark); /* Light text on dark body background */
  background-color: var(--background-dark); /* Ensure consistency if any section needs to blend with body */
  line-height: 1.6;
  font-family: Arial, sans-serif;
}

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

/* Hero Section */
.page-promotions__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 600px;
  padding: 80px 20px;
  padding-top: var(--header-offset, 120px); /* Account for fixed header */
  background-color: var(--primary-color); /* Use primary color for hero background */
  color: var(--secondary-color);
  overflow: hidden; /* Ensure image doesn't overflow */
}

.page-promotions__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.3; /* Make it a subtle background */
}

.page-promotions__hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.page-promotions__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: var(--secondary-color);
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: var(--secondary-color);
  opacity: 0.9;
}

.page-promotions__hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap; /* For mobile responsiveness */
}

/* Buttons */
.page-promotions__btn-primary,
.page-promotions__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1.1em;
  border: 2px solid transparent;
  box-sizing: border-box; /* Crucial for responsive buttons */
}

.page-promotions__btn-primary {
  background-color: var(--register-btn-bg); /* Using specific register color for primary CTA */
  color: var(--register-login-font); /* Using specific font color for primary CTA */
  border-color: var(--register-btn-bg);
}

.page-promotions__btn-primary:hover {
  background-color: #a00606; /* Darker red */
  color: var(--secondary-color);
}

.page-promotions__btn-secondary {
  background-color: transparent;
  color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.page-promotions__btn-secondary:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.page-promotions__btn-small {
  padding: 10px 20px;
  font-size: 1em;
}

.page-promotions__btn-large {
  padding: 18px 40px;
  font-size: 1.2em;
}

/* Section titles and descriptions */
.page-promotions__section-title {
  font-size: 2.5em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  padding-top: 40px; /* Add some spacing */
}

.page-promotions__section-description {
  font-size: 1.1em;
  color: var(--text-on-dark);
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px auto;
  opacity: 0.8;
}

/* Overview Section */
.page-promotions__overview-section {
  padding: 60px 0;
  background-color: var(--background-dark); /* Keep background dark */
  color: var(--text-on-dark);
}

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

.page-promotions__card {
  background-color: rgba(255, 255, 255, 0.08); /* Slightly transparent white on dark background */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--text-on-dark);
}

.page-promotions__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-promotions__card-image {
  width: 100%; /* Occupy card width */
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px; /* Minimum size requirement */
  min-height: 200px;
}

.page-promotions__card-title {
  font-size: 1.8em;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions__card-title a {
  color: var(--primary-color);
  text-decoration: none;
}

.page-promotions__card-title a:hover {
  text-decoration: underline;
}

.page-promotions__card-text {
  font-size: 1em;
  margin-bottom: 25px;
  flex-grow: 1;
  opacity: 0.9;
}

.page-promotions__card-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-promotions__card-button:hover {
  background-color: #005f2e; /* Darker green */
}

/* Detailed Promos Section */
.page-promotions__detailed-promos {
  padding: 60px 0;
  background-color: var(--background-dark); /* Keep background dark */
  color: var(--text-on-dark);
}

.page-promotions__promo-category {
  background-color: rgba(255, 255, 255, 0.05); /* Lighter transparent white */
  border-left: 5px solid var(--primary-color);
  border-radius: 8px;
  padding: 30px;
  margin-bottom: 40px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-promotions__category-title {
  font-size: 2em;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions__category-text {
  font-size: 1.1em;
  margin-bottom: 20px;
  opacity: 0.9;
}

.page-promotions__category-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-promotions__category-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  font-size: 1em;
  opacity: 0.85;
}

.page-promotions__category-list li::before {
  content: '✔'; /* Checkmark for list items */
  color: var(--register-login-font); /* Yellow checkmark */
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* How-to Participate Section */
.page-promotions__how-to-participate {
  padding: 60px 0;
  background-color: var(--background-dark); /* Keep background dark */
  color: var(--text-on-dark);
}

.page-promotions__steps-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 40px auto;
}

.page-promotions__steps-list li {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 20px 30px;
  margin-bottom: 20px;
  font-size: 1.1em;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--text-on-dark);
  opacity: 0.9;
}

.page-promotions__steps-list li strong {
  color: var(--primary-color);
  font-size: 1.2em;
  flex-shrink: 0;
}

.page-promotions__steps-list li a {
  color: var(--register-login-font); /* Yellow for links */
  text-decoration: underline;
}

.page-promotions__steps-list li a:hover {
  color: var(--secondary-color);
}

.page-promotions__cta-bottom {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
  flex-wrap: wrap;
}

/* Terms & Conditions Section */
.page-promotions__terms-conditions {
  padding: 60px 0;
  background-color: var(--background-dark); /* Keep background dark */
  color: var(--text-on-dark);
}

.page-promotions__terms-list {
  list-style: disc; /* Use standard disc for terms */
  padding-left: 40px;
  max-width: 900px;
  margin: 40px auto 50px auto;
  font-size: 1em;
  opacity: 0.85;
}

.page-promotions__terms-list li {
  margin-bottom: 10px;
}

/* FAQ Section */
.page-promotions__faq-section {
  padding: 60px 0;
  background-color: var(--background-dark); /* Keep background dark */
  color: var(--text-on-dark);
}

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

.page-promotions__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  color: var(--text-on-dark);
}

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.1); /* Slightly darker for question area */
  transition: background-color 0.3s ease;
}

.page-promotions__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.page-promotions__faq-title {
  font-size: 1.2em;
  margin: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.page-promotions__faq-toggle {
  font-size: 1.8em;
  font-weight: bold;
  color: var(--register-login-font); /* Yellow for toggle icon */
  transition: transform 0.3s ease;
}

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

.page-promotions__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--text-on-dark);
  opacity: 0.85;
}

.page-promotions__faq-item.active .page-promotions__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to contain content */
  padding: 15px 25px 25px 25px; /* Adjust padding for expanded state */
}

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

/* Final CTA Section */
.page-promotions__final-cta-section {
  padding: 80px 20px;
  text-align: center;
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

.page-promotions__final-cta-section .page-promotions__section-title {
  color: var(--secondary-color);
}

.page-promotions__final-cta-section .page-promotions__section-description {
  color: var(--secondary-color);
  margin-bottom: 40px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-promotions__hero-title {
    font-size: 3em;
  }
  .page-promotions__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-promotions {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-promotions__hero-section {
    min-height: 450px;
    padding: 60px 15px;
    padding-top: var(--header-offset, 120px) !important; /* Ensure mobile padding-top */
  }

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

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

  .page-promotions__hero-cta {
    flex-direction: column;
    gap: 15px;
  }

  .page-promotions__btn-primary,
  .page-promotions__btn-secondary,
  .page-promotions a[class*="button"],
  .page-promotions a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-promotions__cta-buttons,
  .page-promotions__button-group,
  .page-promotions__btn-container,
  .page-promotions__hero-cta,
  .page-promotions__cta-bottom {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
    flex-direction: column; /* Stack buttons vertically on mobile */
  }

  .page-promotions__section-title {
    font-size: 1.8em;
    padding-top: 30px;
  }

  .page-promotions__section-description {
    font-size: 1em;
    margin-bottom: 40px;
  }

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

  .page-promotions__card {
    padding: 20px;
  }

  .page-promotions__card-image {
    height: 250px; /* Adjust height for mobile cards */
    min-width: 200px;
    min-height: 200px;
  }

  .page-promotions__card-title {
    font-size: 1.5em;
  }

  .page-promotions__promo-category {
    padding: 20px;
  }

  .page-promotions__category-title {
    font-size: 1.5em;
  }

  .page-promotions__steps-list li {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 20px;
  }
  .page-promotions__steps-list li strong {
    margin-bottom: 5px;
  }

  .page-promotions__faq-question {
    padding: 15px 20px;
  }

  .page-promotions__faq-title {
    font-size: 1.1em;
  }

  .page-promotions__faq-item.active .page-promotions__faq-answer {
    padding: 10px 20px 20px 20px;
  }

  /* Image responsive rules for all images within .page-promotions */
  .page-promotions img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-promotions__section,
  .page-promotions__card,
  .page-promotions__container,
  .page-promotions__hero-section,
  .page-promotions__overview-section,
  .page-promotions__detailed-promos,
  .page-promotions__how-to-participate,
  .page-promotions__terms-conditions,
  .page-promotions__faq-section,
  .page-promotions__final-cta-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden !important; /* Prevent horizontal scroll */
  }

  /* Video responsive rules (if any, though no video element is added) */
  .page-promotions video,
  .page-promotions__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-promotions__video-section,
  .page-promotions__video-container,
  .page-promotions__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
}