.page-promotions {\n  color: #333333; /* Default text color for light body background */\n  background: #ffffff; /* Explicitly set for content area */\n  font-family: Arial, sans-serif;\n  line-height: 1.6;\n}\n\n.page-promotions__container {\n  max-width: 1200px;\n  margin: 0 auto;\n  padding: 0 20px;\n}\n\n.page-promotions__section {\n  padding: 60px 0;\n  text-align: center;\n}\n\n.page-promotions__section-title {\n  font-size: 36px;\n  color: #017439;\n  margin-bottom: 40px;\n  font-weight: bold;\n}\n\n.page-promotions__section-title--light {\n  color: #ffffff;\n}\n\n.page-promotions__text-block {\n  font-size: 18px;\n  margin-bottom: 20px;\n  max-width: 900px;\n  margin-left: auto;\n  margin-right: auto;\n  line-height: 1.8;\n}\n\n.page-promotions__text-block--light {\n  color: #f0f0f0;\n}\n\n/* Hero Section */\n.page-promotions__hero-section {\n  position: relative;\n  display: flex;\n  flex-direction: column;\n  align-items: center;\n  justify-content: center;\n  text-align: center;\n  padding: 60px 20px;\n  padding-top: var(--header-offset, 120px);\n  background: linear-gradient(135deg, #017439, #005a2c); /* Darker green gradient for hero background */\n  color: #ffffff;\n}\n\n.page-promotions__hero-container {\n  position: relative;\n  max-width: 1200px;\n  margin: 0 auto;\n  display: flex;\n  flex-direction: column;\n  align-items: center;\n  justify-content: center;\n}\n\n.page-promotions__hero-image {\n  width: 100%;\n  margin-bottom: 30px;\n}\n\n.page-promotions__hero-image img {\n  width: 100%;\n  height: auto;\n  max-width: 100%;\n  display: block;\n  border-radius: 8px;\n  object-fit: cover;\n}\n\n.page-promotions__hero-content {\n  position: relative;\n  z-index: 2;\n  text-align: center;\n  width: 100%;\n}\n\n.page-promotions__main-title {\n  font-size: 48px;\n  font-weight: bold;\n  margin-bottom: 20px;\n  line-height: 1.2;\n  color: #FFFF00; /* Register/Login font color for emphasis */\n  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);\n}\n\n.page-promotions__intro-text {\n  font-size: 20px;\n  margin-bottom: 30px;\n  max-width: 800px;\n  margin-left: auto;\n  margin-right: auto;\n}\n\n.page-promotions__cta-button {\n  display: inline-block;\n  padding: 15px 40px;\n  background: #C30808; /* Register/Login button color */\n  color: #FFFF00; /* Register/Login font color */\n  text-decoration: none;\n  border-radius: 5px;\n  font-size: 18px;\n  font-weight: bold;\n  margin-top: 30px;\n  transition: all 0.3s ease;\n  border: none;\n  cursor: pointer;\n}\n\n.page-promotions__cta-button:hover {\n  background: #a60707;\n  transform: translateY(-2px);\n  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);\n}\n\n/* Introduction Section */\n.page-promotions__introduction-section {\n  background: #ffffff;\n  padding-top: 80px;\n  padding-bottom: 80px;\n}\n\n/* Featured Promotions Section */\n.page-promotions__featured-promotions-section {\n  background: #017439;\n  color: #ffffff;\n  padding-top: 80px;\n  padding-bottom: 80px;\n}\n\n.page-promotions__promotion-grid {\n  display: grid;\n  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));\n  gap: 30px;\n  margin-top: 50px;\n}\n\n.page-promotions__promotion-card {\n  background: #ffffff;\n  border-radius: 10px;\n  overflow: hidden;\n  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);\n  text-align: left;\n  display: flex;\n  flex-direction: column;\n  height: 100%;\n  transition: transform 0.3s ease, box-shadow 0.3s ease;\n}\n\n.page-promotions__promotion-card:hover {\n  transform: translateY(-5px);\n  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);\n}\n\n.page-promotions__card-image {\n  width: 100%;\n  height: 250px; /* Fixed height for consistency */\n  object-fit: cover;\n  display: block;\n}\n\n.page-promotions__card-content {\n  padding: 25px;\n  flex-grow: 1;\n  display: flex;\n  flex-direction: column;\n  color: #333333;\n}\n\n.page-promotions__card-title {\n  font-size: 22px;\n  font-weight: bold;\n  margin-bottom: 15px;\n  line-height: 1.4;\n}\n\n.page-promotions__card-title a {\n  color: #017439;\n  text-decoration: none;\n  transition: color 0.3s ease;\n}\n\n.page-promotions__card-title a:hover {\n  color: #C30808;\n}\n\n.page-promotions__card-description {\n  font-size: 16px;\n  margin-bottom: 20px;\n  flex-grow: 1;\n}\n\n.page-promotions__card-button {\n  display: inline-block;\n  padding: 10px 25px;\n  background: #C30808; /* Register/Login button color */\n  color: #FFFF00; /* Register/Login font color */\n  text-decoration: none;\n  border-radius: 5px;\n  font-size: 16px;\n  font-weight: bold;\n  transition: all 0.3s ease;\n  align-self: flex-start;\n  border: none;\n  cursor: pointer;\n}\n\n.page-promotions__card-button:hover {\n  background: #a60707;\n  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);\n}\n\n/* Terms and Conditions Section */\n.page-promotions__terms-conditions-section {\n  background: #f9f9f9;\n  padding-top: 80px;\n  padding-bottom: 80px;\n}\n\n.page-promotions__terms-list {\n  list-style: disc inside;\n  text-align: left;\n  max-width: 900px;\n  margin: 30px auto;\n  padding-left: 20px;\n}\n\n.page-promotions__terms-list li {\n  margin-bottom: 10px;\n  font-size: 17px;\n  color: #333333;\n}\n\n.page-promotions__terms-list li p {\n  margin: 0;\n  padding: 0;\n}\n\n.page-promotions__read-more-link {\n  display: inline-block;\n  margin-top: 20px;\n  color: #017439;\n  text-decoration: underline;\n  font-weight: bold;\n  font-size: 17px;\n  transition: color 0.3s ease;\n}\n\n.page-promotions__read-more-link:hover {\n  color: #C30808;\n}\n\n/* How to Claim Section */\n.page-promotions__how-to-claim-section {\n  background: #ffffff;\n  padding-top: 80px;\n  padding-bottom: 80px;\n}\n\n.page-promotions__steps-grid {\n  display: grid;\n  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));\n  gap: 30px;\n  margin-top: 50px;\n}\n\n.page-promotions__step-item {\n  background: #f9f9f9;\n  padding: 30px;\n  border-radius: 10px;\n  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);\n  display: flex;\n  flex-direction: column;\n  align-items: center;\n  text-align: center;\n  height: 100%;\n}\n\n.page-promotions__step-icon {\n  width: 150px; /* Increased size for icons */\n  height: 112px; /* Maintain aspect ratio */\n  object-fit: contain;\n  margin-bottom: 20px;\n}\n\n.page-promotions__step-title {\n  font-size: 24px;\n  font-weight: bold;\n  color: #017439;\n  margin-bottom: 15px;\n}\n\n.page-promotions__step-description {\n  font-size: 16px;\n  color: #555555;\n}\n\n.page-promotions__cta-bottom {\n  margin-top: 60px;\n}\n\n/* FAQ Section */\n.page-promotions__faq-section {\n  background: #f0f0f0;\n  padding-top: 80px;\n  padding-bottom: 80px;\n}\n\n.page-promotions__faq-list {\n  max-width: 900px;\n  margin: 50px auto 0 auto;\n  text-align: left;\n}\n\n.page-promotions__faq-item {\n  margin-bottom: 15px;\n  border-radius: 5px;\n  overflow: hidden;\n}\n\n.page-promotions__faq-answer {\n  max-height: 0;\n  overflow: hidden;\n  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;\n  padding: 0 15px;\n  opacity: 0;\n  color: #333333;\n}\n\n.page-promotions__faq-item.active .page-promotions__faq-answer {\n  max-height: 2000px !important;\n  padding: 20px 15px !important;\n  opacity: 1;\n  background: #ffffff;\n  border-radius: 0 0 5px 5px;\n}\n\n.page-promotions__faq-question {\n  display: flex;\n  justify-content: space-between;\n  align-items: center;\n  padding: 18px 20px;\n  background: #fff;\n  border: 1px solid #e0e0e0;\n  border-radius: 5px;\n  cursor: pointer;\n  user-select: none;\n  transition: background-color 0.3s ease, border-color 0.3s ease;\n  position: relative;\n}\n\n.page-promotions__faq-question:hover {\n  background: #f5f5f5;\n  border-color: #d0d0d0;\n}\n\n.page-promotions__faq-question:active {\n  background: #eeeeee;\n}\n\n.page-promotions__faq-question h3 {\n  margin: 0;\n  padding: 0;\n  flex: 1;\n  font-size: 18px;\n  font-weight: 600;\n  line-height: 1.5;\n  pointer-events: none;\n  color: #017439;\n}\n\n.page-promotions__faq-toggle {\n  font-size: 24px;\n  font-weight: bold;\n  line-height: 1;\n  color: #666;\n  transition: transform 0.3s ease, color 0.3s ease;\n  flex-shrink: 0;\n  margin-left: 15px;\n  pointer-events: none;\n  display: inline-flex;\n  align-items: center;\n  justify-content: center;\n  width: 28px;\n  height: 28px;\n}\n\n.page-promotions__faq-item.active .page-promotions__faq-toggle {\n  color: #C30808;\n  transform: rotate(180deg);\n}\n\n/* Latest News Section */\n.page-promotions__latest-news-section {\n  background: #017439;\n  color: #ffffff;\n  padding-top: 80px;\n  padding-bottom: 80px;\n}\n\n.page-promotions__news-grid {\n  display: grid;\n  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));\n  gap: 30px;\n  margin-top: 50px;\n}\n\n.page-promotions__news-card {\n  background: #ffffff;\n  border-radius: 10px;\n  overflow: hidden;\n  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);\n  text-align: left;\n  display: flex;\n  flex-direction: column;\n  height: 100%;\n  transition: transform 0.3s ease, box-shadow 0.3s ease;\n}\n\n.page-promotions__news-card:hover {\n  transform: translateY(-5px);\n  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);\n}\n\n.page-promotions__news-card .page-promotions__card-image {\n  height: 200px;\n}\n\n.page-promotions__news-card .page-promotions__card-content {\n  color: #333333;\n}\n\n.page-promotions__news-card .page-promotions__card-title a {\n  color: #017439;\n}\n\n.page-promotions__news-card .page-promotions__card-title a:hover {\n  color: #C30808;\n}\n\n.page-promotions__news-date {\n  font-size: 14px;\n  color: #666666;\n  margin-top: auto;\n  display: block;\n}\n\n/* Responsive Design */\n@media (max-width: 1024px) {\n  .page-promotions__main-title {\n    font-size: 40px;\n  }\n\n  .page-promotions__section-title {\n    font-size: 30px;\n  }\n\n  .page-promotions__intro-text,\n  .page-promotions__text-block {\n    font-size: 17px;\n  }\n}\n\n@media (max-width: 768px) {\n  .page-promotions {\n    font-size: 16px;\n    line-height: 1.6;\n  }\n  \n  .page-promotions__hero-section {\n    padding-top: var(--header-offset, 120px) !important;\n    padding-bottom: 40px;\n    padding-left: 15px;\n    padding-right: 15px;\n  }\n  \n  .page-promotions__hero-image img {\n    border-radius: 4px;\n  }\n\n  .page-promotions__main-title {\n    font-size: 32px;\n    margin-bottom: 15px;\n  }\n\n  .page-promotions__intro-text {\n    font-size: 16px;\n    margin-bottom: 20px;\n  }\n\n  .page-promotions__cta-button {\n    padding: 12px 30px;\n    font-size: 16px;\n    max-width: 100% !important;\n    width: 100% !important;\n    box-sizing: border-box !important;\n    white-space: normal !important;\n    word-wrap: break-word !important;\n  }\n\n  .page-promotions__section {\n    padding: 40px 0;\n  }\n\n  .page-promotions__section-title {\n    font-size: 26px;\n    margin-bottom: 30px;\n  }\n\n  .page-promotions__text-block {\n    font-size: 16px;\n  }\n\n  .page-promotions__promotion-grid,\n  .page-promotions__steps-grid,\n  .page-promotions__news-grid {\n    grid-template-columns: 1fr;\n    gap: 20px;\n    margin-top: 30px;\n  }\n\n  .page-promotions__promotion-card,\n  .page-promotions__news-card,\n  .page-promotions__step-item {\n    margin: 0 15px; /* Add horizontal margin for better spacing */\n  }\n\n  .page-promotions__card-image {\n    height: 200px;\n  }\n\n  .page-promotions__card-content {\n    padding: 20px;\n  }\n\n  .page-promotions__card-title {\n    font-size: 20px;\n  }\n\n  .page-promotions__card-description {\n    font-size: 15px;\n  }\n\n  .page-promotions__card-button {\n    font-size: 15px;\n    padding: 10px 20px;\n  }\n\n  .page-promotions__terms-list {\n    margin: 20px 15px;\n    padding-left: 10px;\n  }\n\n  .page-promotions__terms-list li {\n    font-size: 15px;\n  }\n\n  .page-promotions__step-icon {\n    width: 120px;\n    height: 90px;\n  }\n\n  .page-promotions__step-title {\n    font-size: 20px;\n  }\n\n  .page-promotions__step-description {\n    font-size: 15px;\n  }\n\n  .page-promotions__faq-list {\n    margin: 30px 15px 0 15px;\n  }\n\n  .page-promotions__faq-question {\n    padding: 15px;\n    flex-wrap: wrap;\n  }\n  \n  .page-promotions__faq-question h3 {\n    font-size: 16px;\n    margin-bottom: 0;\n    width: calc(100% - 40px);\n  }\n  \n  .page-promotions__faq-toggle {\n    margin-left: 10px;\n    width: 24px;\n    height: 24px;\n    font-size: 20px;\n  }\n  \n  .page-promotions__faq-answer {\n    padding: 0 15px;\n  }\n  \n  .page-promotions__faq-item.active .page-promotions__faq-answer {\n    padding: 15px !important;\n  }\n\n  /* Ensure all images are responsive and don't overflow */\n  .page-promotions img {\n    max-width: 100% !important;\n    width: 100% !important;\n    height: auto !important;\n  }\n  \n  .page-promotions__section > .page-promotions__container,\n  .page-promotions__promotion-card,\n  .page-promotions__step-item,\n  .page-promotions__news-card {\n    max-width: 100% !important;\n    width: 100% !important;\n    box-sizing: border-box !important;\n    padding-left: 15px;\n    padding-right: 15px;\n  }\n\n  .page-promotions__cta-buttons,\n  .page-promotions__button-group,\n  .page-promotions__btn-container {\n    max-width: 100% !important;\n    width: 100% !important;\n    box-sizing: border-box !important;\n    padding-left: 15px;\n    padding-right: 15px;\n    flex-direction: column !important;\n    gap: 10px;\n  }\n}\n\n@media (max-width: 480px) {\n  .page-promotions__main-title {\n    font-size: 28px;\n  }\n\n  .page-promotions__section-title {\n    font-size: 24px;\n  }\n  .page-promotions__step-item {\n    padding: 20px;\n  }\n  .page-promotions__step-title {\n    font-size: 18px;\n  }\n  .page-promotions__step-icon {\n    width: 100px;\n    height: 75px;\n  }\n}