.page-promotions {
  background-color: #08160F; /* Custom Background color */
  color: #F2FFF6; /* Custom Text Main color for general content */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-bottom: 40px; /* Ensure space above footer */
}

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

/* Hero Section */
.page-promotions__hero-section {
  display: flex;
  flex-direction: column; /* Stack image and content vertically */
  align-items: center;
  text-align: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  position: relative;
  overflow: hidden; /* Ensure content doesn't overflow */
}

.page-promotions__hero-image {
  width: 100%;
  height: auto;
  max-height: 675px; /* Limit height for aesthetic */
  object-fit: cover;
  display: block;
  margin-bottom: 30px; /* Space between image and content */
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(87, 227, 141, 0.3); /* Glow effect */
}

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

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

.page-promotions__hero-description {
  font-size: 1.15rem;
  color: #A7D9B8; /* Custom Text Secondary */
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__cta-buttons {
  display: flex;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
  justify-content: center;
  gap: 20px;
}

.page-promotions__btn-primary,
.page-promotions__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-sizing: border-box; /* Crucial for responsive buttons */
  white-space: normal; /* Allow text to wrap */
  word-wrap: break-word; /* Break long words */
  max-width: 100%; /* Ensure buttons don't overflow */
}

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

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

.page-promotions__btn-secondary {
  background: transparent;
  color: #57E38D; /* Custom Glow color */
  border: 2px solid #57E38D; /* Custom Glow color for border */
}

.page-promotions__btn-secondary:hover {
  background: #57E38D; /* Custom Glow color */
  color: #08160F; /* Custom Background color */
  transform: translateY(-3px);
}

.page-promotions__btn-small {
  padding: 10px 20px;
  font-size: 0.9rem;
}

.page-promotions__btn-large {
  padding: 18px 35px;
  font-size: 1.1rem;
}

/* General Section Styling */
.page-promotions__section {
  padding: 40px 0;
}

.page-promotions__section-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: #F2FFF6; /* Custom Text Main */
  text-align: center;
  margin-bottom: 40px;
  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(90deg, #13994A 0%, #2AD16F 100%); /* Button gradient for underline */
  border-radius: 2px;
}

.page-promotions__text-block {
  font-size: 1.05rem;
  color: #A7D9B8; /* Custom Text Secondary */
  margin-bottom: 20px;
  text-align: justify;
}

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

.page-promotions__promo-card {
  background-color: #11271B; /* Custom Card BG color */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #2E7A4E; /* Custom Border color */
}

.page-promotions__promo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(87, 227, 141, 0.4); /* Glow on hover */
}

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

.page-promotions__card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-promotions__card-title {
  font-size: 1.5rem;
  color: #F2FFF6; /* Custom Text Main */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-promotions__card-description {
  font-size: 0.95rem;
  color: #A7D9B8; /* Custom Text Secondary */
  margin-bottom: 20px;
  flex-grow: 1; /* Push button to bottom */
}

/* Guide Section */
.page-promotions__guide-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-promotions__guide-item {
  background-color: #11271B; /* Custom Card BG color */
  border: 1px solid #2E7A4E; /* Custom Border color */
  border-radius: 8px;
  padding: 20px 25px;
  margin-bottom: 15px;
  font-size: 1.05rem;
  color: #F2FFF6; /* Custom Text Main */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}

.page-promotions__guide-item:hover {
  transform: translateX(5px);
}

.page-promotions__guide-item strong {
  color: #57E38D; /* Custom Glow color */
}

.page-promotions__guide-item a {
  color: #F2C14E; /* Custom Gold color for links */
  text-decoration: none;
}

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

/* Terms and Conditions Section */
.page-promotions__terms-list {
  list-style: disc;
  padding-left: 25px;
  margin-top: 30px;
}

.page-promotions__terms-item {
  font-size: 1rem;
  color: #A7D9B8; /* Custom Text Secondary */
  margin-bottom: 10px;
}

.page-promotions__terms-item strong {
  color: #F2FFF6; /* Custom Text Main */
}

.page-promotions__terms-conditions a {
  color: #F2C14E; /* Custom Gold color for links */
  text-decoration: none;
}

.page-promotions__terms-conditions a:hover {
  text-decoration: underline;
}

/* FAQ Section */
.page-promotions__faq-list {
  margin-top: 30px;
}

.page-promotions__faq-item {
  background-color: #11271B; /* Custom Card BG color */
  border: 1px solid #2E7A4E; /* Custom Border color */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #F2FFF6; /* Custom Text Main */
  cursor: pointer;
  background-color: #0A4B2C; /* Custom Deep Green for question background */
  transition: background-color 0.3s ease;
  list-style: none; /* Remove default marker for summary */
}

.page-promotions__faq-question::-webkit-details-marker {
    display: none; /* Hide default marker for webkit browsers */
}

.page-promotions__faq-question:hover {
  background-color: #13994A; /* Slightly lighter green on hover */
}

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

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

.page-promotions__faq-item[open] .page-promotions__faq-toggle {
  content: '−'; /* Change to minus when open */
}

.page-promotions__faq-answer {
  padding: 0 25px 20px;
  font-size: 1rem;
  color: #A7D9B8; /* Custom Text Secondary */
  line-height: 1.7;
}

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

/* Final CTA Section */
.page-promotions__cta-final {
  text-align: center;
  padding: 60px 0;
  background-color: #0A4B2C; /* Custom Deep Green */
  border-radius: 12px;
  margin-top: 40px;
  box-shadow: 0 0 25px rgba(87, 227, 141, 0.4); /* Glow effect */
}

.page-promotions__cta-final .page-promotions__section-title {
  color: #F2FFF6;
  margin-bottom: 25px;
}

.page-promotions__cta-final .page-promotions__section-title::after {
  background: linear-gradient(90deg, #2AD16F 0%, #F2C14E 100%); /* Green to Gold gradient */
}

.page-promotions__cta-final .page-promotions__text-block {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
  color: #A7D9B8;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .page-promotions__hero-image {
    max-height: 500px;
  }
  .page-promotions__main-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }
  .page-promotions__section-title {
    font-size: clamp(1.8rem, 4.5vw, 2.5rem);
  }
  .page-promotions__promo-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-promotions__hero-section {
    padding-bottom: 40px;
  }
  .page-promotions__hero-image {
    max-height: 400px;
  }
  .page-promotions__hero-description {
    font-size: 1rem;
  }
  .page-promotions__cta-buttons {
    flex-direction: column; /* Stack buttons vertically on mobile */
    gap: 15px;
  }
  .page-promotions__btn-primary,
  .page-promotions__btn-secondary {
    width: 100%;
    max-width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-promotions__promo-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions__promo-image {
    height: 180px;
  }
  .page-promotions__section,
  .page-promotions__card,
  .page-promotions__container,
  .page-promotions__promo-card,
  .page-promotions__cta-final {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Ensure no overflow for containers */
  }
  .page-promotions__faq-question,
  .page-promotions__faq-answer {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
}

/* Ensure links in text are readable */
.page-promotions a {
  color: #F2C14E; /* Custom Gold color for links */
  text-decoration: none;
}

.page-promotions a:hover {
  text-decoration: underline;
}

/* Ensure strong tags are visible */
.page-promotions strong {
  color: #F2FFF6; /* Custom Text Main */
}