.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;
}

.page-promotions__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding-top: 10px; /* Rely on body padding for header offset, then add small top padding */
  padding-bottom: 60px;
  background-color: #08160F; /* Ensure dark background for light text */
}

.page-promotions__hero-image-wrapper {
  width: 100%;
  max-height: 700px; /* Limit height of the image wrapper */
  overflow: hidden;
}

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

.page-promotions__hero-content {
  max-width: 900px;
  margin-top: 40px;
  padding: 0 20px;
}

.page-promotions__main-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-main, #F2FFF6);
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.page-promotions__intro-text {
  font-size: 1.15rem;
  color: var(--text-secondary, #A7D9B8);
  margin-bottom: 30px;
}

.page-promotions__section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--text-main, #F2FFF6);
  text-align: center;
  margin-bottom: 40px;
}

.page-promotions__section-description {
  font-size: 1rem;
  color: var(--text-secondary, #A7D9B8);
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px auto;
}

.page-promotions__dark-section {
  background-color: var(--background-color, #08160F);
  padding: 60px 0;
  color: var(--text-main, #F2FFF6);
}

.page-promotions__intro-section {
  padding: 60px 0;
}

.page-promotions__image-content {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 40px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions__image-content--center {
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__types-section {
  padding: 60px 0;
  background-color: var(--card-bg, #11271B);
}

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

.page-promotions__card {
  background-color: var(--card-bg, #11271B);
  border: 1px solid var(--border-color, #2E7A4E);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-promotions__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-promotions__card-title {
  font-size: 1.5rem;
  color: var(--text-main, #F2FFF6);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-promotions__card-description {
  font-size: 0.95rem;
  color: var(--text-secondary, #A7D9B8);
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-promotions__cta-button {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  box-sizing: border-box;
  max-width: 100%;
}

.page-promotions__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff; /* White text for contrast */
  border: none;
}

.page-promotions__btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

.page-promotions__btn-secondary {
  background: transparent;
  color: var(--glow, #57E38D); /* Using Glow color for secondary button text */
  border: 2px solid var(--glow, #57E38D);
}

.page-promotions__btn-secondary:hover {
  background: var(--glow, #57E38D);
  color: #08160F; /* Dark text on hover for contrast */
}

.page-promotions__guide-section {
  padding: 60px 0;
}

.page-promotions__guide-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.page-promotions__guide-steps {
  flex: 1 1 50%;
  min-width: 300px;
}

.page-promotions__guide-steps ol {
  list-style: none;
  counter-reset: step-counter;
  padding: 0;
  margin: 0;
}

.page-promotions__guide-steps li {
  counter-increment: step-counter;
  margin-bottom: 30px;
  position: relative;
  padding-left: 60px;
}

.page-promotions__guide-steps li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--deep-green, #0A4B2C);
  color: var(--text-main, #F2FFF6);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
  border: 2px solid var(--border-color, #2E7A4E);
}

.page-promotions__guide-steps li h3 {
  font-size: 1.3rem;
  color: var(--text-main, #F2FFF6);
  margin-bottom: 10px;
}

.page-promotions__guide-steps li p {
  font-size: 0.95rem;
  color: var(--text-secondary, #A7D9B8);
}

.page-promotions__guide-image {
  flex: 1 1 40%;
  min-width: 300px;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions__terms-section {
  padding: 60px 0;
  background-color: var(--card-bg, #11271B);
}

.page-promotions__terms-list {
  list-style: disc;
  color: var(--text-secondary, #A7D9B8);
  max-width: 800px;
  margin: 30px auto 40px auto;
  padding-left: 40px;
  text-align: left;
}

.page-promotions__terms-list li {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.page-promotions__why-choose-section {
  padding: 60px 0;
}

.page-promotions__why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-promotions__why-choose-item {
  background-color: var(--card-bg, #11271B);
  border: 1px solid var(--border-color, #2E7A4E);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-promotions__why-choose-item h3 {
  font-size: 1.4rem;
  color: var(--text-main, #F2FFF6);
  margin-bottom: 15px;
}

.page-promotions__why-choose-item p {
  font-size: 0.95rem;
  color: var(--text-secondary, #A7D9B8);
}

.page-promotions__faq-section {
  padding: 60px 0;
  background-color: var(--card-bg, #11271B);
}

.page-promotions__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-promotions__faq-item {
  background-color: var(--background-color, #08160F);
  border: 1px solid var(--border-color, #2E7A4E);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--text-main, #F2FFF6);
}

.page-promotions__faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--text-main, #F2FFF6);
  position: relative;
}

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

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.page-promotions__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  margin-left: 15px;
  color: var(--glow, #57E38D);
}

.page-promotions__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 0.95rem;
  color: var(--text-secondary, #A7D9B8);
  line-height: 1.6;
}

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

.page-promotions__button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-promotions__hero-content {
    margin-top: 30px;
  }
  .page-promotions__main-title {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
  }
  .page-promotions__section-title {
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  }
  .page-promotions__card-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-promotions__container {
    padding: 0 15px;
  }
  .page-promotions__hero-section {
    padding-bottom: 40px;
  }
  .page-promotions__hero-content {
    margin-top: 20px;
  }
  .page-promotions__main-title {
    font-size: clamp(1.8rem, 6vw, 2.8rem);
  }
  .page-promotions__intro-text {
    font-size: 1rem;
  }
  .page-promotions__section-title {
    font-size: clamp(1.5rem, 5vw, 2.2rem);
  }
  .page-promotions__section-description {
    font-size: 0.9rem;
  }
  .page-promotions__card-image {
    height: 180px;
  }
  .page-promotions__card-title {
    font-size: 1.3rem;
  }
  .page-promotions__card-description {
    font-size: 0.85rem;
  }
  .page-promotions__guide-content {
    flex-direction: column;
  }
  .page-promotions__guide-steps {
    width: 100%;
    min-width: unset;
  }
  .page-promotions__guide-image {
    width: 100%;
    min-width: unset;
  }
  .page-promotions__terms-list {
    padding-left: 20px;
  }
  .page-promotions__why-choose-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions__faq-item summary {
    font-size: 1rem;
    padding: 15px 20px;
  }
  .page-promotions__faq-answer {
    padding: 0 20px 15px 20px;
  }
  .page-promotions__button-group {
    flex-direction: column;
    gap: 15px;
  }

  /* Mobile specific overrides with !important */
  .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__types-section,
  .page-promotions__guide-section,
  .page-promotions__terms-section,
  .page-promotions__why-choose-section,
  .page-promotions__faq-section,
  .page-promotions__cta-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Ensure no horizontal scroll */
  }
  .page-promotions__hero-section {
    padding-top: 10px !important; /* body already handles --header-offset */
  }
  .page-promotions__cta-button,
  .page-promotions__btn-primary,
  .page-promotions__btn-secondary,
  .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__button-group {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
}