:root {
  --primary-color: #113B7A;
  --secondary-color: #1D5FD1;
  --button-gradient: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
  --card-bg: #10233F;
  --text-main: #F3F8FF;
  --text-secondary: #AFC4E8;
  --border-color: #244D84;
  --glow-color: #4FA8FF;
  --gold-color: #F2C14E;
  --divider-color: #1B3357;
  --deep-navy: #08162B;
}

.page-promotions {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-main); /* Body background is dark, so text is light */
  background-color: var(--deep-navy);
}

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

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

.page-promotions__section-title {
  font-size: 36px;
  font-weight: bold;
  color: var(--gold-color);
  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: var(--gold-color);
  border-radius: 2px;
}

.page-promotions__sub-title {
  font-size: 24px;
  font-weight: bold;
  color: var(--text-main);
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-promotions__text-block {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  text-align: justify;
}

.page-promotions__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--button-gradient);
  color: var(--text-main);
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
  max-width: 100%; /* Ensure responsiveness */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions__cta-button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-promotions__cta-button--large {
  padding: 18px 50px;
  font-size: 20px;
  margin-top: 50px;
}

.page-promotions__btn-primary {
  display: inline-block;
  padding: 12px 30px;
  background: var(--button-gradient);
  color: var(--text-main);
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions__btn-primary:hover {
  opacity: 0.9;
}

.page-promotions__btn-secondary {
  display: inline-block;
  padding: 10px 25px;
  background: transparent;
  color: var(--gold-color);
  border: 2px solid var(--gold-color);
  text-decoration: none;
  border-radius: 5px;
  font-size: 15px;
  font-weight: bold;
  margin-top: 15px;
  transition: all 0.3s ease;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions__btn-secondary:hover {
  background: var(--gold-color);
  color: var(--deep-navy);
}

/* 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, body handles header offset */
  background-color: var(--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 10px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border-color);
}

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

.page-promotions__main-title {
  font-size: 52px;
  font-weight: 900;
  color: var(--gold-color);
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 15px rgba(242, 193, 78, 0.6);
}

.page-promotions__hero-description {
  font-size: 22px;
  color: var(--text-secondary);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Intro Section */
.page-promotions__intro-section {
  background-color: var(--deep-navy);
  border-bottom: 1px solid var(--divider-color);
}

.page-promotions__intro-section .page-promotions__text-block {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: 18px;
}

/* Types Section */
.page-promotions__types-section {
  background-color: var(--deep-navy);
}

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

.page-promotions__card {
  background-color: var(--card-bg);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
}

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

.page-promotions__card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid var(--divider-color);
}

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

.page-promotions__card-title {
  font-size: 22px;
  font-weight: bold;
  color: var(--text-main);
  margin-bottom: 15px;
}

.page-promotions__card-description {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Current Offers Section */
.page-promotions__current-offers {
  background-color: var(--deep-navy);
}

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

.page-promotions__offer-item {
  padding: 30px;
  background-color: var(--card-bg);
  border-radius: 10px;
  border: 1px solid var(--border-color);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
}

.page-promotions__offer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--divider-color);
  padding-bottom: 10px;
}

.page-promotions__offer-title {
  font-size: 24px;
  font-weight: bold;
  color: var(--gold-color);
  margin: 0;
}

.page-promotions__offer-status {
  background-color: #28a745;
  color: #fff;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 14px;
  font-weight: bold;
}

.page-promotions__offer-description {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions__offer-details {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
  border-top: 1px solid var(--divider-color);
  padding-top: 15px;
}

.page-promotions__offer-details li {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.page-promotions__detail-label {
  color: var(--text-main);
}

/* How to Claim Section */
.page-promotions__how-to-claim {
  background-color: var(--deep-navy);
  border-top: 1px solid var(--divider-color);
}

.page-promotions__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-promotions__steps-list li {
  background-color: var(--card-bg);
  margin-bottom: 20px;
  padding: 30px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  counter-increment: step-counter;
  padding-left: 80px;
}

.page-promotions__steps-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: 30px;
  top: 30px;
  background: var(--gold-color);
  color: var(--deep-navy);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-promotions__step-title {
  font-size: 22px;
  color: var(--text-main);
  margin-top: 0;
  margin-bottom: 10px;
}

.page-promotions__steps-list li p {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 0;
}

.page-promotions__steps-list li a {
  color: var(--gold-color);
  text-decoration: none;
  font-weight: bold;
}

.page-promotions__steps-list li a:hover {
  text-decoration: underline;
}

/* Terms and Conditions Section */
.page-promotions__terms-conditions {
  background-color: var(--deep-navy);
  border-top: 1px solid var(--divider-color);
}

.page-promotions__terms-conditions p {
  margin-bottom: 15px;
}

.page-promotions__terms-conditions a {
  color: var(--gold-color);
  text-decoration: none;
  font-weight: bold;
}

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

/* FAQ Section */
.page-promotions__faq-section {
  background-color: var(--deep-navy);
  border-top: 1px solid var(--divider-color);
}

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

details.page-promotions__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  background: var(--card-bg);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

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;
  color: var(--text-main);
  font-weight: bold;
  font-size: 18px;
}

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: rgba(var(--primary-color-rgb), 0.2); /* Using a rgba version of primary color for hover */
}

.page-promotions__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: var(--text-main);
}

.page-promotions__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: var(--gold-color);
  flex-shrink: 0;
  margin-left: 15px;
  width: 30px;
  text-align: center;
}

details.page-promotions__faq-item .page-promotions__faq-answer {
  padding: 0 25px 25px;
  background: rgba(var(--card-bg-rgb), 0.7); /* Slightly lighter background for answer */
  border-radius: 0 0 8px 8px;
  color: var(--text-secondary);
  font-size: 16px;
}

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

/* Why Choose Us Section */
.page-promotions__why-choose-us {
  background-color: var(--deep-navy);
  border-top: 1px solid var(--divider-color);
  text-align: center;
}

.page-promotions__feature-card {
  padding: 30px;
  text-align: center;
}

.page-promotions__feature-card .page-promotions__feature-title {
  font-size: 24px;
  color: var(--gold-color);
  margin-bottom: 15px;
}

.page-promotions__feature-card .page-promotions__feature-description {
  font-size: 16px;
  color: var(--text-secondary);
}

/* All images responsive base */
.page-promotions img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-promotions__main-title {
    font-size: 44px;
  }
  .page-promotions__hero-description {
    font-size: 20px;
  }
  .page-promotions__section-title {
    font-size: 32px;
  }
  .page-promotions__grid-container {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-promotions__offer-list {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  }
}

@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: 34px;
  }
  .page-promotions__hero-description {
    font-size: 17px;
  }
  .page-promotions__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-promotions__cta-button--large {
    padding: 15px 35px;
    font-size: 18px;
  }
  .page-promotions__btn-primary,
  .page-promotions__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !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: 28px;
    margin-bottom: 30px;
  }
  .page-promotions__sub-title {
    font-size: 20px;
  }
  .page-promotions__text-block {
    font-size: 16px;
  }
  .page-promotions__card img {
    height: 200px;
  }
  .page-promotions__card-title {
    font-size: 20px;
  }
  .page-promotions__card-description {
    font-size: 14px;
  }
  .page-promotions__offer-list,
  .page-promotions__grid-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-promotions__offer-title {
    font-size: 20px;
  }
  .page-promotions__offer-description {
    font-size: 15px;
  }
  .page-promotions__steps-list li {
    padding: 20px 20px 20px 60px;
  }
  .page-promotions__steps-list li::before {
    left: 20px;
    top: 20px;
    width: 35px;
    height: 35px;
    font-size: 20px;
  }
  .page-promotions__step-title {
    font-size: 18px;
  }
  .page-promotions__steps-list li p {
    font-size: 15px;
  }
  details.page-promotions__faq-item summary.page-promotions__faq-question {
    padding: 15px 20px;
    font-size: 16px;
  }
  .page-promotions__faq-qtext {
    font-size: 16px;
  }
  .page-promotions__faq-toggle {
    font-size: 24px;
    width: 25px;
  }
  details.page-promotions__faq-item .page-promotions__faq-answer {
    padding: 0 20px 20px;
  }
  .page-promotions__feature-card .page-promotions__feature-title {
    font-size: 20px;
  }
  .page-promotions__feature-card .page-promotions__feature-description {
    font-size: 15px;
  }
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .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;
  }
}

@media (max-width: 480px) {
  .page-promotions__main-title {
    font-size: 28px;
  }
  .page-promotions__hero-description {
    font-size: 16px;
  }
  .page-promotions__section-title {
    font-size: 24px;
  }
  .page-promotions__offer-title {
    font-size: 18px;
  }
  .page-promotions__offer-status {
    font-size: 12px;
    padding: 3px 8px;
  }
  .page-promotions__offer-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .page-promotions__offer-status {
    margin-top: 10px;
  }
}