.page-promotions {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light body background */
  background-color: #f4f4f4; /* Body background color */
}

.page-promotions__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 20px 60px;
  overflow: hidden;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
}

.page-promotions__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-promotions__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4); /* Darken image for text readability */
}

.page-promotions__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 40px 20px;
  background: rgba(17, 39, 27, 0.7); /* Card B G with transparency */
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions__main-title {
  font-size: clamp(2em, 5vw, 3.5em);
  font-weight: 700;
  margin-bottom: 20px;
  color: #F2FFF6; /* Text Main */
  line-height: 1.2;
}

.page-promotions__sub-description {
  font-size: clamp(1em, 2vw, 1.2em);
  margin-bottom: 30px;
  color: #A7D9B8; /* Text Secondary */
}

.page-promotions__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
  color: #F2FFF6; /* Text Main */
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1em;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}

.page-promotions__cta-button--large {
  padding: 18px 40px;
  font-size: 1.3em;
}

.page-promotions__cta-button--final {
  margin-top: 30px;
}

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

.page-promotions__introduction .page-promotions__container, 
.page-promotions__how-to .page-promotions__container, 
.page-promotions__faq .page-promotions__container {
  background-color: #f4f4f4; /* Light background for these sections */
  color: #333333;
}

.page-promotions__promo-types, 
.page-promotions__why-choose, 
.page-promotions__conclusion {
  background-color: #08160F; /* Background */
  color: #F2FFF6; /* Text Main */
}

.page-promotions__section-title {
  font-size: 2.5em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: inherit;
  position: relative;
  padding-bottom: 15px;
}

.page-promotions__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #22C768;
  border-radius: 2px;
}

.page-promotions__section-subtitle {
  font-size: 1.8em;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 20px;
  color: inherit;
}

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

.page-promotions__text-content {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: inherit;
}

.page-promotions__image-wrapper {
  margin: 30px 0;
  text-align: center;
}

.page-promotions__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-promotions__promo-grid, .page-promotions__step-by-step {
  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: #11271B; /* Card B G */
  color: #F2FFF6; /* Text Main */
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease;
}

.page-promotions__promo-card:hover, .page-promotions__step-card:hover {
  transform: translateY(-5px);
}

.page-promotions__promo-card .page-promotions__card-title, .page-promotions__step-card .page-promotions__card-title {
  font-size: 1.5em;
  font-weight: 600;
  margin-bottom: 15px;
  color: #57E38D; /* Glow */
}

.page-promotions__promo-card .page-promotions__card-text, .page-promotions__step-card .page-promotions__card-text {
  font-size: 1em;
  margin-bottom: 20px;
  flex-grow: 1;
  color: #A7D9B8; /* Text Secondary */
}

.page-promotions__promo-card .page-promotions__card-image, .page-promotions__step-card .page-promotions__card-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
}

.page-promotions__promo-card .page-promotions__card-button, .page-promotions__step-card .page-promotions__card-button {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
  color: #F2FFF6; /* Text Main */
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-promotions__promo-card .page-promotions__card-button:hover, .page-promotions__step-card .page-promotions__card-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}

.page-promotions__tips-section {
  margin-top: 50px;
  padding: 30px;
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.page-promotions__tips-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-promotions__tips-list li {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  font-size: 1.1em;
  color: #333333;
}

.page-promotions__tips-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #11A84E; /* Main Color */
  font-weight: bold;
  font-size: 1.2em;
  top: 0;
}

.page-promotions__reason-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-promotions__reason-list li {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
}

.page-promotions__reason-list li::before {
  content: '★';
  position: absolute;
  left: 0;
  color: #F2C14E; /* Gold */
  font-weight: bold;
  font-size: 1.2em;
  top: 0;
}

.page-promotions__faq-list {
  margin-top: 40px;
}

.page-promotions__faq-item {
  background-color: #ffffff;
  border: 1px solid #E0E0E0;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: 600;
  color: #11A84E; /* Main Color */
  cursor: pointer;
  background-color: #F9F9F9;
  border-bottom: 1px solid #E0E0E0;
}

.page-promotions__faq-item[open] .page-promotions__faq-question {
  border-bottom: 1px solid #E0E0E0;
}

.page-promotions__faq-question:hover {
  background-color: #F0F0F0;
}

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

.page-promotions__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #11A84E;
}

.page-promotions__faq-item[open] .page-promotions__faq-toggle {
  content: '−';
}

.page-promotions__faq-answer {
  padding: 20px;
  font-size: 1.05em;
  color: #555555;
  background-color: #ffffff;
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-promotions__hero-content {
    padding: 30px 15px;
  }

  .page-promotions__main-title {
    font-size: clamp(1.8em, 4vw, 3em);
  }

  .page-promotions__sub-description {
    font-size: clamp(0.9em, 1.8vw, 1.1em);
  }

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

  .page-promotions__section-subtitle {
    font-size: 1.6em;
  }

  .page-promotions__promo-grid, .page-promotions__step-by-step {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .page-promotions__promo-card, .page-promotions__step-card {
    padding: 25px;
  }

  .page-promotions__promo-card .page-promotions__card-title, .page-promotions__step-card .page-promotions__card-title {
    font-size: 1.3em;
  }
}

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

  .page-promotions__hero-section {
    padding: 10px 15px 40px;
  }

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

  .page-promotions__main-title {
    font-size: clamp(1.5em, 6vw, 2.5em);
  }

  .page-promotions__sub-description {
    font-size: clamp(0.85em, 2.5vw, 1em);
  }

  .page-promotions__cta-button, .page-promotions__card-button {
    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-button--large {
    padding: 15px 25px;
    font-size: 1.1em;
  }

  .page-promotions__section {
    padding: 40px 0;
  }

  .page-promotions__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-promotions__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-promotions__section-subtitle {
    font-size: 1.4em;
  }

  .page-promotions__text-content {
    font-size: 1em;
  }

  .page-promotions__promo-grid, .page-promotions__step-by-step {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-promotions__promo-card, .page-promotions__step-card {
    padding: 20px;
  }

  .page-promotions__promo-card .page-promotions__card-title, .page-promotions__step-card .page-promotions__card-title {
    font-size: 1.2em;
  }

  .page-promotions__promo-card .page-promotions__card-text, .page-promotions__step-card .page-promotions__card-text {
    font-size: 0.95em;
  }

  .page-promotions__content-image, .page-promotions__hero-image, .page-promotions__card-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: 200px !important; /* Ensure minimum size is met even on mobile */
    min-height: 200px !important;
  }

  .page-promotions__image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-promotions__faq-question {
    font-size: 1.05em;
    padding: 15px;
  }

  .page-promotions__faq-answer {
    padding: 15px;
    font-size: 0.95em;
  }

  .page-promotions__tips-section {
    padding: 20px;
  }

  .page-promotions__tips-list li, .page-promotions__reason-list li {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-promotions__hero-content {
    border-radius: 10px;
  }

  .page-promotions__main-title {
    font-size: clamp(1.2em, 8vw, 2em);
  }

  .page-promotions__cta-button {
    padding: 12px 20px;
    font-size: 1em;
  }

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

/* Ensure image size constraints for content area */
.page-promotions__content-area img, 
.page-promotions__promo-card img, 
.page-promotions__step-card img, 
.page-promotions__image-wrapper img {
  min-width: 200px;
  min-height: 200px;
}

/* Colors based on requirements */
.page-promotions__dark-bg {
  background-color: #08160F;
  color: #F2FFF6;
}

.page-promotions__light-bg {
  background-color: #f4f4f4;
  color: #333333;
}

.page-promotions__card {
  background-color: #11271B;
  color: #F2FFF6;
  border: 1px solid #2E7A4E; /* Border color */
}

.page-promotions__card-title {
  color: #57E38D; /* Glow */
}

.page-promotions__card-text {
  color: #A7D9B8; /* Text Secondary */
}

.page-promotions__cta-button, .page-promotions__card-button {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
}

.page-promotions__tips-list li::before {
  color: #11A84E; /* Main Color */
}

.page-promotions__reason-list li::before {
  color: #F2C14E; /* Gold */
}

.page-promotions__faq-question {
  color: #333333; /* Text for question */
  background-color: #F9F9F9;
  border-bottom-color: #2E7A4E; /* Border */
}

.page-promotions__faq-toggle {
  color: #11A84E;
}

.page-promotions__faq-answer {
  background-color: #ffffff;
  color: #555555;
}

.page-promotions__faq-item {
  border-color: #2E7A4E; /* Border */
}

.page-promotions__section-title::after {
  background-color: #22C768;
}