.page-promotions {
  background-color: #08160F;
  color: #F2FFF6;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: 10px; /* Small padding to prevent content from touching header */
}

.page-promotions__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  gap: 30px;
  background-color: #11271B;
  border-radius: 12px;
  margin: 0 20px 40px;
  overflow: hidden;
}

.page-promotions__hero-image-wrapper {
  width: 100%;
  max-width: 1200px; /* Max width for hero image */
  border-radius: 8px;
  overflow: hidden;
}

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

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

.page-promotions__main-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #F2FFF6;
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__hero-description {
  font-size: 1.1rem;
  color: #A7D9B8;
  margin-bottom: 30px;
}

.page-promotions__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  min-width: 200px;
  text-align: center;
}

.page-promotions__cta-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

.page-promotions__promotions-grid {
  padding: 40px 20px;
  margin-bottom: 40px;
}

.page-promotions__section-title {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #F2FFF6;
  background: linear-gradient(90deg, #57E38D, #22C768);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

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

.page-promotions__promotion-card {
  background-color: #11271B;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #2E7A4E;
}

.page-promotions__promotion-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-promotions__card-image {
  width: 100%;
  height: 250px; /* Ensure sufficient height for content image */
  object-fit: cover;
  display: block;
}

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

.page-promotions__card-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #F2FFF6;
}

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

.page-promotions__card-title a:hover {
  color: #57E38D;
}

.page-promotions__card-description {
  font-size: 1rem;
  color: #A7D9B8;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-promotions__card-button {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  align-self: flex-start;
}

.page-promotions__card-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

.page-promotions__benefits-section {
  background-color: #0A4B2C;
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 40px;
  border-radius: 12px;
  margin: 0 20px 40px;
}

.page-promotions__benefits-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 40px auto 0;
}

.page-promotions__benefit-item {
  background-color: #11271B;
  padding: 30px;
  border-radius: 10px;
  border: 1px solid #2E7A4E;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.page-promotions__benefit-title {
  font-size: 1.6rem;
  color: #F2C14E; /* Gold color for benefit titles */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-promotions__benefit-description {
  font-size: 1rem;
  color: #A7D9B8;
}

.page-promotions__cta-section {
  background-color: #11271B;
  padding: 50px 20px;
  text-align: center;
  border-radius: 12px;
  margin: 0 20px 40px;
  border: 1px solid #2E7A4E;
}

.page-promotions__cta-title {
  font-size: 2rem;
  font-weight: 700;
  color: #F2FFF6;
  margin-bottom: 20px;
}

.page-promotions__cta-description {
  font-size: 1.1rem;
  color: #A7D9B8;
  margin-bottom: 30px;
}

.page-promotions__cta-button--large {
  padding: 18px 40px;
  font-size: 1.1rem;
  min-width: 250px;
}

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

  .page-promotions__main-title {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
  }

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

  .page-promotions__promotions-grid {
    padding: 30px 15px;
  }

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

  .page-promotions__grid-container {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .page-promotions__card-image {
    height: 200px; /* Ensure sufficient height for content image on smaller screens */
  }

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

  .page-promotions__benefits-section {
    padding: 40px 15px;
    margin: 0 15px 30px;
  }

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

  .page-promotions__benefit-title {
    font-size: 1.4rem;
  }

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

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

  /* Ensure all images are responsive and do not overflow */
  .page-promotions img {
    max-width: 100%;
    height: auto;
    display: block;
  }

  /* Content area images should not be smaller than 200px */
  .page-promotions__hero-image,
  .page-promotions__card-image {
    min-width: 200px;
    min-height: 200px;
  }
}

@media (max-width: 549px) {
  .page-promotions__hero-section {
    padding: 20px 10px;
    margin: 0 10px 20px;
  }

  .page-promotions__main-title {
    font-size: clamp(1.4rem, 7vw, 2rem);
  }

  .page-promotions__promotions-grid {
    padding: 20px 10px;
  }

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

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

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

  .page-promotions__card-content {
    padding: 20px;
  }

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

  .page-promotions__benefits-section {
    padding: 30px 10px;
    margin: 0 10px 20px;
  }

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

  .page-promotions__cta-section {
    padding: 30px 10px;
    margin: 0 10px 20px;
  }

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

  .page-promotions__cta-button {
    width: 100%;
    max-width: 300px;
  }

  .page-promotions__cta-button--large {
    width: 100%;
    max-width: 300px;
  }

  /* Ensure content area does not cause horizontal scroll */
  .page-promotions {
    overflow-x: hidden;
  }
  .page-promotions__hero-image,
  .page-promotions__card-image {
    max-width: 100%;
    height: auto;
  }

  /* Content area image CSS size: must not make display size smaller than 200px */
  .page-promotions__hero-image,
  .page-promotions__card-image {
    min-width: 200px;
    min-height: 200px;
  }
}