.page-promotions {
  background-color: #F4F7FB;
  color: #1F2D3D;
}

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

.page-promotions__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 40px;
  background-color: #2F6BFF;
  color: #FFFFFF;
  text-align: center;
}

.page-promotions__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-bottom: 30px;
}

.page-promotions__hero-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  min-width: 200px; /* Ensure minimum size */
  min-height: 200px;
}

.page-promotions__hero-content {
  max-width: 800px;
  padding: 0 20px;
}

.page-promotions__hero-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin-bottom: 20px;
  max-width: 100%;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
  /* No fixed large font-size, rely on clamp for responsiveness if needed, otherwise inherit/default large */
}

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

.page-promotions__hero-cta {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  font-size: 1.1em;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions__hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

.page-promotions__section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  color: #1F2D3D;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.page-promotions__list-section {
  padding: 60px 0;
  background-color: #F4F7FB;
}

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

.page-promotions__promotion-card {
  background-color: #FFFFFF;
  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;
  border: 1px solid #D6E2FF;
}

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

.page-promotions__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  min-width: 200px; /* Ensure minimum size */
  min-height: 200px;
}

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

.page-promotions__card-title {
  font-size: 1.4em;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.4;
}

.page-promotions__card-title a {
  color: #1F2D3D;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promotions__card-title a:hover {
  color: #2F6BFF;
}

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

.page-promotions__card-button {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 50px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  font-size: 0.95em;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.page-promotions__card-button:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.page-promotions__view-all {
  text-align: center;
  margin-top: 30px;
}

.page-promotions__view-all-button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 50px;
  background-color: #6FA3FF;
  color: #FFFFFF;
  font-size: 1em;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-promotions__view-all-button:hover {
  background-color: #2F6BFF;
  transform: translateY(-2px);
}

.page-promotions__why-join-section {
  padding: 60px 0;
  background-color: #FFFFFF;
}

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

.page-promotions__benefit-item {
  background-color: #F4F7FB;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #D6E2FF;
}

.page-promotions__benefit-title {
  font-size: 1.3em;
  font-weight: 700;
  color: #2F6BFF;
  margin-bottom: 15px;
}

.page-promotions__benefit-text {
  font-size: 1em;
  line-height: 1.6;
  color: #1F2D3D;
}

.page-promotions__faq-section {
  padding: 60px 0;
  background-color: #F4F7FB;
}

.page-promotions__faq-item {
  background-color: #FFFFFF;
  border: 1px solid #D6E2FF;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-promotions__faq-question {
  font-size: 1.2em;
  font-weight: 600;
  color: #2F6BFF;
  margin-bottom: 10px;
}

.page-promotions__faq-answer {
  font-size: 1em;
  line-height: 1.6;
  color: #1F2D3D;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-promotions__hero-image-wrapper {
    max-width: 90%;
  }
  .page-promotions__hero-title {
    font-size: clamp(2em, 4vw, 3.5em);
  }
  .page-promotions__section-title {
    font-size: 1.8em;
  }
  .page-promotions__promotions-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-promotions__benefits-list {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-promotions__hero-section {
    padding-bottom: 30px;
  }
  .page-promotions__hero-content {
    padding: 0 15px;
  }
  .page-promotions__hero-description {
    font-size: 1em;
  }
  .page-promotions__list-section, .page-promotions__why-join-section, .page-promotions__faq-section {
    padding: 40px 0;
  }
  .page-promotions__section-title {
    font-size: 1.6em;
    padding-top: 20px;
  }
  .page-promotions__section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .page-promotions__promotions-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-promotions__promotion-card {
    margin: 0 auto;
    max-width: 400px;
  }
  .page-promotions__card-image {
    height: 200px;
  }
  .page-promotions__card-title {
    font-size: 1.2em;
  }
  .page-promotions__card-text {
    font-size: 0.9em;
  }
  .page-promotions__benefits-list {
    grid-template-columns: 1fr;
  }
  .page-promotions__benefit-item {
    max-width: 400px;
    margin: 0 auto;
  }
  .page-promotions__faq-question {
    font-size: 1.1em;
  }
  .page-promotions__faq-answer {
    font-size: 0.9em;
  }
  /* Mobile content image constraint */
  .page-promotions img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-promotions__hero-title {
    font-size: clamp(1.8em, 6vw, 2.5em);
  }
  .page-promotions__hero-cta {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-promotions__section-title {
    font-size: 1.4em;
  }
  .page-promotions__section-description {
    font-size: 0.9em;
  }
  .page-promotions__card-button {
    font-size: 0.9em;
    padding: 8px 15px;
  }
  .page-promotions__view-all-button {
    font-size: 0.9em;
    padding: 10px 20px;
  }
}