.page-promotions {
  font-family: Arial, sans-serif;
  color: #333333; /* Default text color for light background */
  line-height: 1.6;
}

.page-promotions__hero-section {
  display: flex;
  flex-direction: column; /* Ensure image above text */
  align-items: center;
  text-align: center;
  padding: 10px 0 40px; /* Small top padding, larger bottom */
  background: linear-gradient(135deg, #e0f2f7, #ffffff); /* Light gradient background */
}

.page-promotions__hero-image-wrapper {
  width: 100%;
  max-width: 1200px; /* Constrain hero image width */
  margin-bottom: 20px;
}

.page-promotions__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.page-promotions__main-title {
  font-size: clamp(2em, 3.5vw, 3em); /* Responsive font size */
  font-weight: 700;
  color: #26A9E0; /* Brand color for main title */
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-promotions__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #555555;
}

.page-promotions__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.page-promotions__btn-primary,
.page-promotions__btn-secondary,
.page-promotions__btn-link {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 700;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  white-space: normal; /* Allow button text to wrap */
  word-wrap: break-word; /* Ensure long words break */
  box-sizing: border-box; /* Include padding and border in element's total width and height */
  max-width: 100%; /* Ensure button does not exceed container */
}

.page-promotions__btn-primary {
  background: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-promotions__btn-primary:hover {
  background: #1e87c2;
  border-color: #1e87c2;
}

.page-promotions__btn-secondary {
  background: #ffffff;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-promotions__btn-secondary:hover {
  background: #f0f8ff;
  color: #1e87c2;
  border-color: #1e87c2;
}

.page-promotions__overview-section,
.page-promotions__detail-section,
.page-promotions__faq-section,
.page-promotions__cta-bottom-section {
  padding: 60px 20px;
  text-align: center;
}

.page-promotions__dark-bg {
  background: #26A9E0; /* Main brand color for dark background */
  color: #ffffff; /* White text on dark background */
}

.page-promotions__light-bg {
  background: #ffffff; /* White background */
  color: #333333; /* Dark text on white background */
}

.page-promotions__overview-section .page-promotions__section-title,
.page-promotions__faq-section .page-promotions__section-title {
  color: #ffffff; /* White text for section titles on dark background */
}

.page-promotions__overview-section .page-promotions__section-description,
.page-promotions__faq-section .page-promotions__section-description {
  color: #f0f0f0; /* Light grey text for descriptions on dark background */
}

.page-promotions__section-title {
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-promotions__section-description {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #555555;
}

.page-promotions__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-promotions__promo-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 25px;
  text-align: left;
  display: flex;
  flex-direction: column;
  height: 100%; /* Ensure cards have equal height */
  transition: transform 0.3s ease;
}

.page-promotions__promo-card:hover {
  transform: translateY(-5px);
}

.page-promotions__promo-card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistent images */
  object-fit: cover; /* Crop images to fit */
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-promotions__promo-card-title {
  font-size: 1.4em;
  font-weight: 600;
  color: #26A9E0;
  margin-bottom: 10px;
}

.page-promotions__promo-card-title a {
  color: #26A9E0;
  text-decoration: none;
}

.page-promotions__promo-card-title a:hover {
  text-decoration: underline;
}

.page-promotions__promo-card-text {
  font-size: 0.95em;
  color: #666666;
  margin-bottom: 20px;
  flex-grow: 1; /* Push button to bottom */
}

.page-promotions__btn-link {
  color: #26A9E0;
  border: 1px solid #26A9E0;
  background: transparent;
  padding: 8px 15px;
  border-radius: 5px;
  font-size: 0.9em;
  align-self: flex-start; /* Align button to start */
}

.page-promotions__btn-link:hover {
  background: #26A9E0;
  color: #ffffff;
}

.page-promotions__container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-promotions__sub-title {
  font-size: 1.8em;
  font-weight: 600;
  color: #26A9E0;
  margin-top: 40px;
  margin-bottom: 15px;
  text-align: left;
}

.page-promotions__text-block {
  text-align: left;
  margin-bottom: 20px;
  color: #555555;
}

.page-promotions__list {
  list-style-type: disc;
  padding-left: 25px;
  text-align: left;
  margin-bottom: 30px;
}

.page-promotions__list-item {
  margin-bottom: 10px;
  color: #555555;
}

/* FAQ Section */
.page-promotions__faq-list {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.page-promotions__faq-item {
  background: #ffffff;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  color: #333333;
}

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1em;
  color: #26A9E0; /* Brand color for FAQ questions */
  position: relative;
  list-style: none; /* Remove default details marker */
}

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

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

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

.page-promotions__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: #26A9E0;
  margin-left: 15px;
}

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

.page-promotions__faq-answer {
  padding: 0 25px 20px;
  font-size: 0.95em;
  color: #666666;
  line-height: 1.6;
}

.page-promotions__cta-bottom-section {
  padding-bottom: 80px;
}

/* --- Responsive Styles --- */

/* Mobile general styles */
@media (max-width: 768px) {
  .page-promotions__hero-section {
    padding-top: 10px !important; /* Small top padding for mobile */
    padding-bottom: 30px;
  }

  .page-promotions__hero-image {
    object-fit: contain !important; /* Ensure full image is visible, no cropping */
    height: auto !important; /* Allow height to adjust */
    max-height: 300px !important; /* Max height to prevent excessively tall images */
  }

  .page-promotions__hero-content {
    padding: 0 15px;
  }

  .page-promotions__main-title {
    font-size: 2em;
    margin-bottom: 10px;
  }

  .page-promotions__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-promotions__cta-buttons {
    flex-direction: column !important; /* Stack buttons vertically on mobile */
    gap: 10px;
    width: 100% !important; /* Ensure container takes full width */
    max-width: 100% !important;
    padding: 0 15px !important; /* Add padding to container */
    box-sizing: border-box !important;
  }

  .page-promotions__btn-primary,
  .page-promotions__btn-secondary,
  .page-promotions__btn-link {
    max-width: 100% !important;
    width: 100% !important;
    padding: 10px 15px;
    font-size: 1em;
    white-space: normal !important;
    word-wrap: break-word !important;
    box-sizing: border-box !important;
  }

  .page-promotions__overview-section,
  .page-promotions__detail-section,
  .page-promotions__faq-section,
  .page-promotions__cta-bottom-section {
    padding: 40px 15px;
  }

  .page-promotions__section-title {
    font-size: 1.8em;
    margin-bottom: 15px;
  }

  .page-promotions__section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }

  .page-promotions__promo-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-promotions__promo-card {
    padding: 20px;
  }

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

  .page-promotions__promo-card-title {
    font-size: 1.2em;
  }

  .page-promotions__promo-card-text {
    font-size: 0.9em;
  }

  .page-promotions__sub-title {
    font-size: 1.5em;
    margin-top: 30px;
    margin-bottom: 10px;
  }

  .page-promotions__list {
    padding-left: 20px;
  }

  .page-promotions__list-item {
    font-size: 0.95em;
  }

  .page-promotions__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }

  .page-promotions__faq-answer {
    padding: 0 20px 15px;
    font-size: 0.9em;
  }

  /* Universal image responsive styles for content area */
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* All containers containing images or buttons */
  .page-promotions__section,
  .page-promotions__card,
  .page-promotions__container,
  .page-promotions__cta-buttons,
  .page-promotions__promo-grid,
  .page-promotions__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* Tablet styles (adjustments for wider mobile screens if needed, otherwise inherit from desktop/mobile) */
@media (max-width: 1024px) {
  .page-promotions__hero-section {
    padding-bottom: 30px;
  }
  .page-promotions__main-title {
    font-size: 2.5em;
  }
  .page-promotions__section-title {
    font-size: 2em;
  }
  .page-promotions__promo-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
  }
  .page-promotions__promo-card-image {
    height: 180px;
  }
}