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

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

/* Hero Section */
.page-promotions__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding as per rule */
  background: linear-gradient(180deg, #2F6BFF 0%, #6FA3FF 100%);
  color: #FFFFFF;
  text-align: center;
  overflow: hidden;
}

.page-promotions__hero-image-wrapper {
  width: 100%;
  max-width: 1920px; /* Ensure it can go full width but also scale down */
  margin-bottom: 20px;
}

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

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

.page-promotions__hero-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin-bottom: 15px;
  /* Using clamp for responsive font size without hardcoding fixed large values */
  font-size: clamp(2.2rem, 4vw, 3.2rem);
}

.page-promotions__hero-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
}

.page-promotions__hero-cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  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-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Offers List Section */
.page-promotions__offers-list-section {
  padding: 60px 0;
}

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

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

.page-promotions__offer-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.page-promotions__offer-card-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
  border-bottom: 1px solid #D6E2FF;
}

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

.page-promotions__offer-card-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1F2D3D;
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-promotions__offer-card-description {
  font-size: 0.95rem;
  color: #1F2D3D;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions__offer-card-cta {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 6px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.3s ease;
  text-align: center;
}

.page-promotions__offer-card-cta:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
}

/* Why Join Section */
.page-promotions__why-join-section {
  padding: 60px 0;
  background-color: #EBF2FF; /* Lighter background for contrast */
}

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

.page-promotions__why-join-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.page-promotions__why-join-item-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2F6BFF;
  margin-bottom: 10px;
}

.page-promotions__why-join-item-description {
  font-size: 0.9rem;
  color: #1F2D3D;
  line-height: 1.6;
}

/* CTA Banner Section */
.page-promotions__cta-banner-section {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(180deg, #2F6BFF 0%, #6FA3FF 100%);
  color: #FFFFFF;
}

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

.page-promotions__cta-banner-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFFFFF;
}

.page-promotions__cta-banner-description {
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.95);
}

.page-promotions__cta-banner-button {
  display: inline-block;
  padding: 18px 40px;
  border-radius: 10px;
  background: #FFFFFF;
  color: #2F6BFF;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  transition: background 0.3s ease, transform 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.page-promotions__cta-banner-button:hover {
  background: #E0E0E0;
  transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-promotions__container {
    padding: 15px;
  }

  .page-promotions__hero-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

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

  .page-promotions__hero-cta-button {
    padding: 12px 25px;
    font-size: 1rem;
  }

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

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

  .page-promotions__offer-card-image {
    height: 200px; /* Adjust height for mobile */
  }

  .page-promotions__offer-card-title {
    font-size: 1.2rem;
  }

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

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

  .page-promotions__cta-banner-description {
    font-size: 1rem;
  }

  .page-promotions__cta-banner-button {
    padding: 15px 30px;
    font-size: 1.1rem;
  }

  /* Critical: prevent content overflow on mobile */
  .page-promotions img {
    max-width: 100%;
    height: auto;
  }

  /* Ensure content area images are not too small */
  .page-promotions__offer-card-image {
    min-width: 200px;
    min-height: 200px;
  }

  .page-promotions__hero-image {
    min-width: 200px;
    min-height: 200px;
  }
}

/* Ensure content images are not smaller than 200px */
.page-promotions__offer-card-image,
.page-promotions__hero-image {
  min-width: 200px;
  min-height: 200px;
}