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

.page-promotions__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, main offset from body */
  margin-bottom: 40px;
  overflow: hidden; /* Ensure image doesn't overflow */
}

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

.page-promotions__hero-content {
  text-align: center;
  padding: 30px 20px;
  max-width: 900px;
  margin-top: 20px; /* Separates content from image */
}

.page-promotions__main-title {
  color: #000000;
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 1.2;
  /* Using clamp for responsive font size, but within limits */
  font-size: clamp(2rem, 4vw, 3rem); /* Example, not fixed large value */
}

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

.page-promotions__hero-button {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px #A5C4FF;
  min-width: 200px; /* Ensure button is large enough */
  min-height: 48px;
  line-height: 24px;
  text-align: center;
}

.page-promotions__hero-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px #A5C4FF;
}

.page-promotions__promotions-grid,
.page-promotions__terms-section,
.page-promotions__faq-section {
  max-width: 1200px;
  margin: 0 auto 60px auto;
  padding: 20px;
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.page-promotions__grid-container {
  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 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.page-promotions__card-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
  min-width: 200px; /* Ensure image is not too small */
  min-height: 200px;
}

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

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

.page-promotions__card-description {
  color: #1F2D3D;
  font-size: 0.95em;
  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;
  text-decoration: none;
  border-radius: 20px;
  font-weight: bold;
  text-align: center;
  transition: background 0.3s ease;
  align-self: flex-start; /* Align button to start */
  min-width: 150px; /* Ensure button is large enough */
  min-height: 40px;
  line-height: 20px;
}

.page-promotions__card-button:hover {
  opacity: 0.9;
}

.page-promotions__terms-intro {
  font-size: 1.1em;
  color: #1F2D3D;
  margin-bottom: 20px;
  text-align: center;
}

.page-promotions__terms-list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 30px;
  color: #1F2D3D;
}

.page-promotions__terms-item {
  margin-bottom: 10px;
  font-size: 1em;
}

.page-promotions__terms-link {
  display: block;
  text-align: center;
  color: #2F6BFF;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.05em;
  transition: color 0.3s ease;
}

.page-promotions__terms-link:hover {
  color: #4A8BFF;
}

.page-promotions__faq-item {
  background-color: #F9F9F9;
  border: 1px solid #D6E2FF;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
}

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

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

@media (max-width: 768px) {
  .page-promotions__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

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

  .page-promotions__hero-button {
    padding: 10px 25px;
    font-size: 0.9em;
  }

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

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

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

  .page-promotions__promotion-card img {
    max-width: 100%;
    height: auto;
  }

  .page-promotions__terms-list {
    margin-left: 20px;
  }

  .page-promotions__terms-item {
    font-size: 0.95em;
  }

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

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

  /* Ensure all images in content area are responsive and not smaller than 200px */
  .page-promotions__hero-image,
  .page-promotions__promotion-card img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure min size */
    min-height: 200px; /* Ensure min size */
  }
}