.page-promotions {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #1F2D3D; /* Text Main */
  background-color: #F4F7FB; /* Background */
}

.page-promotions__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-color: #F4F7FB;
}

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

.page-promotions__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover; /* Desktop: cover to fill space */
  display: block;
}

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

.page-promotions__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #2F6BFF; /* Primary color */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-promotions__hero-description {
  font-size: 1.1rem;
  color: #1F2D3D;
  margin-bottom: 30px;
}

.page-promotions__btn-primary {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button gradient */
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: background 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__btn-primary:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
  transform: translateY(-2px);
}

.page-promotions__btn-secondary {
  display: inline-block;
  padding: 10px 20px;
  background: #ffffff; /* Card BG */
  color: #2F6BFF; /* Primary color */
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.3s ease, color 0.3s ease;
  border: 2px solid #2F6BFF;
  cursor: pointer;
}

.page-promotions__btn-secondary:hover {
  background: #2F6BFF;
  color: #ffffff;
}

.page-promotions__section-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
  color: #2F6BFF;
}

.page-promotions__section-description {
  font-size: 1.05rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #1F2D3D;
}

.page-promotions__dark-section {
  background-color: #2F6BFF; /* Primary color */
  color: #ffffff;
  padding: 60px 20px;
}

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

.page-promotions__light-bg {
  background-color: #F4F7FB; /* Background */
  color: #1F2D3D;
  padding: 60px 20px;
}

.page-promotions__promo-categories {
  padding: 60px 20px;
  text-align: center;
}

.page-promotions__category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-promotions__category-card {
  background-color: #ffffff; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
  border: 1px solid #D6E2FF; /* Border */
}

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

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

.page-promotions__card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.page-promotions__card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2F6BFF;
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-promotions__card-text {
  font-size: 0.95rem;
  color: #1F2D3D;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions__how-to-claim {
  text-align: center;
}

.page-promotions__steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.page-promotions__step-card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid #D6E2FF;
}

.page-promotions__step-icon {
  width: 60px;
  height: 60px;
  background-color: #2F6BFF;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.page-promotions__step-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #2F6BFF;
  margin-bottom: 15px;
}

.page-promotions__step-text {
  font-size: 0.95rem;
  color: #1F2D3D;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions__why-choose {
  text-align: center;
}

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

.page-promotions__advantage-item {
  font-size: 1.1rem;
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
  color: #ffffff;
}

.page-promotions__advantage-item::before {
  content: '✅';
  position: absolute;
  left: 0;
  top: 0;
}

.page-promotions__terms-conditions {
  text-align: center;
}

.page-promotions__terms-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid #D6E2FF;
}

.page-promotions__terms-content p {
  font-size: 1rem;
  margin-bottom: 15px;
  color: #1F2D3D;
}

.page-promotions__terms-content strong {
  color: #2F6BFF;
}

.page-promotions__terms-list {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #1F2D3D;
}

.page-promotions__terms-list li {
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.page-promotions__faq-section {
  text-align: center;
}

.page-promotions__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-promotions__faq-item {
  background-color: #ffffff; /* Card BG */
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid #D6E2FF;
}

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.15rem;
  font-weight: 600;
  color: #1F2D3D; /* Text Main */
  list-style: none;
  user-select: none;
}

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

.page-promotions__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #2F6BFF;
}

.page-promotions__faq-item[open] .page-promotions__faq-toggle {
  transform: rotate(45deg);
}

.page-promotions__faq-answer {
  padding: 0 25px 20px;
  font-size: 1rem;
  color: #1F2D3D; /* Text Main */
  line-height: 1.6;
}

.page-promotions__faq-answer p {
  margin: 0;
}

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

/* Mobile specific styles for all sections (max-width: 768px) */
@media (max-width: 768px) {
  .page-promotions {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-promotions__hero-section {
    padding-top: 10px !important;
    padding-bottom: 30px;
  }

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

  .page-promotions__hero-image {
    object-fit: contain !important; /* Mobile: contain to prevent cropping */
    aspect-ratio: unset !important;
    max-height: none !important;
  }

  .page-promotions__hero-content {
    margin-top: 20px;
    padding: 0 15px;
  }

  .page-promotions__main-title {
    font-size: 2rem; /* Adjusted for smaller screens */
    margin-bottom: 15px;
  }

  .page-promotions__hero-description {
    font-size: 1rem;
    margin-bottom: 20px;
  }

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

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

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

  .page-promotions__dark-section,
  .page-promotions__light-bg {
    padding: 40px 15px;
  }

  .page-promotions__category-grid,
  .page-promotions__steps-container {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
  }

  .page-promotions__category-card {
    margin-bottom: 10px;
  }

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

  .page-promotions__card-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
  }

  .page-promotions__card-text {
    font-size: 0.9rem;
    margin-bottom: 15px;
  }

  .page-promotions__advantage-list {
    padding: 0 15px;
    margin-bottom: 30px;
  }

  .page-promotions__advantage-item {
    font-size: 1rem;
    margin-bottom: 10px;
    padding-left: 25px;
  }

  .page-promotions__terms-content {
    padding: 20px;
    margin: 0 15px;
  }

  .page-promotions__terms-content p,
  .page-promotions__terms-list li {
    font-size: 0.9rem;
  }

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

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

  .page-promotions__faq-toggle {
    font-size: 1.5rem;
  }

  .page-promotions__faq-answer {
    padding: 0 20px 15px;
    font-size: 0.95rem;
  }

  /* Ensure all images are responsive */
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-promotions__hero-section,
  .page-promotions__promo-categories,
  .page-promotions__how-to-claim,
  .page-promotions__why-choose,
  .page-promotions__terms-conditions,
  .page-promotions__faq-section,
  .page-promotions__category-grid,
  .page-promotions__steps-container,
  .page-promotions__category-card,
  .page-promotions__step-card,
  .page-promotions__terms-content,
  .page-promotions__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  /* Button containers for multiple buttons */
  .page-promotions__cta-buttons,
  .page-promotions__button-group,
  .page-promotions__btn-container {
    display: flex;
    flex-direction: column !important; /* Stack buttons vertically */
    gap: 10px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* @media (max-width: 1024px) for tablet, if needed. For this task, 768px is primary mobile focus. */
@media (max-width: 1024px) {
  .page-promotions__category-grid,
  .page-promotions__steps-container {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }

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

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