.page-promotions {
  font-family: 'Arial', sans-serif;
  color: var(--text-main-color);
  background-color: var(--bg-color);
}

.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: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
  color: #ffffff;
  overflow: hidden;
}

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

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

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

.page-promotions__hero-content {
  text-align: center;
  width: 100%;
}

.page-promotions__hero-section h1 {
  color: #ffffff;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__hero-description {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-promotions__hero-cta-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.page-promotions__cta-button {
  display: inline-block;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  white-space: normal;
  word-wrap: break-word;
}

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

.page-promotions__btn-primary:hover {
  background: linear-gradient(180deg, #E53935 0%, #FF5A4F 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions__btn-secondary {
  background: #ffffff;
  color: #E53935;
  border: 2px solid #E53935;
}

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

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

.page-promotions__section-title {
  font-size: 2.5em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
}

.page-promotions__section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  color: #555555;
}

.page-promotions__text-block {
  font-size: 1em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--text-main-color);
}

/* Introduction Section */
.page-promotions__introduction-section {
  padding: 60px 0;
  background-color: var(--card-bg-color);
}

/* Highlight Promotions Section */
.page-promotions__highlight-promotions {
  padding: 60px 0;
  background: linear-gradient(180deg, #E53935 0%, #FF5A4F 100%);
  color: #ffffff;
}

.page-promotions__highlight-promotions .page-promotions__section-title,
.page-promotions__highlight-promotions .page-promotions__section-description {
  color: #ffffff;
}

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

.page-promotions__promo-card {
  background-color: var(--card-bg-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

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

.page-promotions__promo-card h3 {
  font-size: 1.4em;
  color: var(--primary-color);
  padding: 20px 20px 10px;
  margin: 0;
}

.page-promotions__promo-card p {
  font-size: 0.95em;
  line-height: 1.6;
  color: #666666;
  padding: 0 20px 20px;
  flex-grow: 1;
}

.page-promotions__promo-card .page-promotions__card-button {
  margin: 0 20px 20px;
  text-align: center;
  padding: 12px 25px;
  font-size: 1em;
  border-radius: 5px;
}

/* Exclusive Offers Section */
.page-promotions__exclusive-offers {
  padding: 60px 0;
  background-color: var(--bg-color);
}

.page-promotions__offer-tabs {
  margin-top: 40px;
}

.page-promotions__tab-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
}

.page-promotions__tab-btn {
  background-color: #f0f0f0;
  color: var(--text-main-color);
  border: 1px solid var(--border-color);
  padding: 12px 25px;
  border-radius: 50px;
  cursor: pointer;
  font-size: 1.05em;
  font-weight: 600;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions__tab-btn:hover {
  background-color: #e0e0e0;
  color: var(--primary-color);
}

.page-promotions__tab-btn--active {
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
  color: #ffffff;
  border-color: transparent;
}

.page-promotions__tab-btn--active:hover {
  background: linear-gradient(180deg, #E53935 0%, #FF5A4F 100%);
  color: #ffffff;
}

.page-promotions__tab-pane {
  display: none;
  background-color: var(--card-bg-color);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.page-promotions__tab-pane--active {
  display: block;
}

.page-promotions__tab-pane-title {
  font-size: 1.8em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-promotions__tab-pane p {
  font-size: 1em;
  line-height: 1.7;
  margin-bottom: 15px;
  color: var(--text-main-color);
}

.page-promotions__tab-pane ul {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 20px;
}

.page-promotions__tab-pane ul li {
  font-size: 0.95em;
  line-height: 1.6;
  color: #555555;
  margin-bottom: 8px;
}

.page-promotions__tab-pane .page-promotions__btn-primary {
  padding: 10px 20px;
  font-size: 1em;
  border-radius: 5px;
}

/* How to Claim Section */
.page-promotions__how-to-claim {
  padding: 60px 0;
  background-color: var(--card-bg-color);
}

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

.page-promotions__step-card {
  text-align: center;
  background-color: #ffffff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-promotions__step-card img {
  width: 100%;
  
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-promotions__step-card h3 {
  font-size: 1.3em;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-promotions__step-card p {
  font-size: 0.95em;
  line-height: 1.7;
  color: #666666;
}

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

/* Terms & Conditions Section */
.page-promotions__terms-conditions {
  padding: 60px 0;
  background-color: var(--bg-color);
}

.page-promotions__terms-list {
  list-style: decimal inside;
  margin-top: 20px;
  margin-bottom: 30px;
  padding-left: 20px;
}

.page-promotions__terms-list li {
  font-size: 1em;
  line-height: 1.8;
  margin-bottom: 10px;
  color: var(--text-main-color);
}

.page-promotions__terms-conditions .page-promotions__btn-secondary {
  display: block;
  width: fit-content;
  margin: 30px auto 0;
  padding: 12px 30px;
  font-size: 1.1em;
  border-radius: 5px;
}

/* FAQ Section */
.page-promotions__faq-section {
  padding: 60px 0;
  background-color: var(--card-bg-color);
}

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

details.page-promotions__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid var(--border-color);
  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;
  color: var(--text-main-color);
}

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: 1.1em;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: var(--primary-color);
}

.page-promotions__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #666;
  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;
  color: #555555;
}

.page-promotions__faq-answer p {
  margin-top: 10px;
  line-height: 1.7;
}

/* Call to Action Section */
.page-promotions__cta-section {
  padding: 60px 0;
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
  color: #ffffff;
  text-align: center;
}

.page-promotions__cta-section .page-promotions__section-title,
.page-promotions__cta-section .page-promotions__section-description {
  color: #ffffff;
}

.page-promotions__cta-section .page-promotions__cta-group {
  margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions__section-title {
    font-size: 2em;
  }

  .page-promotions__promo-card h3 {
    font-size: 1.2em;
  }

  .page-promotions__tab-pane-title {
    font-size: 1.6em;
  }
}

@media (max-width: 768px) {
  .page-promotions__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-promotions__hero-section h1 {
    font-size: 2em;
  }

  .page-promotions__hero-description {
    font-size: 1em;
  }

  .page-promotions__hero-cta-group {
    flex-direction: column;
    gap: 15px;
  }

  .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__container {
    padding: 30px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-promotions__section-title {
    font-size: 1.8em;
  }

  .page-promotions__section-description {
    font-size: 0.95em;
  }

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

  .page-promotions__promo-card img {
    
  }

  .page-promotions__promo-card h3 {
    font-size: 1.1em;
  }

  .page-promotions__tab-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .page-promotions__tab-btn {
    font-size: 0.95em;
    padding: 10px 20px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-promotions__tab-pane {
    padding: 20px;
  }

  .page-promotions__tab-pane-title {
    font-size: 1.4em;
  }

  .page-promotions__faq-qtext {
    font-size: 1em;
  }

  details.page-promotions__faq-item summary.page-promotions__faq-question {
    padding: 15px;
  }

  .page-promotions__faq-answer {
    padding: 0 15px 15px;
  }

  /* Mobile image specific rules */
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-promotions__promo-card,
  .page-promotions__step-card,
  .page-promotions__tab-pane {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* Base colors for contrast */
:root {
  --primary-color: #E53935;
  --secondary-color: #FF5A4F;
  --card-bg-color: #FFFFFF;
  --bg-color: #F5F7FA;
  --text-main-color: #333333;
  --border-color: #E0E0E0;
}

/* Default text color for the page content, assuming light body background from shared.css */
.page-promotions {
  color: var(--text-main-color);
}

.page-promotions__dark-bg {
  color: #ffffff; /* Deep background, light text */
}

.page-promotions__light-bg {
  color: var(--text-main-color); /* Light background, dark text */
}

.page-promotions__cta-button {
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions__hero-cta-group {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.page-promotions__tab-buttons {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

@media (max-width: 768px) {
  .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;
  }

  .page-promotions__hero-cta-group,
  .page-promotions__cta-group,
  .page-promotions__tab-buttons {
    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__hero-cta-group {
    flex-direction: column; 
  }

  .page-promotions__tab-buttons {
    flex-direction: column;
  }
}