.page-promotions {
  font-family: Arial, sans-serif;
  color: #333333; /* Default dark text for light body background */
  background-color: #FFFFFF;
}

.page-promotions__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding as shared.css handles body padding */
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 40px;
}

.page-promotions__hero-image-wrapper {
  width: 100%;
  max-height: 500px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.page-promotions__hero-content {
  max-width: 900px;
  padding: 30px 20px;
  margin-top: -100px; /* Overlap image slightly for visual appeal */
  background: rgba(255, 255, 255, 0.95);
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 10;
}

.page-promotions__main-title {
  font-size: clamp(28px, 4vw, 48px);
  color: #26A9E0;
  margin-bottom: 15px;
  line-height: 1.2;
  font-weight: 700;
}

.page-promotions__subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: #555555;
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-promotions__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

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

.page-promotions__btn-primary {
  background-color: #26A9E0;
  color: #FFFFFF;
  border: 2px solid #26A9E0;
}

.page-promotions__btn-primary:hover {
  background-color: #1a8cc4;
  border-color: #1a8cc4;
  transform: translateY(-2px);
}

.page-promotions__btn-secondary {
  background-color: #FFFFFF;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-promotions__btn-secondary:hover {
  background-color: #26A9E0;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.page-promotions__section {
  padding: 60px 0;
  margin-bottom: 30px;
  overflow: hidden;
}

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

.page-promotions__section-title {
  font-size: clamp(24px, 3.5vw, 38px);
  color: #26A9E0;
  text-align: center;
  margin-bottom: 25px;
  font-weight: 700;
  line-height: 1.3;
}

.page-promotions__section-description {
  font-size: 18px;
  line-height: 1.7;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
  color: #555555;
}

.page-promotions__overview-section {
  background-color: #f9f9f9;
  border-bottom: 1px solid #e0e0e0;
}

.page-promotions__types-section {
  background-color: #26A9E0;
  color: #FFFFFF; /* White text for dark background */
}

.page-promotions__types-section .page-promotions__section-title,
.page-promotions__types-section .page-promotions__section-description {
  color: #FFFFFF;
}

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

.page-promotions__promotion-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #333333;
}

.page-promotions__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  margin-bottom: 20px;
}

.page-promotions__card-title {
  font-size: 22px;
  font-weight: 700;
  margin: 0 20px 15px;
  color: #26A9E0;
}

.page-promotions__card-text {
  font-size: 16px;
  line-height: 1.6;
  margin: 0 20px 25px;
  flex-grow: 1;
}

.page-promotions__card-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #EA7C07; /* Login color for action */
  color: #FFFFFF;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
  margin: 0 20px;
  max-width: calc(100% - 40px);
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions__card-button:hover {
  background-color: #c76700;
}

.page-promotions__claim-guide-section {
  background-color: #f0f8ff;
}

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

.page-promotions__step-item {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-promotions__step-icon {
  width: 60px;
  height: 60px;
  background-color: #26A9E0;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
}

.page-promotions__step-title {
  font-size: 20px;
  font-weight: 700;
  color: #26A9E0;
  margin-bottom: 10px;
}

.page-promotions__step-text {
  font-size: 15px;
  line-height: 1.6;
  color: #555555;
}

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

.page-promotions__why-choose-section {
  background-color: #26A9E0;
  color: #FFFFFF;
}

.page-promotions__why-choose-section .page-promotions__section-title,
.page-promotions__why-choose-section .page-promotions__section-description {
  color: #FFFFFF;
}

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

.page-promotions__feature-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-promotions__feature-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-promotions__feature-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #FFFFFF;
}

.page-promotions__feature-text {
  font-size: 16px;
  line-height: 1.6;
  color: #f0f0f0;
}

.page-promotions__faq-section {
  background-color: #f9f9f9;
  padding-bottom: 80px;
}

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

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: 16px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #333333;
}

.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: 0;
  line-height: 1.6;
}

.page-promotions__cta-bottom-section {
  background-color: #26A9E0;
  color: #FFFFFF;
  text-align: center;
}

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

/* --- Responsive Styles --- */

@media (max-width: 1024px) {
  .page-promotions__hero-content {
    margin-top: -80px;
    padding: 25px 15px;
  }

  .page-promotions__main-title {
    font-size: clamp(26px, 3.8vw, 42px);
  }

  .page-promotions__subtitle {
    font-size: clamp(15px, 1.8vw, 18px);
  }

  .page-promotions__btn-primary,
  .page-promotions__btn-secondary {
    padding: 12px 24px;
    font-size: 15px;
  }

  .page-promotions__section {
    padding: 50px 0;
  }

  .page-promotions__section-title {
    font-size: clamp(22px, 3.2vw, 34px);
  }

  .page-promotions__section-description {
    font-size: 17px;
  }

  .page-promotions__promotions-grid,
  .page-promotions__guide-steps,
  .page-promotions__features-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
  }

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

  .page-promotions__step-icon {
    width: 55px;
    height: 55px;
    font-size: 26px;
  }

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

  .page-promotions__feature-icon {
    width: 70px;
    height: 70px;
  }

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

@media (max-width: 849px) {
  .page-promotions__hero-image {
    object-fit: contain !important;
    aspect-ratio: unset !important;
  }
}

@media (max-width: 768px) {
  .page-promotions {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-promotions__hero-section {
    padding-top: 10px; /* Small top padding, body handles main offset */
    margin-bottom: 30px;
  }

  .page-promotions__hero-image-wrapper {
    max-height: 300px;
  }

  .page-promotions__hero-content {
    margin-top: -60px;
    padding: 20px 15px;
    max-width: calc(100% - 30px);
  }

  .page-promotions__main-title {
    font-size: clamp(24px, 7vw, 36px); /* Ensure responsive font size */
    margin-bottom: 10px;
  }

  .page-promotions__subtitle {
    font-size: clamp(15px, 4vw, 18px);
    margin-bottom: 20px;
  }

  .page-promotions__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 15px;
  }

  .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;
    padding: 12px 15px;
    font-size: 16px;
  }

  .page-promotions__section {
    padding: 40px 0;
    margin-bottom: 20px;
  }

  .page-promotions__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-promotions__section-title {
    font-size: clamp(20px, 6vw, 30px);
    margin-bottom: 20px;
  }

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

  .page-promotions__promotions-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }

  .page-promotions__promotion-card {
    padding-bottom: 20px;
  }

  .page-promotions__card-image {
    height: 180px;
    margin-bottom: 15px;
  }

  .page-promotions__card-title {
    font-size: 19px;
    margin: 0 15px 10px;
  }

  .page-promotions__card-text {
    font-size: 14px;
    margin: 0 15px 20px;
  }

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

  .page-promotions__guide-steps {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }

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

  .page-promotions__step-icon {
    width: 50px;
    height: 50px;
    font-size: 24px;
    margin-bottom: 15px;
  }

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

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

  .page-promotions__cta-buttons--center {
    margin-top: 40px;
  }

  .page-promotions__features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }

  .page-promotions__feature-item {
    padding: 25px;
  }

  .page-promotions__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
  }

  .page-promotions__feature-title {
    font-size: 19px;
  }

  .page-promotions__feature-text {
    font-size: 14px;
  }

  details.page-promotions__faq-item summary.page-promotions__faq-question { padding: 15px; }
  .page-promotions__faq-qtext { font-size: 15px; }
  .page-promotions__faq-toggle { font-size: 20px; width: 24px; margin-left: 10px; }
  details.page-promotions__faq-item .page-promotions__faq-answer { padding: 0 15px 15px; }

  .page-promotions__cta-bottom-section .page-promotions__cta-buttons {
    padding: 0 15px;
  }

  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
}