:root {
  --main-color: #11A84E;
  --secondary-color: #22C768;
  --btn-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --card-bg: #11271B;
  --bg-color-main: #08160F;
  --text-main: #F2FFF6;
  --text-secondary: #A7D9B8;
  --border-color: #2E7A4E;
  --glow-color: #57E38D;
  --gold-color: #F2C14E;
  --divider-color: #1E3A2A;
  --deep-green: #0A4B2C;
}

/* --- Base Styles --- */
.page-promotions {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-main); /* #F2FFF6 */
  background-color: var(--bg-color-main); /* #08160F */
}

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

.page-promotions__section {
  padding: 60px 0;
  text-align: center;
}

.page-promotions__section-title {
  font-size: 2.5em;
  color: var(--text-main); /* #F2FFF6 */
  margin-bottom: 40px;
  font-weight: bold;
}

.page-promotions__description,
.page-promotions p {
  font-size: 1.1em;
  color: var(--text-secondary); /* #A7D9B8 */
  margin-bottom: 20px;
}

.page-promotions__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-promotions__btn-primary,
.page-promotions__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  max-width: 100%; /* Ensure button doesn't overflow */
  box-sizing: border-box;
  white-space: normal; /* Allow text to wrap */
  word-wrap: break-word; /* Break long words */
}

.page-promotions__btn-primary {
  background: var(--btn-gradient);
  color: #ffffff;
  border: none;
}

.page-promotions__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions__btn-secondary {
  background-color: transparent;
  color: var(--text-main); /* #F2FFF6 */
  border: 2px solid var(--border-color); /* #2E7A4E */
}

.page-promotions__btn-secondary:hover {
  background-color: var(--border-color); /* #2E7A4E */
  color: #ffffff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* --- Color Theme Application --- */
.page-promotions__dark-bg {
  background-color: var(--bg-color-main); /* #08160F */
  color: var(--text-main); /* #F2FFF6 */
}

.page-promotions__light-bg {
  background-color: var(--card-bg); /* #11271B */
  color: var(--text-main); /* #F2FFF6 */
}

/* Adjust text color for sections with a slightly lighter background for better contrast */
.page-promotions__light-bg .page-promotions__section-title,
.page-promotions__light-bg .page-promotions p,
.page-promotions__light-bg .page-promotions__card-title,
.page-promotions__light-bg .page-promotions__faq-question {
  color: var(--text-main); /* #F2FFF6 */
}

/* --- Hero Section --- */
.page-promotions__hero-section {
  display: flex; /* Use flex to stack image and content */
  flex-direction: column; /* Stack vertically */
  align-items: center; /* Center horizontally */
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: var(--bg-color-main); /* Ensure background for the whole section */
}

.page-promotions__hero-image-container {
  width: 100%;
  max-width: 1200px; /* Constrain image width if needed */
  margin-bottom: 30px; /* Space between image and content */
}

.page-promotions__hero-image {
  width: 100%;
  height: auto; /* Allow height to adjust naturally */
  display: block;
  border-radius: 10px; /* Optional: add some style */
}

.page-promotions__hero-content {
  text-align: center;
  padding-bottom: 60px; /* Add padding at the bottom of the content */
}

.page-promotions__main-title {
  font-size: 3.2em;
  font-weight: bold;
  color: var(--text-main); /* #F2FFF6 */
  margin-bottom: 20px;
  line-height: 1.2;
}

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

.page-promotions__promo-card,
.page-promotions__step-card {
  background-color: var(--card-bg); /* #11271B */
  padding: 30px;
  border-radius: 10px;
  text-align: left;
  display: flex;
  flex-direction: column;
  height: 100%; /* Ensure cards have equal height */
  box-sizing: border-box;
}

.page-promotions__promo-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-promotions__card-title {
  font-size: 1.5em;
  color: var(--text-main); /* #F2FFF6 */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions__promo-card p,
.page-promotions__step-card p {
  color: var(--text-secondary); /* #A7D9B8 */
  flex-grow: 1; /* Push button to bottom */
}

.page-promotions__promo-card .page-promotions__btn-primary,
.page-promotions__step-card .page-promotions__btn-primary {
  margin-top: 20px;
  width: 100%;
  text-align: center;
}

/* --- Benefits List --- */
.page-promotions__benefits-list {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 800px;
  margin: 40px auto 0 auto;
}

.page-promotions__benefits-list li {
  background-color: var(--card-bg); /* #11271B */
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  color: var(--text-secondary); /* #A7D9B8 */
  font-size: 1.1em;
  border-left: 5px solid var(--main-color); /* #11A84E */
}

.page-promotions__benefits-list li:last-child {
  margin-bottom: 0;
}

.page-promotions__icon {
  color: var(--gold-color); /* #F2C14E */
  font-size: 1.4em;
  margin-right: 15px;
}

/* --- FAQ Section --- */
.page-promotions__faq-list {
  margin-top: 40px;
  text-align: left;
}

.page-promotions__faq-item {
  background-color: var(--card-bg); /* #11271B */
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
}

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.2em;
  color: var(--text-main); /* #F2FFF6 */
  background-color: var(--card-bg); /* #11271B */
  border-bottom: 1px solid var(--divider-color); /* #1E3A2A */
}

.page-promotions__faq-question:hover {
  background-color: var(--deep-green); /* #0A4B2C */
}

.page-promotions__faq-question[aria-expanded="true"] {
  border-bottom: none;
}

.page-promotions__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 10px;
  color: var(--main-color); /* #11A84E */
}

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

/* For details tag, hide default marker */
.page-promotions__faq-item summary {
  list-style: none;
}
.page-promotions__faq-item summary::-webkit-details-marker {
  display: none;
}


/* --- Responsive Design --- */
@media (max-width: 1024px) {
  .page-promotions__main-title {
    font-size: 2.8em;
  }
  .page-promotions__section-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-promotions__section {
    padding: 40px 0;
  }
  .page-promotions__main-title {
    font-size: 2.2em;
  }
  .page-promotions__section-title {
    font-size: 1.8em;
  }
  .page-promotions__description,
  .page-promotions p,
  .page-promotions__benefits-list li,
  .page-promotions__faq-answer {
    font-size: 1em;
  }
  .page-promotions__btn-primary,
  .page-promotions__btn-secondary {
    font-size: 1em;
    padding: 12px 25px;
  }

  /* Mobile image responsiveness */
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-promotions__container,
  .page-promotions__promo-grid,
  .page-promotions__steps-grid,
  .page-promotions__promo-card,
  .page-promotions__step-card,
  .page-promotions__hero-content,
  .page-promotions__faq-list,
  .page-promotions__benefits-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Mobile button responsiveness */
  .page-promotions__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-promotions__btn-primary,
  .page-promotions__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  /* Hero section adjustments */
  .page-promotions__hero-section {
    min-height: auto;
    padding-top: 10px !important;
  }
  .page-promotions__hero-image-container {
    margin-bottom: 20px;
    padding: 0 15px; /* Add horizontal padding for image container */
  }
  .page-promotions__hero-content {
    padding-bottom: 40px; /* Adjust padding for mobile */
  }
  .page-promotions__main-title {
    font-size: 1.8em;
    margin-bottom: 15px;
  }

  /* FAQ adjustments */
  .page-promotions__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }
  .page-promotions__faq-answer {
    padding: 0 15px 15px 15px;
  }
}