.page-promotions {
  font-family: Arial, sans-serif;
  color: #333333;
  background: #ffffff;
}

.page-promotions__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

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

.page-promotions__hero-content {
  max-width: 900px;
  padding: 30px 15px;
  background: rgba(255, 255, 255, 0.95); /* Slightly transparent white for readability */
  border-radius: 10px;
  margin-top: -80px; /* Overlap with image for visual appeal */
  position: relative; /* Ensure content is above image but not overlaying it */
  z-index: 1;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-promotions__main-title {
  color: #000000;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 15px;
  font-size: clamp(28px, 4vw, 48px);
}

.page-promotions__description {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #555555;
}

.page-promotions__cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-promotions__cta-buttons--centered {
  margin-top: 30px;
}

.page-promotions__btn-primary,
.page-promotions__btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions__btn-primary {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-promotions__btn-primary:hover {
  background-color: #e0a53b;
  border-color: #e0a53b;
}

.page-promotions__btn-secondary {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
}

.page-promotions__btn-secondary:hover {
  background-color: #333333;
  border-color: #333333;
}

.page-promotions__featured-offers-section,
.page-promotions__how-to-claim-section,
.page-promotions__faq-section,
.page-promotions__cta-bottom-section {
  padding: 50px 20px;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-promotions__section-title {
  text-align: center;
  color: #000000;
  font-size: clamp(24px, 3.5vw, 38px);
  margin-bottom: 15px;
  font-weight: 700;
}

.page-promotions__section-description {
  text-align: center;
  font-size: 17px;
  line-height: 1.6;
  color: #555555;
  max-width: 800px;
  margin: 0 auto 40px;
}

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

.page-promotions__offer-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  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.1);
}

.page-promotions__offer-image {
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  filter: none;
}

.page-promotions__card-title {
  color: #000000;
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-promotions__card-text {
  font-size: 16px;
  line-height: 1.5;
  color: #666666;
  margin-bottom: 25px;
}

.page-promotions__card-button {
  display: inline-block;
  background-color: #FCBC45;
  color: #000000;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

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

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

.page-promotions__step-card {
  background: #f9f9f9;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-promotions__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #000000;
  color: #FFFFFF;
  font-size: 24px;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 20px;
}

.page-promotions__step-title {
  color: #000000;
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-promotions__step-text {
  font-size: 16px;
  line-height: 1.5;
  color: #666666;
}

.page-promotions__faq-list {
  margin-top: 30px;
}

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

.page-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  color: #000000;
  background: #f9f9f9;
  border-bottom: 1px solid #e0e0e0;
  list-style: none;
}

.page-promotions__faq-question::-webkit-details-marker {
  display: none;
}

.page-promotions__faq-qtext {
  flex-grow: 1;
}

.page-promotions__faq-toggle {
  font-size: 24px;
  line-height: 1;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.page-promotions__faq-item[open] .page-promotions__faq-toggle {
  transform: rotate(45deg);
}

.page-promotions__faq-answer {
  padding: 15px 25px 25px;
  font-size: 16px;
  line-height: 1.6;
  color: #555555;
  border-top: 1px solid #f0f0f0;
}

.page-promotions__cta-bottom-section {
  text-align: center;
  background-color: #f0f0f0;
  border-radius: 15px;
  padding: 60px 20px;
  margin-bottom: 50px;
}

@media (max-width: 1024px) {
  .page-promotions__hero-content {
    margin-top: -60px;
    padding: 25px 15px;
  }

  .page-promotions__main-title {
    font-size: clamp(26px, 4.5vw, 42px);
  }

  .page-promotions__description {
    font-size: 17px;
  }

  .page-promotions__section-title {
    font-size: clamp(22px, 3.8vw, 34px);
  }

  .page-promotions__section-description {
    font-size: 16px;
  }

  .page-promotions__offer-card,
  .page-promotions__step-card {
    padding: 20px;
  }

  .page-promotions__card-title,
  .page-promotions__step-title {
    font-size: 20px;
  }

  .page-promotions__card-text,
  .page-promotions__step-text {
    font-size: 15px;
  }

  .page-promotions__faq-question {
    font-size: 17px;
    padding: 15px 20px;
  }

  .page-promotions__faq-answer {
    font-size: 15px;
    padding: 12px 20px 20px;
  }
}

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

  .page-promotions__hero-section,
  .page-promotions__featured-offers-section,
  .page-promotions__how-to-claim-section,
  .page-promotions__faq-section,
  .page-promotions__cta-bottom-section,
  .page-promotions__offer-card,
  .page-promotions__step-card,
  .page-promotions__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-promotions__hero-content {
    margin-top: -40px;
    padding: 20px 15px;
  }

  .page-promotions__main-title {
    font-size: clamp(24px, 7vw, 36px);
  }

  .page-promotions__description {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .page-promotions__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .page-promotions__btn-primary,
  .page-promotions__btn-secondary,
  .page-promotions__card-button {
    width: 100% !important;
    padding: 12px 20px;
  }

  .page-promotions__section-title {
    font-size: clamp(20px, 6vw, 30px);
  }

  .page-promotions__section-description {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .page-promotions__offer-grid,
  .page-promotions__steps-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-promotions__offer-image {
    max-height: 200px;
  }

  .page-promotions__card-title,
  .page-promotions__step-title {
    font-size: 18px;
  }

  .page-promotions__card-text,
  .page-promotions__step-text {
    font-size: 14px;
  }

  .page-promotions__faq-question {
    font-size: 16px;
    padding: 15px 18px;
  }

  .page-promotions__faq-answer {
    font-size: 14px;
    padding: 10px 18px 18px;
  }

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