:root {
  --primary-color: #11A84E;
  --secondary-color: #22C768;
  --button-gradient-top: #2AD16F;
  --button-gradient-bottom: #13994A;
  --card-bg: #11271B;
  --background: #08160F;
  --text-main: #F2FFF6;
  --text-secondary: #A7D9B8;
  --border-color: #2E7A4E;
  --glow: #57E38D;
  --gold: #F2C14E;
  --divider: #1E3A2A;
  --deep-green: #0A4B2C;
}

.page-promotions {
  font-family: 'Arial', sans-serif; /* Placeholder font */
  color: var(--text-main); /* #F2FFF6 */
  background-color: var(--background); /* #08160F */
  line-height: 1.6;
  padding-bottom: 40px; /* Ensure space above footer */
}

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

.page-promotions__container--centered {
  text-align: center;
}

/* --- Hero Section --- */
.page-promotions__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column; /* Image on top, content below */
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 40px;
  background-color: var(--background); /* #08160F */
}

.page-promotions__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-promotions__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px; /* Soften edges */
}

.page-promotions__hero-content {
  max-width: 900px;
  text-align: center;
  padding: 30px 20px;
  z-index: 1;
}

.page-promotions__main-title {
  color: var(--text-main); /* #F2FFF6 */
  font-size: clamp(28px, 4vw, 48px); /* Responsive H1 */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

.page-promotions__hero-description {
  color: var(--text-secondary); /* #A7D9B8 */
  font-size: 18px;
  margin-bottom: 30px;
}

/* --- General Section Styling --- */
.page-promotions__section {
  padding: 40px 0;
  background-color: var(--background); /* #08160F */
}

.page-promotions__section:nth-of-type(even) {
  background-color: var(--card-bg); /* #11271B */
}

.page-promotions__section-title {
  color: var(--glow); /* #57E38D */
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 600;
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.3;
}

.page-promotions__text-block {
  font-size: 16px;
  color: var(--text-main); /* #F2FFF6 */
  margin-bottom: 20px;
  text-align: justify;
}

.page-promotions__text-block strong {
  color: var(--gold); /* #F2C14E */
}

.page-promotions__image-content {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

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

.page-promotions__card {
  background-color: var(--card-bg); /* #11271B */
  border: 1px solid var(--border-color); /* #2E7A4E */
  border-radius: 12px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--text-main); /* #F2FFF6 */
}

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

.page-promotions__card-title {
  color: var(--glow); /* #57E38D */
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
}

.page-promotions__card-image {
  width: 100%;
  max-width: 300px; /* Ensure card images don't get too wide in grid */
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
  object-fit: cover;
}

.page-promotions__card-text {
  font-size: 15px;
  color: var(--text-secondary); /* #A7D9B8 */
  margin-bottom: 20px;
  flex-grow: 1; /* Push button to bottom */
}

/* --- Lists (Steps, Terms, Tips) --- */
.page-promotions__step-list,
.page-promotions__terms-list,
.page-promotions__tips-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-promotions__list-item {
  background-color: var(--card-bg); /* #11271B */
  border: 1px solid var(--border-color); /* #2E7A4E */
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__list-title {
  color: var(--glow); /* #57E38D */
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.page-promotions__list-text {
  font-size: 16px;
  color: var(--text-main); /* #F2FFF6 */
}

.page-promotions__list-text a {
  color: var(--gold); /* #F2C14E */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promotions__list-text a:hover {
  color: var(--glow); /* #57E38D */
  text-decoration: underline;
}

/* --- Call to Action Buttons --- */
.page-promotions__cta-button {
  display: inline-block;
  background: linear-gradient(180deg, var(--button-gradient-top) 0%, var(--button-gradient-bottom) 100%); /* #2AD16F to #13994A */
  color: #ffffff;
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  max-width: 100%; /* For responsive buttons */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions__cta-button:hover {
  background: linear-gradient(180deg, var(--button-gradient-bottom) 0%, var(--button-gradient-top) 100%); /* Reverse gradient on hover */
  transform: translateY(-2px);
}

.page-promotions__cta-button--small {
  font-size: 16px;
  padding: 12px 25px;
}

.page-promotions__cta-button--large {
  font-size: 20px;
  padding: 16px 35px;
  min-width: 250px;
}

/* --- FAQ Section --- */
.page-promotions__faq-list {
  margin-top: 30px;
}

.page-promotions__faq-item {
  background-color: var(--card-bg); /* #11271B */
  border: 1px solid var(--border-color); /* #2E7A4E */
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__faq-item summary {
  list-style: none; /* Hide default marker */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-main); /* #F2FFF6 */
  transition: color 0.3s ease;
}

.page-promotions__faq-item summary::-webkit-details-marker {
  display: none; /* Hide default marker for Webkit */
}

.page-promotions__faq-item summary:hover {
  color: var(--glow); /* #57E38D */
}

.page-promotions__faq-qtext {
  flex-grow: 1;
}

.page-promotions__faq-toggle {
  font-size: 24px;
  line-height: 1;
  margin-left: 15px;
  color: var(--glow); /* #57E38D */
}

.page-promotions__faq-item[open] .page-promotions__faq-toggle {
  content: '−'; /* Change to minus when open */
}

.page-promotions__faq-answer {
  padding: 0 20px 20px 20px;
  font-size: 16px;
  color: var(--text-secondary); /* #A7D9B8 */
}

/* Ensure contrast for links within text blocks */
.page-promotions__text-block a,
.page-promotions__list-text a {
  color: var(--gold); /* #F2C14E */
  text-decoration: underline;
}

.page-promotions__text-block a:hover,
.page-promotions__list-text a:hover {
  color: var(--glow); /* #57E38D */
}

/* Ensure all images maintain original color */
.page-promotions img {
  filter: none !important; /* Absolutely no filter */
}

/* Ensure content area images meet minimum size */
.page-promotions__image-content,
.page-promotions__card-image {
  min-width: 200px;
  min-height: 200px;
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
  .page-promotions__promo-cards {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-promotions__container {
    padding: 0 15px;
  }

  .page-promotions__hero-content {
    padding: 20px 15px;
  }

  .page-promotions__main-title {
    font-size: clamp(24px, 7vw, 40px);
  }

  .page-promotions__hero-description {
    font-size: 16px;
  }

  .page-promotions__section-title {
    font-size: clamp(20px, 6vw, 30px);
  }

  .page-promotions__text-block,
  .page-promotions__list-text,
  .page-promotions__faq-answer {
    font-size: 15px;
  }

  .page-promotions__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    font-size: 16px;
    padding: 12px 20px;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-promotions__cta-button--large {
    font-size: 18px;
    padding: 14px 25px;
    min-width: unset;
  }

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

  .page-promotions__card-image {
    max-width: 250px;
  }

  .page-promotions__list-item,
  .page-promotions__faq-item {
    padding: 15px;
  }

  .page-promotions__faq-item summary {
    padding: 15px;
    font-size: 16px;
  }

  .page-promotions__faq-answer {
    padding: 0 15px 15px 15px;
  }

  /* Mobile image specific rules */
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-promotions__hero-image-wrapper,
  .page-promotions__container,
  .page-promotions__promo-cards,
  .page-promotions__card,
  .page-promotions__list-item,
  .page-promotions__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden; /* Prevent horizontal scroll */
  }

  /* Specific padding for sections to avoid content touching edges */
  .page-promotions__overview-section .page-promotions__container,
  .page-promotions__offer-types .page-promotions__container,
  .page-promotions__guide-section .page-promotions__container,
  .page-promotions__terms-section .page-promotions__container,
  .page-promotions__tips-section .page-promotions__container,
  .page-promotions__faq-section .page-promotions__container,
  .page-promotions__cta-bottom .page-promotions__container {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .page-promotions__hero-section {
    padding-top: 10px !important; /* body already has padding-top for header */
  }
}