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

.page-promotions__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 20px 60px;
  max-width: 1390px;
  margin: 0 auto;
}

.page-promotions__hero-image-wrapper {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

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

.page-promotions__hero-content {
  max-width: 900px;
  padding: 0 15px;
}

.page-promotions__main-title {
  font-weight: 700;
  color: #000000; /* Custom Color_1776249996415 */
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.page-promotions__description {
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #1F2D3D; /* Text Main */
}

.page-promotions__cta-button {
  display: inline-block;
  padding: 15px 35px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 15px rgba(47, 107, 255, 0.3);
  border: none;
  cursor: pointer;
}

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

.page-promotions__promotions-list {
  padding: 60px 20px;
  max-width: 1390px;
  margin: 0 auto;
}

.page-promotions__section-title {
  text-align: center;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: #000000; /* Custom Color_1776249996415 */
  margin-bottom: 50px;
  font-weight: 700;
  line-height: 1.3;
}

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

.page-promotions__card {
  background-color: #FFFFFF; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #D6E2FF; /* Border */
  display: flex;
  flex-direction: column;
}

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

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

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

.page-promotions__card-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #000000; /* Custom Color_1776249996415 */
  line-height: 1.3;
}

.page-promotions__card-title a {
  color: #000000; /* Custom Color_1776249996415 */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promotions__card-title a:hover {
  color: #2F6BFF; /* Main Color */
}

.page-promotions__card-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #1F2D3D; /* Text Main */
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions__card-button {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 30px;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px rgba(47, 107, 255, 0.2);
  border: none;
  cursor: pointer;
  text-align: center;
  align-self: flex-start;
}

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

.page-promotions__faq-section {
  padding: 60px 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.page-promotions__faq-list {
  margin-top: 40px;
}

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

.page-promotions__faq-question {
  font-size: 1.3rem;
  font-weight: 600;
  color: #000000; /* Custom Color_1776249996415 */
  margin-bottom: 10px;
}

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

.page-promotions__cta-bottom {
  text-align: center;
  padding: 60px 20px;
  background-color: #F4F7FB;
  max-width: 1390px;
  margin: 0 auto;
}

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

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

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

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

  .page-promotions__promotions-list,
  .page-promotions__faq-section,
  .page-promotions__cta-bottom {
    padding: 40px 15px;
  }

  .page-promotions__section-title {
    font-size: clamp(1.6rem, 7vw, 2.2rem);
    margin-bottom: 30px;
  }

  .page-promotions__grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

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

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

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

  .page-promotions__card-button {
    font-size: 0.9rem;
    padding: 8px 18px;
  }

  .page-promotions__faq-question {
    font-size: 1.1rem;
  }

  .page-promotions__faq-answer {
    font-size: 0.9rem;
  }

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

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

/* Specific content area image rules (as per prompt) */
.page-promotions__hero-image {
  width: 100%; /* For responsive scaling */
  height: auto;
}

.page-promotions__card-image {
  width: 100%; /* For responsive scaling */
  height: 250px; /* Fixed height for consistency in cards */
}

/* Override any potential smaller image sizes for content area */
.page-promotions img:not(.shared-header__logo):not(.shared-footer__payment-icon):not(.shared-footer__social-icon) {
  min-width: 200px; 
  min-height: 200px; 
}

@media (max-width: 768px) {
  .page-promotions img:not(.shared-header__logo):not(.shared-footer__payment-icon):not(.shared-footer__social-icon) {
    max-width: 100%;
    height: auto;
  }
}