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

  font-family: 'Arial', sans-serif;
  color: var(--color-text-main);
  background-color: var(--color-background); /* Assume body background from shared, this is for sections */
}

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

.page-promotions__section {
  padding: 60px 0;
  text-align: center;
  background-color: var(--color-background);
}

.page-promotions__section--dark-bg {
  background-color: var(--color-deep-green);
  color: var(--color-text-main);
}

.page-promotions__section--dark-bg .page-promotions__section-description {
  color: var(--color-text-secondary);
}

.page-promotions__section-title {
  font-size: 2.5em;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--color-text-main);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.page-promotions__section-description {
  font-size: 1.1em;
  color: var(--color-text-secondary);
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-promotions__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit height for aesthetic */
  overflow: hidden;
}

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

.page-promotions__hero-content {
  max-width: 900px;
  margin: 40px auto 0;
  text-align: center;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-promotions__main-title {
  font-weight: bold;
  color: var(--color-gold);
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
  font-size: clamp(2.2em, 4vw, 3.5em);
}

.page-promotions__hero-description {
  font-size: 1.2em;
  color: var(--color-text-main);
  margin-bottom: 30px;
}

.page-promotions__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

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

.page-promotions__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}

.page-promotions__btn-secondary {
  background: transparent;
  color: var(--color-gold);
  border: 2px solid var(--color-gold);
  margin-left: 20px;
}

.page-promotions__btn-secondary:hover {
  background: rgba(242, 193, 78, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

.page-promotions__promo-card {
  background-color: var(--color-card-bg);
  border-radius: 12px;
  overflow: hidden;
  text-align: left;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.page-promotions__promo-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.page-promotions__card-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.page-promotions__card-title {
  font-size: 1.6em;
  font-weight: bold;
  color: var(--color-gold);
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-promotions__card-text {
  font-size: 1em;
  color: var(--color-text-secondary);
  margin-bottom: 20px;
  flex-grow: 1;
}

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

.page-promotions__feature-item {
  font-size: 0.95em;
  color: var(--color-text-main);
  margin-bottom: 8px;
  position: relative;
  padding-left: 25px;
  line-height: 1.4;
}

.page-promotions__feature-item::before {
  content: '✔';
  color: var(--color-glow);
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
}

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

.page-promotions__step-item {
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
  box-sizing: border-box;
}

.page-promotions__card--dark-bg {
  background-color: var(--color-card-bg);
  color: var(--color-text-main);
}

.page-promotions__step-icon-wrapper {
  background-color: var(--color-deep-green);
  border-radius: 50%;
  padding: 15px;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(17, 168, 78, 0.4);
}

.page-promotions__step-icon {
  width: 60px;
  height: 60px;
  display: block;
}

.page-promotions__step-title {
  font-size: 1.5em;
  font-weight: bold;
  color: var(--color-glow);
  margin-bottom: 15px;
}

.page-promotions__step-text {
  font-size: 1em;
  color: var(--color-text-secondary);
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-promotions__conditions {
  margin-top: 60px;
  padding: 30px;
  background-color: var(--color-deep-green);
  border-radius: 12px;
  text-align: left;
  border: 1px solid var(--color-border);
}

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

.page-promotions__conditions-text {
  font-size: 1em;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

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

.page-promotions__benefit-item {
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
  box-sizing: border-box;
}

.page-promotions__card--light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-promotions__card--light-bg .page-promotions__benefit-title {
  color: var(--color-primary);
}

.page-promotions__card--light-bg .page-promotions__benefit-text {
  color: #555555;
}

.page-promotions__benefit-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.page-promotions__benefit-title {
  font-size: 1.4em;
  font-weight: bold;
  color: var(--color-glow);
  margin-bottom: 10px;
}

.page-promotions__benefit-text {
  font-size: 0.95em;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

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

.page-promotions__faq-item {
  margin-bottom: 15px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__faq-item[open] {
  background-color: var(--color-card-bg);
}

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background-color: var(--color-card-bg);
  color: var(--color-text-main);
  font-weight: bold;
  font-size: 1.1em;
  cursor: pointer;
  transition: background-color 0.3s ease;
  list-style: none;
}

.page-promotions__faq-question::-webkit-details-marker {
  display: none;
}

.page-promotions__faq-question:hover {
  background-color: var(--color-deep-green);
}

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

.page-promotions__faq-toggle {
  font-size: 1.5em;
  margin-left: 15px;
  color: var(--color-glow);
}

.page-promotions__faq-answer {
  padding: 15px 25px 20px;
  background-color: var(--color-card-bg);
  color: var(--color-text-secondary);
  font-size: 0.95em;
  line-height: 1.6;
  border-top: 1px solid var(--color-divider);
}

/* Final CTA Section */
.page-promotions__cta-section {
  padding: 80px 0;
  background-color: var(--color-deep-green);
}

.page-promotions__cta-title {
  font-size: 2.8em;
  font-weight: bold;
  color: var(--color-gold);
  margin-bottom: 25px;
  line-height: 1.2;
  text-shadow: 0 0 12px rgba(242, 193, 78, 0.6);
}

.page-promotions__cta-description {
  font-size: 1.2em;
  color: var(--color-text-main);
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions__section-title {
    font-size: 2em;
  }
  .page-promotions__main-title {
    font-size: clamp(2em, 5vw, 3em);
  }
  .page-promotions__hero-image-wrapper {
    max-height: 500px;
  }
}

@media (max-width: 768px) {
  .page-promotions__section {
    padding: 40px 0;
  }
  .page-promotions__section-title {
    font-size: 1.8em;
  }
  .page-promotions__section-description {
    font-size: 1em;
  }
  .page-promotions__main-title {
    font-size: clamp(1.8em, 6vw, 2.8em);
  }
  .page-promotions__hero-description {
    font-size: 1em;
  }
  .page-promotions__hero-image-wrapper {
    max-height: 400px;
  }

  .page-promotions__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    margin: 10px 0 !important;
    padding: 12px 20px !important;
  }
  .page-promotions__btn-secondary {
    margin-left: 0 !important;
  }
  .page-promotions__cta-buttons {
    flex-direction: column;
    gap: 10px;
    padding: 0 15px;
  }

  .page-promotions__promo-grid,
  .page-promotions__steps-grid,
  .page-promotions__benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-promotions__promo-card,
  .page-promotions__step-item,
  .page-promotions__benefit-item,
  .page-promotions__faq-item {
    margin-left: 15px;
    margin-right: 15px;
    width: auto;
    max-width: calc(100% - 30px);
    box-sizing: border-box;
  }

  .page-promotions__container {
    padding: 0 15px;
  }

  .page-promotions__promo-image {
    height: 180px;
  }
  .page-promotions__card-title {
    font-size: 1.4em;
  }
  .page-promotions__step-title {
    font-size: 1.3em;
  }
  .page-promotions__benefit-title {
    font-size: 1.2em;
  }
  .page-promotions__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-promotions__faq-answer {
    padding: 10px 20px 15px;
  }
  .page-promotions__cta-title {
    font-size: 2em;
  }
  .page-promotions__cta-description {
    font-size: 1em;
  }

  /* Mobile image and video responsive */
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-promotions__section,
  .page-promotions__card,
  .page-promotions__container,
  .page-promotions__hero-section,
  .page-promotions__promo-card,
  .page-promotions__step-item,
  .page-promotions__benefit-item,
  .page-promotions__faq-item,
  .page-promotions__cta-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
  }
  
  .page-promotions__hero-content {
    padding: 0 15px;
  }

  /* Ensure content area images maintain minimum size if applicable, but prioritize max-width: 100% */
  .page-promotions__promo-image,
  .page-promotions__step-icon,
  .page-promotions__benefit-icon {
    min-width: 200px; /* Base size for content images, but overridden by max-width: 100% for mobile */
    min-height: 200px;
    width: 100% !important;
    height: auto !important;
  }
  .page-promotions__step-icon,
  .page-promotions__benefit-icon {
    width: 60px !important; /* Specific icons can be smaller, but this is an exception */
    height: 60px !important;
    min-width: unset;
    min-height: unset;
  }

  /* Video specific mobile adaptations if any video were present */
  .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;
  }
  .page-promotions__video-section {
    padding-top: 10px !important; 
  }
  .page-promotions__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}

@media (max-width: 480px) {
  .page-promotions__section-title {
    font-size: 1.6em;
  }
  .page-promotions__main-title {
    font-size: clamp(1.6em, 7vw, 2.5em);
  }
  .page-promotions__cta-title {
    font-size: 1.8em;
  }
}