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

.page-promotions__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 20px 60px; /* Small top padding, more bottom padding */
  overflow: hidden;
  background-color: #f8f8f8;
}

.page-promotions__hero-image-wrapper {
  width: 100%;
  max-width: 1920px; /* Ensure image wrapper takes full width */
  margin-bottom: 30px;
}

.page-promotions__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-promotions__hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  z-index: 1;
}

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

.page-promotions__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  color: #555555;
  margin-bottom: 30px;
}

.page-promotions__btn-primary {
  display: inline-block;
  background-color: #26A9E0;
  color: #FFFFFF;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

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

.page-promotions__introduction-section,
.page-promotions__categories-section,
.page-promotions__terms-section,
.page-promotions__faq-section {
  padding: 60px 20px;
  background-color: #ffffff;
}

.page-promotions__guide-section,
.page-promotions__cta-final-section {
  padding: 60px 20px;
  background-color: #26A9E0;
  color: #ffffff;
}

.page-promotions__section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

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

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

.page-promotions__text-block {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}

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

.page-promotions__promotion-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

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

.page-promotions__card-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-promotions__card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-promotions__card-title {
  font-size: 1.5rem;
  color: #26A9E0;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-promotions__card-description {
  font-size: 1rem;
  color: #666666;
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions__btn-secondary {
  display: inline-block;
  background-color: #FFFFFF;
  color: #26A9E0;
  padding: 12px 25px;
  border: 2px solid #26A9E0;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  margin-top: auto; /* Push button to bottom */
}

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

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

.page-promotions__steps-list li {
  counter-increment: step-counter;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 25px;
  position: relative;
  text-align: center;
  color: #ffffff;
}

.page-promotions__steps-list li::before {
  content: counter(step-counter);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #ffffff;
  color: #26A9E0;
  border-radius: 50%;
  font-size: 1.8rem;
  font-weight: bold;
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__step-title {
  font-size: 1.3rem;
  margin-top: 30px;
  margin-bottom: 10px;
  color: #ffffff;
}

.page-promotions__steps-list p {
  font-size: 1rem;
  color: #e0f2f7;
}

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

.page-promotions__terms-list {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 30px;
  font-size: 1.1rem;
  color: #555555;
}

.page-promotions__terms-list li {
  margin-bottom: 10px;
}

.page-promotions__term-highlight {
  color: #26A9E0;
}

.page-promotions__terms-section a {
  color: #26A9E0;
  text-decoration: underline;
}

.page-promotions__faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-promotions__faq-item {
  background-color: #f0f8ff; /* Light blue background for FAQ item */
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background-color: #e6f7ff; /* Slightly darker blue for question */
  color: #26A9E0;
  font-weight: bold;
  cursor: pointer;
  font-size: 1.15rem;
  list-style: none; /* For details/summary */
}

.page-promotions__faq-question::-webkit-details-marker {
  display: none;
}

.page-promotions__faq-qtext {
  flex-grow: 1;
}

.page-promotions__faq-toggle {
  font-size: 1.5rem;
  margin-left: 15px;
  width: 20px;
  text-align: center;
}

.page-promotions__faq-answer {
  padding: 15px 25px 20px;
  background-color: #ffffff;
  color: #555555;
  font-size: 1rem;
  line-height: 1.7;
}

.page-promotions__faq-item[open] .page-promotions__faq-question {
  background-color: #d9edf7; /* Even darker when open */
}

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

/* Login button color override */
.page-promotions__btn-login {
  background-color: #EA7C07;
  color: #FFFFFF;
}

.page-promotions__btn-login:hover {
  background-color: #e06c00;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-promotions__promotions-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-promotions__steps-list {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-promotions__hero-section {
    padding: 10px 15px 40px;
  }

  .page-promotions__main-title {
    font-size: 2rem;
  }

  .page-promotions__subtitle {
    font-size: 1rem;
  }

  .page-promotions__btn-primary {
    padding: 12px 25px;
    font-size: 1rem;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-promotions__introduction-section,
  .page-promotions__categories-section,
  .page-promotions__guide-section,
  .page-promotions__terms-section,
  .page-promotions__faq-section,
  .page-promotions__cta-final-section {
    padding: 40px 15px;
  }

  .page-promotions__section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .page-promotions__text-block {
    font-size: 0.95rem;
  }

  .page-promotions__promotion-card {
    flex-direction: column;
  }

  .page-promotions__card-image {
    height: 200px;
  }

  .page-promotions__card-title {
    font-size: 1.3rem;
  }

  .page-promotions__card-description {
    font-size: 0.9rem;
  }

  .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;
  }

  .page-promotions__steps-list {
    grid-template-columns: 1fr;
  }

  .page-promotions__steps-list li::before {
    top: -20px;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }

  .page-promotions__step-title {
    margin-top: 25px;
    font-size: 1.15rem;
  }

  .page-promotions__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }

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

  .page-promotions__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  /* Ensure all images are responsive */
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* Ensure all containers with images/buttons are responsive */
  .page-promotions__section,
  .page-promotions__card,
  .page-promotions__container,
  .page-promotions__hero-image-wrapper,
  .page-promotions__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-promotions__hero-section {
    padding-top: 10px !important; /* body already handles --header-offset */
  }
}