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

.page-promotions h1,
.page-promotions h2,
.page-promotions h3 {
  font-weight: bold;
  color: var(--gold-color); /* #F2C14E for emphasis */
}

.page-promotions h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  text-align: center;
  margin-bottom: 20px;
  color: var(--text-main); /* Ensure H1 is visible against dark background */
}

.page-promotions h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  text-align: center;
  margin-bottom: 30px;
  color: var(--text-main); /* Main text color for readability against dark bg */
}

.page-promotions h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--text-main);
  margin-top: 30px;
  margin-bottom: 15px;
}

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

.page-promotions__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding as per rules */
}

.page-promotions__hero-image-wrapper {
  width: 100%;
  max-width: 1200px; /* Ensure image wrapper does not exceed main content width */
  margin-bottom: 30px;
}

.page-promotions__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.page-promotions__hero-content {
  max-width: 900px;
  margin: 0 auto;
}

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

.page-promotions__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  background: var(--button-gradient); /* linear-gradient(180deg, #2AD16F 0%, #13994A 100%) */
  color: var(--text-main); /* #F2FFF6 */
  border: none;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions__button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  filter: brightness(1.1);
}

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

.page-promotions__card {
  background-color: var(--card-bg); /* #11271B */
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid var(--border-color); /* #2E7A4E */
  color: var(--text-main); /* #F2FFF6 */
}

.page-promotions__card-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 20px;
  display: block;
}

.page-promotions__card h4 {
  color: var(--gold-color); /* #F2C14E */
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.page-promotions__card p {
  color: var(--text-secondary); /* #A7D9B8 */
  font-size: 0.95rem;
}

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

.page-promotions__list li {
  background-color: var(--deep-green); /* #0A4B2C */
  margin-bottom: 10px;
  padding: 15px 20px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  color: var(--text-main);
  border-left: 5px solid var(--primary-color); /* #11A84E */
}

.page-promotions__list li::before {
  content: '✔';
  color: var(--glow-color); /* #57E38D */
  font-weight: bold;
  margin-right: 10px;
}

.page-promotions__content-image {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-weight: bold;
  color: var(--gold-color); /* #F2C14E */
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
}

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

.page-promotions__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  color: var(--glow-color); /* #57E38D */
}

.page-promotions__faq-answer {
  padding: 0 20px 20px;
  color: var(--text-secondary); /* #A7D9B8 */
  font-size: 0.95rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-promotions__faq-item[open] .page-promotions__faq-answer {
  max-height: 500px; /* Adjust as needed for content length */
  padding-top: 10px;
  transition: max-height 0.5s ease-in, padding 0.5s ease-in;
}

.page-promotions__faq-item summary {
  list-style: none;
}

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

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .page-promotions__section {
    padding: 40px 15px;
  }

  .page-promotions h1 {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .page-promotions h2 {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

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

  .page-promotions__hero-image-wrapper {
    margin-bottom: 20px;
  }

  .page-promotions__hero-content p {
    font-size: 1rem;
  }

  .page-promotions__button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
    font-size: 1rem;
  }
  
  .page-promotions__card,
  .page-promotions__list li,
  .page-promotions__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-promotions__hero-section,
  .page-promotions__intro-section,
  .page-promotions__types-section,
  .page-promotions__how-to-section,
  .page-promotions__terms-section,
  .page-promotions__faq-section,
  .page-promotions__why-choose-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-promotions__content-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
}