: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 {
  color: var(--text-main);
  background-color: var(--deep-navy);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.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 main offset */
  background: linear-gradient(180deg, var(--deep-navy) 0%, var(--primary-color) 100%);
}

.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%; /* Ensure it takes full width within max-width */
}

.page-promotions__hero-image-wrapper {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions__hero-image-wrapper img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
}

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

.page-promotions__main-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

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

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

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

.page-promotions__section-title {
  font-size: clamp(24px, 3.5vw, 40px);
  color: var(--gold-color);
  text-align: center;
  margin-bottom: 30px;
  font-weight: 700;
  padding-top: 40px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.page-promotions__section-description {
  font-size: 17px;
  color: var(--text-secondary);
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
}

.page-promotions__overview-section,
.page-promotions__offers-section,
.page-promotions__how-to-claim-section,
.page-promotions__terms-section,
.page-promotions__faq-section,
.page-promotions__why-choose-section {
  padding: 60px 0;
}

.page-promotions__offers-section--current {
    background-color: var(--card-bg);
}

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

.page-promotions__offer-card {
  background-color: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
}

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

.page-promotions__offer-card img {
  width: 100%;
  height: 220px; /* Fixed height for consistency */
  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;
  color: var(--text-main);
  margin-bottom: 15px;
  font-weight: 600;
}

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

.page-promotions__card-button {
  display: inline-block;
  padding: 12px 25px;
  background: var(--button-gradient);
  color: #ffffff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  align-self: flex-start;
}

.page-promotions__card-button:hover {
  background: linear-gradient(180deg, #1144A6 0%, #2B73F6 100%); /* Invert gradient on hover */
  transform: translateY(-1px);
}

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

.page-promotions__step-card {
  background-color: var(--card-bg);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease;
}

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

.page-promotions__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--gold-color);
  color: var(--deep-navy);
  border-radius: 50%;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

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

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

.page-promotions__cta-center {
    text-align: center;
    margin-top: 50px;
}

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

.page-promotions__terms-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__terms-list li {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

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

.page-promotions__terms-list li p strong {
    color: var(--text-main);
}

.page-promotions__read-more-link {
  display: block;
  text-align: center;
  margin-top: 30px;
  font-size: 16px;
  color: var(--glow-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-promotions__read-more-link:hover {
  color: var(--gold-color);
}

/* FAQ Section */
details.page-promotions__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  background: var(--card-bg);
  box-shadow: 0 4px 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;
}

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), 0.1); /* Using rgba with custom property for primary color */
}

.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: 20px;
  width: 30px;
  text-align: center;
  transition: transform 0.3s ease;
}

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

details.page-promotions__faq-item .page-promotions__faq-answer {
  padding: 0 25px 20px;
  background: rgba(8, 22, 43, 0.5); /* Using rgba with hardcoded deep-navy for transparency */
  border-top: 1px solid var(--divider-color);
  border-radius: 0 0 10px 10px;
}

details.page-promotions__faq-item .page-promotions__faq-answer p {
    font-size: 16px;
    color: var(--text-secondary);
    margin: 0;
}

.page-promotions__why-choose-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-promotions__why-choose-list li {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 25px;
  display: flex;
  align-items: flex-start;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-promotions__why-choose-list li:hover {
    transform: translateY(-5px);
}

.page-promotions__why-choose-list li img {
  
  
  min-
  min-
  margin-right: 20px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-color);
}

.page-promotions__list-content h3 {
  font-size: 20px;
  color: var(--text-main);
  margin-top: 0;
  margin-bottom: 10px;
}

.page-promotions__list-content p {
  font-size: 15px;
  color: var(--text-secondary);
  margin: 0;
}

.page-promotions__highlight-text {
    color: var(--gold-color);
    font-weight: bold;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-promotions__hero-image-wrapper img {
    height: 500px;
  }
  .page-promotions__offer-card img {
    
  }
}

@media (max-width: 768px) {
  .page-promotions__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-promotions__main-title {
    font-size: clamp(24px, 6vw, 36px);
  }

  .page-promotions__hero-description {
    font-size: 16px;
  }

  .page-promotions__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    width: 100% !important; /* Mobile full width */
    max-width: 300px !important; /* Max width for button */
    margin-left: auto;
    margin-right: auto;
    display: block;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-promotions__section-title {
    font-size: clamp(20px, 5vw, 32px);
    padding-top: 30px;
  }

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

  .page-promotions__overview-section,
  .page-promotions__offers-section,
  .page-promotions__how-to-claim-section,
  .page-promotions__terms-section,
  .page-promotions__faq-section,
  .page-promotions__why-choose-section {
    padding: 40px 0;
  }

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

  .page-promotions__offer-card img {
    
  }

  .page-promotions__card-content {
    padding: 20px;
  }

  .page-promotions__card-title {
    font-size: 20px;
  }

  .page-promotions__card-text {
    font-size: 15px;
  }

  .page-promotions__card-button {
    padding: 10px 20px;
    font-size: 15px;
  }

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

  .page-promotions__step-card {
    padding: 25px;
  }

  .page-promotions__step-number {
    width: 50px;
    height: 50px;
    font-size: 28px;
  }

  .page-promotions__step-title {
    font-size: 20px;
  }

  .page-promotions__step-text {
    font-size: 15px;
  }

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

  .page-promotions__terms-list li {
    padding: 15px 20px;
  }

  .page-promotions__terms-list li p {
    font-size: 15px;
  }

  details.page-promotions__faq-item summary.page-promotions__faq-question {
    padding: 15px 20px;
  }
  .page-promotions__faq-qtext {
    font-size: 16px;
  }
  .page-promotions__faq-toggle {
    font-size: 24px;
    width: 25px;
    margin-left: 15px;
  }
  details.page-promotions__faq-item .page-promotions__faq-answer {
    padding: 0 20px 15px;
  }
  details.page-promotions__faq-item .page-promotions__faq-answer p {
    font-size: 15px;
  }
  .page-promotions__why-choose-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-promotions__why-choose-list li {
    padding: 20px;
  }
  .page-promotions__why-choose-list li img {
    
    
    min-
    min-
    margin-right: 15px;
  }
  .page-promotions__list-content h3 {
    font-size: 18px;
  }
  .page-promotions__list-content p {
    font-size: 14px;
  }
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-promotions__section,
  .page-promotions__card,
  .page-promotions__container,
  .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;
  }
}