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

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

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

.page-promotions__section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: bold;
  color: #F3F8FF; /* Text Main */
  margin-bottom: 40px;
  line-height: 1.2;
}

.page-promotions__text-content {
  font-size: 16px;
  color: #AFC4E8; /* Text Secondary */
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions__cta-button:hover {
  background: linear-gradient(180deg, #1144A6 0%, #2B73F6 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

.page-promotions__btn-secondary {
  background: transparent;
  color: #4FA8FF; /* Glow color for text */
  border: 2px solid #2B73F6;
  padding: 13px 38px;
}

.page-promotions__btn-secondary:hover {
  background: #113B7A; /* Main color */
  color: #ffffff;
  border-color: #113B7A;
}

.page-promotions__btn-small {
  padding: 10px 25px;
  font-size: 15px;
  margin-top: 15px;
}

/* HERO Section */
.page-promotions__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, main offset from body padding */
  background-color: #08162B; /* Deep Navy */
  overflow: hidden;
}

.page-promotions__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.page-promotions__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-promotions__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.page-promotions__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-promotions__main-title {
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 900;
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  line-height: 1.1;
  text-shadow: 0 0 15px rgba(242, 193, 78, 0.5);
}

.page-promotions__hero-description {
  font-size: 18px;
  color: #AFC4E8; /* Text Secondary */
  max-width: 800px;
  margin: 0 auto 30px auto;
}

/* Introduction Section */
.page-promotions__introduction-section {
  background-color: #08162B; /* Deep Navy */
}

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

.page-promotions__list li {
  background-color: #10233F; /* Card BG */
  margin-bottom: 15px;
  padding: 15px 20px;
  border-radius: 8px;
  font-size: 16px;
  color: #F3F8FF; /* Text Main */
  border-left: 5px solid #2B73F6;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

/* Featured Promotions Grid */
.page-promotions__featured-promos {
  background-color: #08162B; /* Deep Navy */
}

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

.page-promotions__card {
  background-color: #10233F; /* Card BG */
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #1B3357; /* Divider color for border */
}

.page-promotions__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.page-promotions__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-promotions__card-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-promotions__card-title {
  font-size: 22px;
  font-weight: bold;
  color: #F3F8FF; /* Text Main */
  margin-bottom: 10px;
}

.page-promotions__card-title a {
  color: #F3F8FF;
  text-decoration: none;
}

.page-promotions__card-title a:hover {
  color: #4FA8FF; /* Glow */
}

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

/* Promotions by Type (Tabs) */
.page-promotions__promo-types {
  background-color: #08162B; /* Deep Navy */
}

.page-promotions__tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.page-promotions__tab-button {
  background-color: #1B3357; /* Divider color */
  color: #AFC4E8; /* Text Secondary */
  border: 1px solid #244D84; /* Border color */
  padding: 12px 25px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.page-promotions__tab-button:hover {
  background-color: #113B7A; /* Main color */
  color: #F3F8FF;
  border-color: #113B7A;
}

.page-promotions__tab-button--active {
  background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
  color: #ffffff;
  border-color: #2B73F6;
  box-shadow: 0 2px 10px rgba(43, 115, 246, 0.4);
}

.page-promotions__tab-content {
  display: none;
  padding-top: 20px;
}

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

/* Terms & Conditions */
.page-promotions__terms-conditions {
  background-color: #08162B; /* Deep Navy */
}

/* How to Claim */
.page-promotions__how-to-claim {
  background-color: #08162B; /* Deep Navy */
}

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

.page-promotions__numbered-list li {
  counter-increment: step-counter;
  background-color: #10233F; /* Card BG */
  margin-bottom: 15px;
  padding: 20px 25px 20px 60px;
  border-radius: 8px;
  font-size: 16px;
  color: #F3F8FF; /* Text Main */
  position: relative;
  border-left: 5px solid #1D5FD1; /* Auxiliary color */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-promotions__numbered-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #2B73F6; /* Button color */
  color: #ffffff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 16px;
}

.page-promotions__numbered-list li a {
  color: #4FA8FF; /* Glow */
  text-decoration: underline;
}

.page-promotions__numbered-list li a:hover {
  color: #F2C14E; /* Gold */
}

/* Safety & Support */
.page-promotions__safety-support {
  background-color: #08162B; /* Deep Navy */
}

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

/* FAQ Section */
.page-promotions__faq-section {
  background-color: #08162B; /* Deep Navy */
}

.page-promotions__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

details.page-promotions__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #244D84; /* Border color */
  overflow: hidden;
  background: #10233F; /* Card BG */
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
}

details.page-promotions__faq-item summary.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  background-color: #10233F; /* Card BG */
}

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

details.page-promotions__faq-item summary.page-promotions__faq-question:hover {
  background-color: #113B7A; /* Main color */
}

.page-promotions__faq-qtext {
  flex: 1;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #F3F8FF; /* Text Main */
}

.page-promotions__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: #4FA8FF; /* Glow */
  flex-shrink: 0;
  margin-left: 15px;
  width: 30px;
  text-align: center;
}

details.page-promotions__faq-item .page-promotions__faq-answer {
  padding: 0 25px 20px;
  background: #08162B; /* Deep Navy */
  border-top: 1px solid #1B3357; /* Divider */
  border-radius: 0 0 10px 10px;
  font-size: 15px;
  color: #AFC4E8; /* Text Secondary */
  text-align: left;
}

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

/* Latest News/Blog Section */
.page-promotions__latest-news {
  background-color: #08162B; /* Deep Navy */
}

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

.page-promotions__news-card {
  padding: 0;
  overflow: hidden;
}

.page-promotions__news-card .page-promotions__card-image {
  border-radius: 10px 10px 0 0;
  height: 220px;
}

.page-promotions__news-card .page-promotions__card-title {
  font-size: 20px;
  margin: 20px 20px 10px 20px;
  text-align: left;
}

.page-promotions__news-card .page-promotions__card-description {
  font-size: 14px;
  margin: 0 20px 15px 20px;
  text-align: left;
}

.page-promotions__news-date {
  display: block;
  font-size: 13px;
  color: #1D5FD1; /* Auxiliary color */
  text-align: left;
  margin: 0 20px 20px 20px;
}

.page-promotions__view-all {
  margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions__main-title {
    font-size: clamp(30px, 4.5vw, 48px);
  }
  .page-promotions__hero-description {
    font-size: 17px;
  }
  .page-promotions__section {
    padding: 50px 0;
  }
  .page-promotions__section-title {
    font-size: clamp(26px, 3.5vw, 38px);
  }
}

@media (max-width: 768px) {
  .page-promotions__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-promotions__hero-image img {
    border-radius: 8px;
  }
  .page-promotions__main-title {
    font-size: clamp(28px, 6vw, 38px);
  }
  .page-promotions__hero-description {
    font-size: 15px;
    margin-bottom: 25px;
  }
  .page-promotions__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-promotions__btn-small {
    padding: 10px 20px;
    font-size: 14px;
    width: auto !important; /* Allow small buttons to not fill width */
    max-width: 100% !important;
  }

  .page-promotions__section {
    padding: 40px 0;
  }
  .page-promotions__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-promotions__section-title {
    font-size: clamp(24px, 5vw, 32px);
    margin-bottom: 30px;
  }
  .page-promotions__text-content {
    font-size: 15px;
  }
  .page-promotions__card {
    padding: 20px;
  }
  .page-promotions__card-image {
    height: 180px;
  }
  .page-promotions__card-title {
    font-size: 19px;
  }
  .page-promotions__card-description {
    font-size: 14px;
  }

  .page-promotions__promo-grid,
  .page-promotions__tab-content--active,
  .page-promotions__safety-grid,
  .page-promotions__news-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .page-promotions__tabs {
    gap: 10px;
  }
  .page-promotions__tab-button {
    padding: 10px 20px;
    font-size: 15px;
  }

  .page-promotions__list li,
  .page-promotions__numbered-list li {
    font-size: 15px;
    padding: 15px 15px 15px 55px;
  }

  .page-promotions__faq-list {
    margin-top: 30px;
  }
  details.page-promotions__faq-item summary.page-promotions__faq-question {
    padding: 15px;
  }
  .page-promotions__faq-qtext {
    font-size: 16px;
  }
  .page-promotions__faq-toggle {
    font-size: 24px;
    width: 25px;
    margin-left: 10px;
  }
  details.page-promotions__faq-item .page-promotions__faq-answer {
    padding: 0 15px 15px;
    font-size: 14px;
  }

  /* Ensure all images are responsive */
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  /* Buttons and button containers */
  .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;
    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;
  }
  .page-promotions__cta-buttons {
    display: flex;
    flex-direction: column; 
  }
}

@media (max-width: 480px) {
  .page-promotions__main-title {
    font-size: clamp(24px, 7vw, 32px);
  }
  .page-promotions__hero-description {
    font-size: 14px;
  }
  .page-promotions__cta-button {
    font-size: 15px;
    padding: 10px 25px;
  }
  .page-promotions__section-title {
    font-size: clamp(22px, 6vw, 28px);
  }
  .page-promotions__tab-button {
    font-size: 14px;
    padding: 10px 15px;
  }
}