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

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

/* Hero Section */
.page-promotions__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden;
  padding-top: 10px; /* Minimal top padding, body handles header offset */
  background-color: var(--deep-green); /* Fallback */
}

.page-promotions__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 600px; /* Limit height for hero image */
  z-index: 1;
}

.page-promotions__hero-content {
  position: relative;
  z-index: 2;
  padding: 40px 20px;
  max-width: 800px;
  margin-top: -100px; /* Pull content up slightly over the image for visual flow */
  background: var(--card-bg); /* #11271B */
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-color); /* #2E7A4E */
}

.page-promotions__hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive H1 font size */
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-main); /* #F2FFF6 */
  margin-bottom: 15px;
}

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

/* General Section Styles */
.page-promotions__section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--text-main); /* #F2FFF6 */
  text-align: center;
  margin-bottom: 40px;
  font-weight: 600;
  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: linear-gradient(to right, var(--deep-green), var(--glow)); /* #0A4B2C to #57E38D */
  border-radius: 2px;
}

.page-promotions__text-block {
  font-size: 1rem;
  color: var(--text-secondary); /* #A7D9B8 */
  margin-bottom: 20px;
  text-align: justify;
}

.page-promotions__text-block strong {
  color: var(--text-main); /* #F2FFF6 */
}

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

.page-promotions__btn-primary,
.page-promotions__btn-secondary,
.page-promotions__card-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1rem;
  border: 2px solid transparent;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
}

.page-promotions__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff; /* White text on dark button */
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-promotions__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
  transform: translateY(-2px);
}

.page-promotions__btn-secondary {
  background: transparent;
  color: var(--glow); /* #57E38D */
  border-color: var(--glow); /* #57E38D */
}

.page-promotions__btn-secondary:hover {
  background: var(--glow); /* #57E38D */
  color: var(--background-color); /* #08160F */
  transform: translateY(-2px);
}

/* Intro Section */
.page-promotions__intro-section,
.page-promotions__guide-section,
.page-promotions__terms-section,
.page-promotions__why-choose-section,
.page-promotions__faq-section,
.page-promotions__cta-bottom {
  padding: 60px 0;
}

/* Offers Grid */
.page-promotions__offers-grid {
  padding: 60px 0;
  background-color: var(--deep-green); /* #0A4B2C */
}

.page-promotions__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-promotions__card {
  background-color: var(--card-bg); /* #11271B */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color); /* #2E7A4E */
  display: flex;
  flex-direction: column;
  color: var(--text-main); /* #F2FFF6 */
}

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

.page-promotions__card-title {
  font-size: 1.4rem;
  font-weight: 600;
  padding: 20px 20px 10px;
  color: var(--text-main); /* #F2FFF6 */
}

.page-promotions__card-description {
  font-size: 0.95rem;
  color: var(--text-secondary); /* #A7D9B8 */
  padding: 0 20px 20px;
  flex-grow: 1;
}

.page-promotions__card-button {
  margin: 0 20px 20px;
  background: var(--glow); /* #57E38D */
  color: var(--background-color); /* #08160F */
  font-weight: 600;
  border-color: var(--glow);
}

.page-promotions__card-button:hover {
  background: var(--gold); /* #F2C14E */
  border-color: var(--gold); /* #F2C14E */
  transform: translateY(-2px);
}

/* Guide List */
.page-promotions__guide-list,
.page-promotions__terms-list,
.page-promotions__benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.page-promotions__guide-heading,
.page-promotions__terms-heading,
.page-promotions__benefits-item strong {
  font-size: 1.3rem;
  color: var(--text-main); /* #F2FFF6 */
  margin-bottom: 10px;
  font-weight: 600;
}

.page-promotions__guide-item p,
.page-promotions__terms-item p,
.page-promotions__benefits-item p {
  color: var(--text-secondary); /* #A7D9B8 */
  font-size: 1rem;
}

.page-promotions__guide-item a,
.page-promotions__text-block a {
  color: var(--glow); /* #57E38D */
  text-decoration: none;
}

.page-promotions__guide-item a:hover,
.page-promotions__text-block a:hover {
  text-decoration: underline;
}

/* FAQ Section */
.page-promotions__faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

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

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-main); /* #F2FFF6 */
  cursor: pointer;
  background-color: rgba(17, 47, 27, 0.8); /* Slightly darker card bg */
  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;
  margin-left: 15px;
  color: var(--glow); /* #57E38D */
}

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

/* Details tag specific styles for FAQ */
.page-promotions__faq-item[open] .page-promotions__faq-question {
  background-color: var(--deep-green); /* #0A4B2C */
}

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

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

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

/* CTA Bottom Section */
.page-promotions__cta-bottom {
  text-align: center;
  background: linear-gradient(135deg, var(--deep-green), var(--background-color)); /* #0A4B2C to #08160F */
  border-top: 1px solid var(--divider); /* #1E3A2A */
}

.page-promotions__cta-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--text-main); /* #F2FFF6 */
  margin-bottom: 20px;
}

.page-promotions__cta-description {
  font-size: 1.1rem;
  color: var(--text-secondary); /* #A7D9B8 */
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__btn-large {
  padding: 16px 40px;
  font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions__hero-image {
    max-height: 500px;
  }
  .page-promotions__hero-content {
    margin-top: -80px;
    padding: 30px 20px;
  }
  .page-promotions__hero-title {
    font-size: clamp(2.2rem, 4.5vw, 3rem);
  }
  .page-promotions__section-title {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  }
}

@media (max-width: 768px) {
  .page-promotions__hero-section {
    padding-top: 10px !important; /* body handles header offset */
  }
  .page-promotions__hero-image {
    max-height: 400px;
  }
  .page-promotions__hero-content {
    margin-top: -60px;
    padding: 25px 15px;
  }
  .page-promotions__hero-title {
    font-size: clamp(2rem, 6vw, 2.5rem);
  }
  .page-promotions__hero-description {
    font-size: 1rem;
  }
  .page-promotions__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-promotions__btn-primary,
  .page-promotions__btn-secondary,
  .page-promotions__card-button,
  .page-promotions a[class*="button"],
  .page-promotions a[class*="btn"] {
    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-buttons,
  .page-promotions__button-group,
  .page-promotions__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  .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__intro-section,
  .page-promotions__offers-grid,
  .page-promotions__guide-section,
  .page-promotions__terms-section,
  .page-promotions__why-choose-section,
  .page-promotions__faq-section,
  .page-promotions__cta-bottom {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden !important;
  }
  .page-promotions__grid {
    grid-template-columns: 1fr;
  }
  .page-promotions__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }
  .page-promotions__faq-answer {
    padding: 0 20px 15px;
  }
  .page-promotions__guide-item,
  .page-promotions__terms-item {
    padding: 20px;
  }
  .page-promotions__section-title {
    margin-bottom: 30px;
  }
}

@media (max-width: 480px) {
  .page-promotions__hero-content {
    margin-top: -40px;
    padding: 20px 10px;
  }
  .page-promotions__hero-title {
    font-size: clamp(1.8rem, 8vw, 2.2rem);
  }
  .page-promotions__hero-description {
    font-size: 0.9rem;
  }
  .page-promotions__btn-primary,
  .page-promotions__btn-secondary,
  .page-promotions__card-button {
    font-size: 0.9rem;
    padding: 12px 20px;
  }
  .page-promotions__section-title {
    font-size: clamp(1.4rem, 5vw, 1.8rem);
  }
  .page-promotions__text-block {
    font-size: 0.9rem;
  }
  .page-promotions__card-title {
    font-size: 1.2rem;
  }
  .page-promotions__card-description {
    font-size: 0.85rem;
  }
  .page-promotions__guide-heading,
  .page-promotions__terms-heading,
  .page-promotions__benefits-item strong {
    font-size: 1.1rem;
  }
  .page-promotions__faq-question {
    font-size: 0.95rem;
  }
  .page-promotions__faq-answer p {
    font-size: 0.9rem;
  }
  .page-promotions__cta-title {
    font-size: clamp(1.6rem, 6vw, 2rem);
  }
  .page-promotions__cta-description {
    font-size: 1rem;
  }
  .page-promotions__btn-large {
    padding: 14px 30px;
    font-size: 1rem;
  }
}