.page-promotions {
  font-family: 'Arial', sans-serif;
  color: #ffffff; /* Text color for dark body background */
  background-color: transparent; /* Body background is handled by shared.css #121212 */
}

.page-promotions__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 500px;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 40px;
  overflow: hidden;
}

.page-promotions__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.page-promotions__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-align: center;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for readability */
  border-radius: 10px;
  margin-top: 50px; /* Push content down from top if hero image starts high */
}

.page-promotions__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-promotions__hero-description {
  font-size: 1.2rem;
  color: #f0f0f0;
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-promotions__cta-button {
  display: inline-block;
  background-color: #26A9E0;
  color: #FFFFFF;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-promotions__cta-button:hover {
  background-color: #1e87c0;
}

.page-promotions__cta-button--small {
  padding: 10px 20px;
  font-size: 1rem;
}

.page-promotions__cta-button--large {
  padding: 18px 35px;
  font-size: 1.2rem;
}

.page-promotions__section {
  padding: 60px 0;
}

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

.page-promotions__section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
}

.page-promotions__text-block {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #f0f0f0;
  text-align: justify;
  margin-bottom: 30px;
}

.page-promotions__image {
  display: block;
  margin: 0 auto 30px auto;
  border-radius: 8px;
  max-width: 100%;
  height: auto;
}

.page-promotions__image--large {
  max-width: 100%;
  width: 100%;
}

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

.page-promotions__card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  min-height: 550px; /* Ensure cards have similar height */
}

.page-promotions__card-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  width: 100%;
  min-height: 200px; /* Minimum size for card images */
}

.page-promotions__card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-promotions__card-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #f0f0f0;
  flex-grow: 1;
  text-align: justify;
  margin-bottom: 20px;
}

.page-promotions__card-button {
  display: inline-block;
  background-color: #FFFFFF;
  color: #26A9E0;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: 2px solid #26A9E0;
  cursor: pointer;
}

.page-promotions__card-button:hover {
  background-color: #26A9E0;
  color: #FFFFFF;
}

.page-promotions__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-promotions__list-item {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #f0f0f0;
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
}

.page-promotions__list-item::before {
  content: '✔';
  color: #26A9E0;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-promotions__content-wrapper {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.page-promotions__text-content {
  flex: 1;
}

.page-promotions__image--right {
  flex-shrink: 0;
  max-width: 45%;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

.page-promotions__steps-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-promotions__steps-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-left: 5px solid #26A9E0;
  padding: 20px 25px;
  border-radius: 5px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #f0f0f0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-promotions__steps-item strong {
  color: #FFFFFF;
  display: block;
  margin-bottom: 5px;
  font-size: 1.2rem;
}

.page-promotions__faq-list {
  margin-top: 30px;
}

.page-promotions__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-promotions__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #FFFFFF;
  background-color: rgba(38, 169, 224, 0.8);
  cursor: pointer;
  list-style: none;
  transition: background-color 0.3s ease;
}

.page-promotions__faq-item summary:hover {
  background-color: #26A9E0;
}

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

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

.page-promotions__faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  margin-left: 15px;
}

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

.page-promotions__faq-answer {
  padding: 20px 25px;
  font-size: 1rem;
  line-height: 1.7;
  color: #f0f0f0;
  background-color: rgba(255, 255, 255, 0.05);
}

.page-promotions__cta-banner-section {
  position: relative;
  padding: 80px 0;
  text-align: center;
  overflow: hidden;
}

.page-promotions__cta-banner-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  filter: brightness(0.6); /* Darken image for text readability */
}

.page-promotions__cta-banner-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

.page-promotions__cta-banner-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.page-promotions__cta-banner-description {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #f0f0f0;
  margin-bottom: 40px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-promotions__hero-content {
    margin-top: 30px;
  }

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

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

  .page-promotions__section-title {
    font-size: 2rem;
  }

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

  .page-promotions__content-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .page-promotions__image--right {
    max-width: 80%;
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .page-promotions__hero-section {
    min-height: 400px;
    padding-bottom: 20px;
  }

  .page-promotions__hero-content {
    margin-top: 20px;
    padding: 15px;
  }

  .page-promotions__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

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

  .page-promotions__cta-button {
    padding: 12px 25px;
    font-size: 1rem;
  }

  .page-promotions__section {
    padding: 40px 0;
  }

  .page-promotions__section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .page-promotions__text-block {
    font-size: 1rem;
    margin-bottom: 20px;
  }

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

  .page-promotions__card {
    padding: 20px;
    min-height: auto;
  }

  .page-promotions__card-title {
    font-size: 1.2rem;
  }

  .page-promotions__card-description {
    font-size: 0.95rem;
  }

  .page-promotions__card-image {
    min-height: 180px;
  }

  .page-promotions__list-item {
    font-size: 1rem;
    padding-left: 20px;
  }

  .page-promotions__list-item::before {
    font-size: 0.9rem;
  }

  .page-promotions__image--right {
    max-width: 100%;
  }

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

  .page-promotions__steps-item strong {
    font-size: 1.1rem;
  }

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

  .page-promotions__faq-answer {
    padding: 15px 20px;
    font-size: 0.95rem;
  }

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

  .page-promotions__cta-banner-title {
    font-size: 2rem;
  }

  .page-promotions__cta-banner-description {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .page-promotions__cta-button--large {
    padding: 15px 30px;
    font-size: 1.1rem;
  }

  /* Mobile specific overrides for images, videos, and buttons */
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-promotions video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-promotions__section,
  .page-promotions__container,
  .page-promotions__card,
  .page-promotions__content-wrapper,
  .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;
    overflow-x: hidden !important; /* Ensure no horizontal scroll */
  }

  .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;
    margin-bottom: 10px;
  }

  .page-promotions__card-button {
    width: auto !important; /* Allow card buttons to adjust width */
    max-width: 100% !important;
  }

  .page-promotions__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .page-promotions__video-section {
    padding-top: 10px !important;
  }

  .page-promotions__hero-image {
    filter: brightness(0.5);
  }
}

/* Color Contrast Fixes (if needed, ensure these are robust) */
.page-promotions a {
  color: #26A9E0;
}

.page-promotions a:hover {
  color: #1e87c0;
}

.page-promotions strong {
  color: #FFFFFF;
}

.page-promotions__card-description a,
.page-promotions__steps-item a {
  color: #26A9E0;
  text-decoration: underline;
}

.page-promotions__card-description a:hover,
.page-promotions__steps-item a:hover {
  color: #1e87c0;
}

.page-promotions__cta-banner-image {
  filter: brightness(0.4); /* Further darken for better text contrast */
}