.page-promotions {
  color: #333333;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-promotions__hero-section {
  background: linear-gradient(135deg, #FFD700, #8B0000);
  padding-top: var(--header-offset, 120px); /* For fixed header spacing */
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
}

.page-promotions__hero-container {
  position: relative;
  z-index: 10;
  text-align: center;
  color: #ffffff;
  max-width: 900px;
  padding: 20px;
}

.page-promotions__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  color: #ffffff;
}

.page-promotions__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-promotions__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.page-promotions__hero-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.1em;
}

.page-promotions__hero-button--primary {
  background-color: #FFD700;
  color: #8B0000;
  border: 2px solid #FFD700;
}

.page-promotions__hero-button--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

.page-promotions__hero-button--secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-promotions__hero-button--secondary:hover {
  background-color: #ffffff;
  color: #8B0000;
}

.page-promotions__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.page-promotions__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.page-promotions__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-promotions__section-title {
  font-size: 2.5em;
  color: #8B0000;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-promotions__section-subtitle {
  font-size: 1.1em;
  color: #555555;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__overview-section, .page-promotions__featured-section, .page-promotions__how-to-claim-section, .page-promotions__terms-section, .page-promotions__faq-section {
  padding: 60px 0;
}

.page-promotions__overview-section {
  background-color: #f9f9f9;
}

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

.page-promotions__promo-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding-bottom: 20px;
}

.page-promotions__promo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.page-promotions__promo-card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  margin-bottom: 20px;
}

.page-promotions__promo-card-title {
  font-size: 1.5em;
  color: #8B0000;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-promotions__promo-card-title a {
  text-decoration: none;
  color: #8B0000;
}

.page-promotions__promo-card-title a:hover {
  color: #FFD700;
}

.page-promotions__promo-card-description {
  font-size: 0.95em;
  color: #666666;
  margin-bottom: 20px;
  padding: 0 15px;
}

.page-promotions__promo-card-button {
  display: inline-block;
  background-color: #FFD700;
  color: #8B0000;
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-promotions__promo-card-button:hover {
  background-color: #e6c200;
}

.page-promotions__featured-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
}

.page-promotions__featured-promo {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.page-promotions__featured-image {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.page-promotions__featured-content {
  padding: 30px;
}

.page-promotions__featured-title {
  font-size: 2em;
  color: #8B0000;
  margin-bottom: 15px;
}

.page-promotions__featured-title a {
  text-decoration: none;
  color: #8B0000;
}

.page-promotions__featured-title a:hover {
  color: #FFD700;
}

.page-promotions__featured-description {
  font-size: 1em;
  color: #666666;
  margin-bottom: 20px;
}

.page-promotions__featured-list {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.page-promotions__featured-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  color: #555555;
}

.page-promotions__featured-list li::before {
  content: '✔';
  color: #FFD700;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-promotions__featured-button {
  display: inline-block;
  background-color: #8B0000;
  color: #ffffff;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-promotions__featured-button:hover {
  background-color: #ae4d4d;
}

.page-promotions__how-to-claim-section {
  background-color: #FDF3D4;
}

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

.page-promotions__step-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease;
}

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

.page-promotions__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #FFD700;
  color: #8B0000;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-promotions__step-title {
  font-size: 1.4em;
  color: #8B0000;
  margin-bottom: 10px;
}

.page-promotions__step-description {
  font-size: 0.95em;
  color: #666666;
}

.page-promotions__how-to-claim-cta {
  text-align: center;
}

.page-promotions__how-to-claim-button {
  display: inline-block;
  background-color: #8B0000;
  color: #ffffff;
  padding: 15px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease;
}

.page-promotions__how-to-claim-button:hover {
  background-color: #ae4d4d;
}

.page-promotions__terms-section {
  background-color: #f9f9f9;
}

.page-promotions__terms-list {
  list-style: disc;
  padding-left: 30px;
  max-width: 900px;
  margin: 0 auto;
  color: #555555;
}

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

.page-promotions__terms-link {
  color: #8B0000;
  text-decoration: underline;
}

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

.page-promotions__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 20px 25px;
}

.page-promotions__faq-question {
  font-size: 1.3em;
  color: #8B0000;
  margin-bottom: 10px;
}

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

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-promotions__hero-title {
    font-size: 2.8em;
  }
  .page-promotions__section-title {
    font-size: 2em;
  }
  .page-promotions__promo-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-promotions__featured-promo {
    flex-direction: column;
  }
  .page-promotions__featured-image {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .page-promotions__hero-section {
    min-height: 500px;
  }
  .page-promotions__hero-title {
    font-size: 2.2em;
  }
  .page-promotions__hero-description {
    font-size: 1em;
  }
  .page-promotions__hero-actions {
    flex-direction: column;
  }
  .page-promotions__hero-button {
    width: 80%;
    margin: 0 auto;
  }
  .page-promotions__section-title {
    font-size: 1.8em;
  }
  .page-promotions__section-subtitle {
    font-size: 0.9em;
  }
  .page-promotions__promo-card-image {
    height: 200px;
  }
  .page-promotions__promo-card-title {
    font-size: 1.3em;
  }
  .page-promotions__featured-image {
    height: 250px;
  }
  .page-promotions__featured-title {
    font-size: 1.6em;
  }
  .page-promotions__step-card {
    padding: 20px;
  }
  .page-promotions__step-title {
    font-size: 1.2em;
  }
  .page-promotions__how-to-claim-button {
    font-size: 1em;
    padding: 12px 30px;
  }
  .page-promotions__terms-list, .page-promotions__faq-item {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-promotions__faq-question {
    font-size: 1.1em;
  }
  .page-promotions__faq-answer {
    font-size: 0.9em;
  }
}