.page-promotions {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #F3F8FF; /* Text Main */
  background-color: transparent; /* Body background is handled by shared.css var(--deep-navy) */
}

.page-promotions__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  overflow: hidden;
  background: linear-gradient(180deg, #113B7A 0%, #08162B 100%); /* Deep Navy to Main Blue */
}

.page-promotions__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  margin-bottom: 20px; /* Space between image and content */
}

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

.page-promotions__hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  color: #F3F8FF; /* Text Main */
}

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

.page-promotions__intro-text {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #AFC4E8; /* Text Secondary */
}

.page-promotions__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
  box-sizing: border-box;
}

.page-promotions__btn-primary {
  background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
  color: #ffffff;
  border: none;
}

.page-promotions__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions__btn-secondary {
  background: #10233F; /* Card BG */
  color: #F2C14E; /* Gold */
  border: 2px solid #244D84; /* Border */
}

.page-promotions__btn-secondary:hover {
  background: #1B3357; /* Divider */
  color: #F3F8FF; /* Text Main */
  transform: translateY(-2px);
}

.page-promotions__section {
  padding: 80px 20px;
  text-align: center;
  overflow: hidden;
  box-sizing: border-box;
}

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

.page-promotions__content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.page-promotions__paragraph {
  font-size: 1rem;
  color: #AFC4E8; /* Text Secondary */
  max-width: 800px;
  margin: 0 auto;
  text-align: justify;
}

.page-promotions__content-image {
  width: 100%;
  height: auto;
  display: block;
  max-width: 800px; /* Recommended content image size */
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

.page-promotions__overview-section {
  background-color: #08162B; /* Deep Navy - Dark background */
  color: #F3F8FF; /* Text Main */
}

.page-promotions__dark-section {
  background-color: #113B7A; /* Main Blue - Dark background */
  color: #F3F8FF; /* Text Main */
}

.page-promotions__light-bg {
  background-color: #08162B; /* Deep Navy - Dark background */
  color: #F3F8FF; /* Text Main */
}

.page-promotions__promos-list {
  padding-bottom: 80px;
}

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

.page-promotions__promo-card {
  background-color: #10233F; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  text-align: left;
  border: 1px solid #244D84; /* Border */
}

.page-promotions__card-image {
  width: 100%;
  height: 250px;
  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: #F2C14E; /* Gold */
  margin-bottom: 15px;
  font-weight: 600;
}

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

.page-promotions__how-to-claim-section {
  padding-top: 60px;
}

.page-promotions__numbered-list {
  list-style: none;
  counter-reset: my-counter;
  max-width: 800px;
  margin: 0 auto 30px auto;
  padding: 0;
  text-align: left;
}

.page-promotions__numbered-list li {
  counter-increment: my-counter;
  margin-bottom: 20px;
  padding-left: 50px;
  position: relative;
  font-size: 1rem;
  color: #F3F8FF; /* Text Main */
}

.page-promotions__numbered-list li::before {
  content: counter(my-counter);
  position: absolute;
  left: 0;
  top: 0;
  background-color: #1D5FD1; /* Accent Blue */
  color: #ffffff;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 1.1rem;
}

.page-promotions__numbered-list strong {
  color: #F2C14E; /* Gold */
}

.page-promotions__bullet-list {
  list-style: none;
  max-width: 800px;
  margin: 0 auto 30px auto;
  padding: 0;
  text-align: left;
}

.page-promotions__bullet-list li {
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  font-size: 1rem;
  color: #AFC4E8; /* Text Secondary */
}

.page-promotions__bullet-list li::before {
  content: '⚡'; /* Unicode lightning bolt for bullet */
  position: absolute;
  left: 0;
  top: 0;
  color: #F2C14E; /* Gold */
  font-size: 1.2rem;
}

.page-promotions__faq-section {
  padding-top: 60px;
  padding-bottom: 80px;
}

.page-promotions__faq-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.page-promotions__faq-item {
  background-color: #10233F; /* Card BG */
  border: 1px solid #244D84; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  color: #F3F8FF; /* Text Main */
  position: relative;
  transition: background-color 0.3s ease;
}

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

.page-promotions__faq-question:hover {
  background-color: #1B3357; /* Divider - slightly darker */
}

.page-promotions__faq-qtext {
  flex-grow: 1;
  padding-right: 15px;
}

.page-promotions__faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  color: #F2C14E; /* Gold */
  transition: transform 0.3s ease;
}

.page-promotions__faq-item[open] .page-promotions__faq-toggle {
  transform: rotate(45deg);
}

.page-promotions__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1rem;
  color: #AFC4E8; /* Text Secondary */
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-promotions__faq-item[open] .page-promotions__faq-answer {
  max-height: 500px; /* Adjust as needed for content length */
  padding-top: 10px;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .page-promotions {
    font-size: 16px;
    line-height: 1.6;
  }

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

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

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

  .page-promotions__intro-text {
    font-size: 1rem;
  }

  .page-promotions__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
  }

  .page-promotions__section {
    padding: 50px 15px;
  }

  .page-promotions__section-title {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
    margin-bottom: 30px;
  }

  .page-promotions__content-wrapper,
  .page-promotions__grid-container,
  .page-promotions__faq-container {
    padding-left: 15px;
    padding-right: 15px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-promotions__hero-image-wrapper,
  .page-promotions__content-wrapper,
  .page-promotions__grid-container,
  .page-promotions__promo-card,
  .page-promotions__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-promotions__promo-card {
    margin-bottom: 20px;
  }

  .page-promotions__card-image {
    height: 200px;
  }

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

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

  .page-promotions__numbered-list,
  .page-promotions__bullet-list {
    padding-left: 0;
  }

  .page-promotions__numbered-list li,
  .page-promotions__bullet-list li {
    padding-left: 40px;
    font-size: 0.95rem;
  }

  .page-promotions__numbered-list li::before {
    width: 30px;
    height: 30px;
    font-size: 1rem;
  }

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

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