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

.page-promotions__hero-section {
  padding-top: 10px; /* Small top padding to account for shared header */
  background: linear-gradient(180deg, #2F6BFF 0%, #6FA3FF 100%);
  color: #FFFFFF;
  text-align: center;
  padding-bottom: 50px;
}

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

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

.page-promotions__hero-content {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-promotions__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.05em;
  color: #FFFFFF;
}

.page-promotions__description {
  font-size: 1.15rem;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

.page-promotions__cta-button {
  display: inline-block;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  min-width: 200px; /* Ensure minimum button size */
  min-height: 48px; /* Ensure minimum button size */
}

.page-promotions__cta-button:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3);
  color: #FFFFFF;
}

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

.page-promotions__list-section,
.page-promotions__how-to-claim,
.page-promotions__faq-section,
.page-promotions__disclaimer-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-promotions__section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #1F2D3D;
  background: linear-gradient(90deg, #2F6BFF, #6FA3FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

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

.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-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  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 30px rgba(0, 0, 0, 0.15);
}

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

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

.page-promotions__card-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.3;
}

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

.page-promotions__card-title a:hover {
  color: #1F2D3D;
}

.page-promotions__card-text {
  font-size: 1rem;
  color: #1F2D3D;
  margin-bottom: 15px;
  flex-grow: 1;
}

.page-promotions__card-date {
  font-size: 0.9rem;
  color: #6FA3FF;
  margin-bottom: 15px;
}

.page-promotions__card-button {
  display: inline-block;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border: none;
  cursor: pointer;
  align-self: flex-start; /* Align button to start */
  min-width: 120px; /* Ensure minimum button size */
  min-height: 40px; /* Ensure minimum button size */
}

.page-promotions__card-button:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
  color: #FFFFFF;
}

.page-promotions__steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

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

.page-promotions__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  font-size: 1.8rem;
  font-weight: bold;
  border-radius: 50%;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-promotions__step-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1F2D3D;
  margin-bottom: 10px;
}

.page-promotions__step-text {
  font-size: 1rem;
  color: #1F2D3D;
}

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

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

.page-promotions__faq-question {
  display: block;
  padding: 20px 25px;
  font-size: 1.15rem;
  font-weight: 600;
  color: #2F6BFF;
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease;
}

.page-promotions__faq-question:hover {
  color: #1F2D3D;
}

.page-promotions__faq-question::after {
  content: '+';
  position: absolute;
  right: 25px;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.page-promotions__faq-item[open] .page-promotions__faq-question::after {
  content: '-';
  transform: rotate(180deg);
}

.page-promotions__faq-answer {
  padding: 0 25px 20px;
  font-size: 1rem;
  color: #1F2D3D;
  line-height: 1.8;
}

.page-promotions__disclaimer-section {
  text-align: center;
  padding-top: 30px;
  padding-bottom: 30px;
  border-top: 1px solid #D6E2FF;
}

.page-promotions__disclaimer-text {
  font-size: 0.95rem;
  color: #1F2D3D;
}

.page-promotions__disclaimer-text a {
  color: #2F6BFF;
  text-decoration: none;
  font-weight: 600;
}

.page-promotions__disclaimer-text a:hover {
  text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-promotions__main-title {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .page-promotions__description,
  .page-promotions__section-description {
    font-size: 1rem;
  }

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

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

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

  .page-promotions__promotion-card {
    flex-direction: column;
  }

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

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

  .page-promotions__card-text {
    font-size: 0.95rem;
  }

  .page-promotions__card-button {
    width: 100%;
    align-self: center;
  }

  .page-promotions__hero-image,
  .page-promotions__card-image {
    max-width: 100%;
    height: auto; /* Ensure images scale down properly */
  }

  /* Enforce minimum image size for content area images */
  .page-promotions img {
    max-width: 100%;
    height: auto; /* Required for mobile overflow prevention */
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
  }
}

@media (max-width: 480px) {
  .page-promotions__hero-section,
  .page-promotions__list-section,
  .page-promotions__how-to-claim,
  .page-promotions__faq-section,
  .page-promotions__disclaimer-section {
    padding: 40px 15px;
  }

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

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