.page-promotions {
  color: #F2FFF6; /* Text Main, contrasts with dark body background #08160F */
  background-color: #08160F; /* Background */
  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 {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 20px 60px; /* Small top padding, larger bottom for content */
  text-align: center;
  overflow: hidden;
  background-color: #0A4B2C; /* Deep Green for hero section background */
}

.page-promotions__hero-image-wrapper {
  width: 100%;
  max-height: 500px; /* Limit height for hero image */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px; /* Space between image and text */
}

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

.page-promotions__hero-content {
  position: relative; /* Ensure content is above any background elements */
  z-index: 10;
  max-width: 800px;
}

.page-promotions__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: #F2C14E; /* Gold */
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive H1 font size */
}

.page-promotions__hero-description {
  font-size: 1.15rem;
  margin-bottom: 30px;
  color: #A7D9B8; /* Text Secondary */
}

.page-promotions__btn-primary,
.page-promotions__btn-secondary,
.page-promotions__btn-tertiary {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  text-align: center;
}

.page-promotions__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
  color: #F2FFF6; /* Text Main */
  border: none;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-promotions__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

.page-promotions__btn-secondary {
  background-color: transparent;
  color: #2AD16F; /* Button color light */
  border: 2px solid #2E7A4E; /* Border */
}

.page-promotions__btn-secondary:hover {
  background-color: #2E7A4E; /* Border */
  color: #F2FFF6; /* Text Main */
}

.page-promotions__btn-tertiary {
  background-color: #11271B; /* Card BG */
  color: #2AD16F; /* Button color light */
  border: 1px solid #2E7A4E; /* Border */
  font-size: 0.95rem;
  padding: 10px 20px;
}

.page-promotions__btn-tertiary:hover {
  background-color: #2E7A4E; /* Border */
  color: #F2FFF6; /* Text Main */
}

.page-promotions__featured-promos-section,
.page-promotions__guide-section,
.page-promotions__tips-section,
.page-promotions__faq-section,
.page-promotions__conclusion-section {
  padding: 80px 0;
}

.page-promotions__featured-promos-section,
.page-promotions__tips-section,
.page-promotions__conclusion-section {
    background-color: #08160F; /* Background */
}

.page-promotions__guide-section,
.page-promotions__faq-section {
  background-color: #11271B; /* Card BG, for dark section contrast */
}

.page-promotions__section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 60px;
  font-weight: bold;
  line-height: 1.3;
}

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

.page-promotions__promo-card {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  text-align: center;
  padding-bottom: 30px;
  border: 1px solid #2E7A4E; /* Border */
}

.page-promotions__promo-card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  margin-bottom: 20px;
  display: block;
}

.page-promotions__promo-card-title {
  font-size: 1.5rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  padding: 0 20px;
}

.page-promotions__promo-card-description {
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 25px;
  flex-grow: 1;
  padding: 0 20px;
}

.page-promotions__promo-card .page-promotions__btn-secondary {
  align-self: center;
  margin-top: auto;
}

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

.page-promotions__guide-item {
  background-color: #0A4B2C; /* Deep Green */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  border: 1px solid #2E7A4E; /* Border */
}

.page-promotions__guide-item-title {
  font-size: 1.6rem;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
}

.page-promotions__guide-item-description {
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 25px;
}

.page-promotions__guide-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin-top: 20px;
}

.page-promotions__tips-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.page-promotions__tips-text-block {
  flex: 2;
}

.page-promotions__tips-image-wrapper {
  flex: 1;
  min-width: 300px; /* Ensure image wrapper has a minimum width */
}

.page-promotions__tips-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions__tips-subtitle {
  font-size: 1.8rem;
  color: #57E38D; /* Glow */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-promotions__tips-subtitle:first-of-type {
    margin-top: 0;
}

.page-promotions__tips-description {
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
}

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

.page-promotions__faq-item {
  background-color: #0A4B2C; /* Deep Green */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  background-color: #11271B; /* Card BG */
  border-bottom: 1px solid #1E3A2A; /* Divider */
}

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

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

.page-promotions__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  margin-left: 20px;
  color: #57E38D; /* Glow */
}

.page-promotions__faq-answer {
  padding: 20px 25px;
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  border-top: 1px solid #1E3A2A; /* Divider */
}

.page-promotions__faq-answer p:last-child {
    margin-bottom: 0;
}

.page-promotions__conclusion-description {
  font-size: 1.15rem;
  color: #A7D9B8; /* Text Secondary */
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-promotions__tips-content {
    flex-direction: column;
    align-items: center;
  }

  .page-promotions__tips-image-wrapper {
    order: -1; /* Image above text on smaller screens */
    margin-bottom: 40px;
    min-width: unset;
  }
}

@media (max-width: 768px) {
  .page-promotions__container {
    padding: 0 15px !important;
  }

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

  .page-promotions__hero-image-wrapper {
    max-height: 300px;
  }

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

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

  .page-promotions__section-title {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
    margin-bottom: 40px;
  }

  .page-promotions__featured-promos-section,
  .page-promotions__guide-section,
  .page-promotions__tips-section,
  .page-promotions__faq-section,
  .page-promotions__conclusion-section {
    padding: 60px 0;
  }

  .page-promotions__promos-grid,
  .page-promotions__guide-grid {
    grid-template-columns: 1fr;
  }

  .page-promotions__promo-card-image {
    height: 180px;
  }

  .page-promotions__promo-card-title {
    font-size: 1.3rem;
  }

  .page-promotions__guide-item-title {
    font-size: 1.4rem;
  }

  .page-promotions__faq-item summary {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .page-promotions__faq-toggle {
    font-size: 1.5rem;
  }

  .page-promotions__faq-answer {
    padding: 15px 20px;
  }

  /* Mobile image responsiveness */
  .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__featured-promos-section,
  .page-promotions__guide-section,
  .page-promotions__tips-section,
  .page-promotions__faq-section,
  .page-promotions__conclusion-section,
  .page-promotions__hero-image-wrapper,
  .page-promotions__promo-card,
  .page-promotions__guide-item,
  .page-promotions__tips-image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important; /* Ensure no overflow */
  }

  /* Mobile button responsiveness */
  .page-promotions__btn-primary,
  .page-promotions__btn-secondary,
  .page-promotions__btn-tertiary,
  .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;
    display: flex;
    flex-direction: column; /* Ensure buttons stack vertically if multiple */
  }

  .page-promotions__tips-text-block .page-promotions__btn-primary {
    margin-top: 20px; /* Add some space if button is at bottom of text block */
  }
}

@media (max-width: 480px) {
  .page-promotions__main-title {
    font-size: clamp(1.8rem, 10vw, 2.5rem);
  }

  .page-promotions__section-title {
    font-size: clamp(1.4rem, 8vw, 2rem);
  }

  .page-promotions__promo-card-image {
    height: 150px;
  }

  .page-promotions__tips-subtitle {
    font-size: 1.5rem;
  }

  .page-promotions__faq-item summary {
    font-size: 0.95rem;
  }

  .page-promotions__faq-answer {
    font-size: 0.9rem;
  }
}