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

.page-promotions__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  color: #ffffff;
  padding-top: 0;
  margin-top: 0;
}

.page-promotions__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

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

.page-promotions__hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 20px;
  text-align: center;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
  border-radius: 12px;
  margin-top: 50px;
  margin-bottom: 50px;
}

.page-promotions__main-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: bold;
  margin-bottom: 20px;
  color: #FFD700;
  line-height: 1.2;
}

.page-promotions__hero-description {
  font-size: 1.2rem;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-promotions__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-promotions__btn--primary {
  background-color: #FFD700;
  color: #8B0000;
}

.page-promotions__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-promotions__btn--secondary {
  background-color: #8B0000;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-promotions__btn--secondary:hover {
  background-color: #6a0000;
  transform: translateY(-2px);
}

.page-promotions__featured-promos-section,
.page-promotions__how-to-claim-section,
.page-promotions__terms-conditions-section,
.page-promotions__cta-section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

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

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

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

.page-promotions__promo-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-promotions__promo-content {
  padding: 25px;
}

.page-promotions__promo-title {
  font-size: 1.5rem;
  color: #8B0000;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-promotions__promo-text {
  font-size: 1rem;
  color: #666666;
  margin-bottom: 20px;
}

.page-promotions__btn--small {
  padding: 10px 20px;
  font-size: 0.9rem;
}

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

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

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

.page-promotions__step-icon {
  background-color: #FFD700;
  color: #8B0000;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  font-weight: bold;
  margin: 0 auto 20px auto;
}

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

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

.page-promotions__terms-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-promotions__terms-item {
  background-color: #ffffff;
  border-left: 5px solid #FFD700;
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-promotions__terms-heading {
  font-size: 1.3rem;
  color: #8B0000;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-promotions__terms-text {
  font-size: 1rem;
  color: #666666;
}

.page-promotions__terms-actions {
  text-align: center;
  margin-top: 40px;
}

.page-promotions__btn--outline {
  background-color: transparent;
  color: #8B0000;
  border: 2px solid #8B0000;
}

.page-promotions__btn--outline:hover {
  background-color: #8B0000;
  color: #FFD700;
  transform: translateY(-2px);
}

.page-promotions__cta-section {
  background: linear-gradient(135deg, #8B0000, #b30000);
  color: #ffffff;
  text-align: center;
  border-radius: 15px;
  padding: 80px 40px;
  margin: 60px auto;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.page-promotions__cta-title {
  font-size: 2.8rem;
  color: #FFD700;
  margin-bottom: 25px;
  font-weight: bold;
}

.page-promotions__cta-description {
  font-size: 1.3rem;
  margin-bottom: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-promotions__btn--large {
  padding: 18px 40px;
  font-size: 1.2rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-promotions__hero-content {
    padding: 80px 20px;
  }

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

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

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

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

  .page-promotions__cta-description {
    font-size: 1.1rem;
  }
}

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

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

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

  .page-promotions__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-promotions__btn {
    width: 100%;
    max-width: 300px;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    margin: 0 auto;
  }

  .page-promotions__featured-promos-section,
  .page-promotions__how-to-claim-section,
  .page-promotions__terms-conditions-section,
  .page-promotions__cta-section {
    padding: 40px 15px;
  }

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

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

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

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

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

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

  .page-promotions__terms-heading {
    font-size: 1.1rem;
  }

  .page-promotions__cta-section {
    padding: 50px 20px;
    margin: 40px auto;
  }

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

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

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

  .page-promotions__btn--large {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .page-promotions img {
    max-width: 100% !important;
    height: auto !important;
  }
}