.page-promotions {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333;
  background-color: #F5F7FA;
}

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

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

.page-promotions__section-title {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 700;
  margin-bottom: 20px;
  color: #E53935;
  line-height: 1.3;
}

.page-promotions__section-description {
  font-size: 18px;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #333333;
}

.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, header offset handled by body */
  background-color: #F5F7FA;
}

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

.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 24px rgba(0, 0, 0, 0.15);
}

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

.page-promotions__hero-content h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  color: #E53935;
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-promotions__hero-content p {
  font-size: 20px;
  line-height: 1.7;
  color: #333333;
  max-width: 900px;
  margin: 0 auto 30px auto;
}

.page-promotions__cta-button {
  display: inline-block;
  padding: 16px 45px;
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(229, 57, 53, 0.4);
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(229, 57, 53, 0.6);
  opacity: 0.9;
}

.page-promotions__light-bg {
  background-color: #F5F7FA;
  color: #333333;
}

.page-promotions__dark-bg {
  background-color: #E53935;
  color: #ffffff;
}

.page-promotions__dark-bg .page-promotions__section-title,
.page-promotions__dark-bg .page-promotions__section-description {
  color: #ffffff;
}

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

.page-promotions__introduction-section .page-promotions__feature-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.page-promotions__introduction-section .page-promotions__feature-item:hover {
  transform: translateY(-5px);
}

.page-promotions__introduction-section .page-promotions__feature-item img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-promotions__introduction-section .page-promotions__feature-item h3 {
  font-size: 24px;
  color: #E53935;
  margin-bottom: 15px;
}

.page-promotions__introduction-section .page-promotions__feature-item p {
  font-size: 16px;
  color: #555555;
}

.page-promotions__quick-access-section .page-promotions__button-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.page-promotions__btn-primary,
.page-promotions__btn-secondary {
  display: inline-block;
  padding: 14px 30px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 17px;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-promotions__btn-primary {
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
  color: #ffffff;
  border: 2px solid transparent;
  box-shadow: 0 4px 12px rgba(229, 57, 53, 0.3);
}

.page-promotions__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(229, 57, 53, 0.5);
}

.page-promotions__btn-secondary {
  background: #ffffff;
  color: #E53935;
  border: 2px solid #E53935;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.page-promotions__btn-secondary:hover {
  background: #f0f0f0;
  color: #FF5A4F;
  border-color: #FF5A4F;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

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

.page-promotions__promo-card.page-promotions__card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-promotions__promo-card.page-promotions__card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-promotions__promo-card.page-promotions__card .page-promotions__card-content {
  padding: 25px;
}

.page-promotions__promo-card.page-promotions__card h3 {
  font-size: 22px;
  color: #E53935;
  margin-bottom: 15px;
  line-height: 1.4;
}

.page-promotions__promo-card.page-promotions__card p {
  font-size: 16px;
  color: #555555;
  margin-bottom: 20px;
}

.page-promotions__btn-link {
  display: inline-block;
  color: #E53935;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition: color 0.3s ease;
}

.page-promotions__btn-link::after {
  content: ' \2192'; /* Right arrow */
  margin-left: 5px;
  transition: margin-left 0.3s ease;
}

.page-promotions__btn-link:hover {
  color: #FF5A4F;
}

.page-promotions__btn-link:hover::after {
  margin-left: 10px;
}

.page-promotions__how-to-claim-section .page-promotions__step-by-step {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-promotions__how-to-claim-section .page-promotions__step-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-promotions__how-to-claim-section .page-promotions__step-item .page-promotions__step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #FF5A4F;
  color: #ffffff;
  font-size: 32px;
  font-weight: bold;
  border-radius: 50%;
  margin: 0 auto 20px auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions__how-to-claim-section .page-promotions__step-item h3 {
  font-size: 22px;
  color: #ffffff;
  margin-bottom: 15px;
}

.page-promotions__how-to-claim-section .page-promotions__step-item p {
  font-size: 16px;
  color: #f0f0f0;
}

.page-promotions__how-to-claim-section .page-promotions__step-item p a {
  color: #FFDDC1;
  text-decoration: underline;
}

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

.page-promotions__terms-section .page-promotions__terms-list li {
  background: #ffffff;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  font-size: 17px;
  color: #333333;
  line-height: 1.7;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-promotions__terms-section .page-promotions__terms-list li strong {
  color: #E53935;
}

.page-promotions__terms-section .page-promotions__read-more-terms {
  font-size: 17px;
  margin-top: 30px;
  color: #555555;
}

.page-promotions__terms-section .page-promotions__read-more-terms a {
  color: #E53935;
  text-decoration: underline;
  font-weight: bold;
}

.page-promotions__security-support-section .page-promotions__support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-promotions__security-support-section .page-promotions__support-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-promotions__security-support-section .page-promotions__support-item img {
  
  height: auto;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 8px rgba(255,255,255,0.3));
}

.page-promotions__security-support-section .page-promotions__support-item h3 {
  font-size: 22px;
  color: #ffffff;
  margin-bottom: 15px;
}

.page-promotions__security-support-section .page-promotions__support-item p {
  font-size: 16px;
  color: #f0f0f0;
}

.page-promotions__security-support-section .page-promotions__contact-cta {
  margin-top: 50px;
}

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

details.page-promotions__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #e0e0e0;
  overflow: hidden;
  background: #fff;
}

details.page-promotions__faq-item summary.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  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: #f5f5f5;
}

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

.page-promotions__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #E53935;
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}

details.page-promotions__faq-item .page-promotions__faq-answer {
  padding: 0 20px 20px;
  background: #f9f9f9;
  border-radius: 0 0 5px 5px;
  font-size: 16px;
  color: #555555;
}

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

.page-promotions__news-card.page-promotions__card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-promotions__news-card.page-promotions__card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-promotions__news-card.page-promotions__card .page-promotions__card-content {
  padding: 25px;
}

.page-promotions__news-card.page-promotions__card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  line-height: 1.4;
}

.page-promotions__news-card.page-promotions__card h3 a {
  color: #E53935;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promotions__news-card.page-promotions__card h3 a:hover {
  color: #FF5A4F;
  text-decoration: underline;
}

.page-promotions__news-card.page-promotions__card p {
  font-size: 15px;
  color: #555555;
  margin-bottom: 15px;
}

.page-promotions__news-card.page-promotions__card .page-promotions__news-date {
  font-size: 14px;
  color: #888888;
}

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

/* Responsive styles */
@media (max-width: 1024px) {
  .page-promotions__hero-content h1 {
    font-size: clamp(30px, 4.5vw, 42px);
  }
  .page-promotions__hero-content p {
    font-size: 18px;
  }
  .page-promotions__cta-button {
    padding: 14px 40px;
    font-size: 18px;
  }
  .page-promotions__section-title {
    font-size: clamp(26px, 3.5vw, 34px);
  }
  .page-promotions__section-description {
    font-size: 16px;
  }
  .page-promotions__promo-card.page-promotions__card img {
    height: 220px;
  }
  .page-promotions__promo-card.page-promotions__card h3 {
    font-size: 20px;
  }
  .page-promotions__promo-card.page-promotions__card p {
    font-size: 15px;
  }
  .page-promotions__faq-qtext {
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .page-promotions__section {
    padding: 40px 0;
  }
  .page-promotions__container {
    padding: 0 15px;
  }
  .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__hero-content h1 {
    font-size: clamp(28px, 6vw, 36px);
  }
  .page-promotions__hero-content p {
    font-size: 16px;
  }
  .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 img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-promotions__section,
  .page-promotions__card,
  .page-promotions__container,
  .page-promotions__button-group,
  .page-promotions__cta-buttons,
  .page-promotions__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-promotions__button-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-promotions__btn-primary,
  .page-promotions__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
  }
  .page-promotions__introduction-section .page-promotions__feature-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions__promo-card-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions__promo-card.page-promotions__card img {
    
  }
  .page-promotions__how-to-claim-section .page-promotions__step-by-step {
    grid-template-columns: 1fr;
  }
  .page-promotions__security-support-section .page-promotions__support-grid {
    grid-template-columns: 1fr;
  }
  details.page-promotions__faq-item summary.page-promotions__faq-question {
    padding: 15px;
  }
  .page-promotions__faq-qtext {
    font-size: 15px;
  }
  .page-promotions__news-grid {
    grid-template-columns: 1fr;
  }
  .page-promotions__news-card.page-promotions__card img {
    
  }
  .page-promotions__news-card.page-promotions__card h3 {
    font-size: 18px;
  }
  .page-promotions__news-card.page-promotions__card p {
    font-size: 14px;
  }
}