.page-promotions {
  background-color: #F4F7FB;
  color: #1F2D3D;
  font-family: Arial, sans-serif;
}

.page-promotions__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding to avoid header overlap */
  margin-bottom: 40px;
  overflow: hidden;
}

.page-promotions__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  max-width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-promotions__hero-content {
  text-align: center;
  padding: 20px;
  max-width: 900px;
  margin-top: 20px;
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-promotions__main-title {
  color: #000000; /* Custom Color_1776249996415 for main title */
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 15px;
  max-width: 100%;
}

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

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

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

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

.page-promotions__section-title {
  color: #000000; /* Custom Color_1776249996415 */
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  font-size: 2.2em;
}

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

.page-promotions__card {
  background-color: #FFFFFF;
  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;
  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: 200px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
  min-width: 200px;
  min-height: 200px;
}

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

.page-promotions__card-title {
  font-size: 1.4em;
  font-weight: 600;
  margin-bottom: 10px;
  color: #000000; /* Custom Color_1776249996415 */
}

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

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

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

.page-promotions__card-link {
  display: inline-block;
  color: #2F6BFF;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
  margin-top: auto;
}

.page-promotions__card-link:hover {
  text-decoration: underline;
  color: #6FA3FF;
}

.page-promotions__cta-section {
  text-align: center;
  background: linear-gradient(180deg, #2F6BFF 0%, #6FA3FF 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
  color: #FFFFFF;
  border-radius: 12px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-promotions__cta-title {
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.page-promotions__cta-description {
  font-size: 1.2em;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #E0EFFF;
}

.page-promotions__cta-button--bottom {
  font-size: 1.2em;
  padding: 16px 32px;
  background: #FFFFFF;
  color: #2F6BFF;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions__cta-button--bottom:hover {
  background: #E0EFFF;
  color: #2F6BFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

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

.page-promotions__faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

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

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

/* Responsive Styles */
@media (max-width: 768px) {
  .page-promotions__hero-content {
    padding: 15px;
    margin-top: 15px;
  }

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

  .page-promotions__intro-text {
    font-size: 1em;
  }

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

  .page-promotions__section-title {
    font-size: clamp(1.8em, 5vw, 2.2em);
    margin-bottom: 30px;
  }

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

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

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

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

  .page-promotions__cta-section {
    padding: 40px 15px;
  }

  .page-promotions__cta-title {
    font-size: clamp(2em, 6vw, 2.5em);
  }

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

  .page-promotions__cta-button--bottom {
    font-size: 1.1em;
    padding: 14px 28px;
  }

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

  .page-promotions__faq-answer {
    font-size: 0.95em;
  }

  /* Ensure all content area images are responsive */
  .page-promotions img {
    max-width: 100%;
    height: auto;
  }
}