.page-promotions {
  padding-top: 10px; /* Small top padding, relying on body for header offset */
  background-color: #F4F7FB;
  color: #1F2D3D;
}

.page-promotions__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1390px;
  margin: 0 auto 40px auto;
  padding: 20px;
  background-color: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-promotions__hero-image-wrapper {
  width: 100%;
  max-width: 1200px; /* Adjust based on desired hero image width */
  margin-bottom: 20px;
  border-radius: 8px;
  overflow: hidden;
}

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

.page-promotions__hero-content {
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
}

.page-promotions__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #000000;
  margin-bottom: 15px;
  max-width: 100%; /* Ensure h1 doesn't overflow */
}

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

.page-promotions__cta-button {
  display: inline-block;
  padding: 14px 28px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  box-shadow: 0 4px 10px rgba(47, 107, 255, 0.3);
}

.page-promotions__cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(47, 107, 255, 0.4);
}

.page-promotions__promotions-list-section,
.page-promotions__why-choose-section,
.page-promotions__faq-section,
.page-promotions__cta-section {
  max-width: 1390px;
  margin: 0 auto 40px auto;
  padding: 20px;
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-promotions__section-title {
  font-size: 2.2em;
  font-weight: 700;
  color: #000000;
  text-align: center;
  margin-bottom: 30px;
  padding-top: 20px;
}

.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: 1px solid #D6E2FF;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease-in-out;
}

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

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

.page-promotions__card-content {
  padding: 20px;
}

.page-promotions__card-title {
  font-size: 1.4em;
  font-weight: 600;
  color: #000000;
  margin-bottom: 10px;
  line-height: 1.4;
}

.page-promotions__card-description {
  font-size: 0.95em;
  color: #1F2D3D;
  line-height: 1.5;
  margin-bottom: 20px;
}

.page-promotions__card-button {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  transition: background 0.2s ease-in-out;
}

.page-promotions__card-button:hover {
  background: #6FA3FF;
}

.page-promotions__benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.page-promotions__benefit-item {
  background-color: #F4F7FB;
  border-left: 5px solid #2F6BFF;
  padding: 20px;
  border-radius: 8px;
}

.page-promotions__benefit-title {
  font-size: 1.3em;
  color: #000000;
  margin-bottom: 10px;
}

.page-promotions__benefit-description {
  font-size: 0.9em;
  color: #1F2D3D;
}

.page-promotions__faq-item {
  border-bottom: 1px solid #D6E2FF;
  padding: 15px 0;
}

.page-promotions__faq-item:last-child {
  border-bottom: none;
}

.page-promotions__faq-question {
  font-size: 1.1em;
  color: #000000;
  margin-bottom: 5px;
  cursor: pointer;
}

.page-promotions__faq-answer {
  font-size: 0.95em;
  color: #1F2D3D;
  line-height: 1.5;
  padding-left: 10px;
}

.page-promotions__cta-section {
  text-align: center;
  padding: 40px 20px;
  margin-bottom: 60px;
}

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

.page-promotions__cta-button--large {
  padding: 16px 32px;
  font-size: 1.1em;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-promotions__hero-section,
  .page-promotions__promotions-list-section,
  .page-promotions__why-choose-section,
  .page-promotions__faq-section,
  .page-promotions__cta-section {
    margin-left: 20px;
    margin-right: 20px;
  }
}

@media (max-width: 768px) {
  .page-promotions__main-title {
    font-size: 2em;
  }

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

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

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

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

  .page-promotions__promotion-card img,
  .page-promotions__hero-section img,
  .page-promotions__why-choose-section img,
  .page-promotions__faq-section img,
  .page-promotions__cta-section img {
    max-width: 100% !important;
    height: auto !important;
  }

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

  .page-promotions__cta-button--large {
    font-size: 1em;
    padding: 14px 24px;
  }
}

@media (max-width: 480px) {
  .page-promotions__main-title {
    font-size: 1.6em;
  }

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

  .page-promotions__cta-button {
    padding: 12px 20px;
    font-size: 0.9em;
  }

  .page-promotions__card-title {
    font-size: 1.2em;
  }

  .page-promotions__card-button {
    padding: 8px 15px;
    font-size: 0.9em;
  }
}