.page-promotions__hero-section {
  position: relative;
  background-color: #017439;
  color: #FFFFFF;
  padding-bottom: 20px;
}

.page-promotions__hero-image-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.page-promotions__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7);
}

.page-promotions__hero-content {
  position: relative;
  text-align: center;
  padding: 20px 20px 40px;
  max-width: 960px;
  margin: 0 auto;
}

.page-promotions__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 15px;
  color: #FFFFFF;
  /* Using clamp for responsive H1 font size */
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.page-promotions__hero-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__cta-button {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-promotions__cta-button--register {
  background-color: #C30808;
  color: #FFFF00;
}

.page-promotions__cta-button--register:hover {
  background-color: #a00606;
}

.page-promotions__offers-section,
.page-promotions__faq-section {
  padding: 40px 20px;
  background-color: #FFFFFF;
  color: #333333;
}

.page-promotions__section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #017439;
}

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

.page-promotions__offer-card {
  background-color: #f8f8f8;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

.page-promotions__card-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #017439;
}

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

.page-promotions__card-button {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  background-color: #017439;
  color: #FFFFFF;
  transition: background-color 0.3s ease;
  text-align: center;
}

.page-promotions__card-button:hover {
  background-color: #005a2e;
}

.page-promotions__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-promotions__faq-item {
  background-color: #f8f8f8;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-promotions__faq-question {
  font-size: 1.25rem;
  font-weight: 600;
  padding: 20px;
  cursor: pointer;
  color: #017439;
  position: relative;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.page-promotions__faq-question.active::after {
  content: '-';
  transform: rotate(0deg);
}

.page-promotions__faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-promotions__faq-answer p {
  margin-top: 0;
  padding-bottom: 20px;
  font-size: 1rem;
  line-height: 1.6;
  color: #555555;
}

.page-promotions__faq-item.open .page-promotions__faq-answer {
  max-height: 200px; /* Adjust as needed for content */
  padding-top: 10px;
}

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

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

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

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

  .page-promotions__section-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }

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

  .page-promotions__offer-card {
    margin-bottom: 20px;
  }

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

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

  .page-promotions__hero-image,
  .page-promotions__offer-image {
    max-width: 100%;
    height: auto;
  }
}

/* Ensure content area images are not smaller than 200px, specifically for images within .page-promotions */
.page-promotions img {
  min-width: 200px;
  min-height: 200px;
}

.page-promotions__hero-image {
  min-width: unset; /* Allow hero image to scale down */
  min-height: unset;
}

.page-promotions__offer-image {
  min-width: 200px;
  min-height: 150px; /* Adjust height for card aspect ratio */
}

@media (max-width: 768px) {
  .page-promotions img {
    max-width: 100%;
    height: auto;
  }

  /* Override min-width for mobile to prevent overflow */
  .page-promotions__offer-image {
    min-width: unset;
  }
}