.page-promotions {
  color: #ffffff; /* Body background is #000 (dark), so use light text */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: #000; /* Ensure main content background matches body */
}

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

.page-promotions__hero-section {
  position: relative;
  padding-top: 120px; /* Desktop: Adjust for fixed header */
  padding-bottom: 60px;
  text-align: center;
  background: linear-gradient(135deg, #CC0000 0%, #800000 100%); /* Brand primary color gradient */
  overflow: hidden;
}

.page-promotions__hero-title {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #FFD700; /* Use auxiliary color for highlight */
  line-height: 1.2;
}

.page-promotions__hero-description {
  font-size: 18px;
  margin-bottom: 40px;
  color: #f0f0f0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__hero-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-promotions__cta-button {
  display: inline-block;
  padding: 15px 40px;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions__cta-button--primary {
  background: #FFD700; /* Auxiliary color */
  color: #333333; /* Dark text for light background */
}

.page-promotions__cta-button--primary:hover {
  background: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

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

.page-promotions__cta-button--secondary:hover {
  background: #FFD700;
  color: #333333;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-promotions__hero-image {
  width: 100%;
  max-width: 1000px;
  height: auto;
  margin-top: 20px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  object-fit: cover;
}

.page-promotions__section-title {
  font-size: 38px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 50px;
  color: #FFD700;
  padding-top: 60px;
}

.page-promotions__featured-promos-section {
  padding: 80px 0;
  background-color: #0d0d0d;
}

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

.page-promotions__promo-card {
  background: rgba(255, 255, 255, 0.08); /* Slightly transparent white for dark background */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

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

.page-promotions__promo-card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-promotions__promo-card-title {
  font-size: 24px;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-promotions__promo-card-description {
  font-size: 16px;
  color: #f0f0f0;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-promotions__card-button {
  display: inline-block;
  padding: 12px 25px;
  background: #CC0000; /* Primary brand color */
  color: #ffffff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions__card-button:hover {
  background: #990000;
  transform: translateY(-2px);
}

.page-promotions__how-to-claim-section {
  padding: 80px 0;
  background-color: #1a1a1a;
}

.page-promotions__steps-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-promotions__steps-image {
  flex: 1;
  max-width: 50%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions__steps-list {
  flex: 1;
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.page-promotions__step-item:last-child {
  margin-bottom: 0;
}

.page-promotions__step-title {
  font-size: 22px;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-promotions__step-description {
  font-size: 16px;
  color: #f0f0f0;
}

.page-promotions__terms-conditions-section {
  padding: 80px 0;
  background-color: #0d0d0d;
}

.page-promotions__terms-intro {
  font-size: 18px;
  text-align: center;
  margin-bottom: 40px;
  color: #f0f0f0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__terms-list {
  list-style: disc;
  margin-left: 25px;
  color: #f0f0f0;
  font-size: 16px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__terms-item {
  margin-bottom: 15px;
  line-height: 1.8;
}

.page-promotions__button-link {
  display: block;
  width: fit-content;
  margin: 40px auto 0 auto;
  padding: 12px 30px;
  background: #CC0000;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 17px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions__button-link:hover {
  background: #990000;
  transform: translateY(-2px);
}

.page-promotions__why-choose-section {
  padding: 80px 0;
  background-color: #1a1a1a;
}

.page-promotions__why-choose-intro {
  font-size: 18px;
  text-align: center;
  margin-bottom: 40px;
  color: #f0f0f0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__why-choose-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
}

.page-promotions__why-choose-item {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.page-promotions__why-choose-title {
  font-size: 22px;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-promotions__why-choose-description {
  font-size: 16px;
  color: #f0f0f0;
}

.page-promotions__final-cta-section {
  padding: 80px 0 100px 0;
  background: linear-gradient(45deg, #CC0000 0%, #800000 100%);
  text-align: center;
}

.page-promotions__final-cta-description {
  font-size: 18px;
  margin-bottom: 40px;
  color: #f0f0f0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__final-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-promotions__hero-title {
    font-size: 42px;
  }
  .page-promotions__section-title {
    font-size: 32px;
  }
  .page-promotions__steps-wrapper {
    flex-direction: column;
  }
  .page-promotions__steps-image {
    max-width: 80%;
  }
}

@media (max-width: 768px) {
  .page-promotions__hero-section {
    padding-top: 100px !important; /* Mobile: Adjust for fixed header */
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .page-promotions__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .page-promotions__hero-title {
    font-size: 32px;
  }
  .page-promotions__hero-description {
    font-size: 16px;
  }
  .page-promotions__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-promotions__cta-button {
    padding: 12px 25px;
    font-size: 16px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-promotions__hero-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    border-radius: 8px;
  }
  .page-promotions__section-title {
    font-size: 28px;
    margin-bottom: 30px;
    padding-top: 40px;
  }
  .page-promotions__featured-promos-section,
  .page-promotions__how-to-claim-section,
  .page-promotions__terms-conditions-section,
  .page-promotions__why-choose-section,
  .page-promotions__final-cta-section {
    padding: 50px 0;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .page-promotions__promo-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-promotions__promo-card {
    padding: 20px;
  }
  .page-promotions__promo-card-image {
    height: 180px;
  }
  .page-promotions__promo-card-title {
    font-size: 20px;
  }
  .page-promotions__promo-card-description {
    font-size: 15px;
  }
  .page-promotions__card-button {
    padding: 10px 20px;
    font-size: 15px;
  }
  .page-promotions__steps-wrapper {
    flex-direction: column;
    gap: 20px;
  }
  .page-promotions__steps-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    border-radius: 8px;
  }
  .page-promotions__step-item {
    padding: 15px 20px;
  }
  .page-promotions__step-title {
    font-size: 19px;
  }
  .page-promotions__step-description {
    font-size: 15px;
  }
  .page-promotions__terms-intro,
  .page-promotions__why-choose-intro,
  .page-promotions__final-cta-description {
    font-size: 16px;
  }
  .page-promotions__terms-list,
  .page-promotions__why-choose-list {
    font-size: 15px;
  }
  .page-promotions__button-link {
    font-size: 16px;
    padding: 10px 25px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-promotions__why-choose-item {
    padding: 20px;
  }
  .page-promotions__why-choose-title {
    font-size: 20px;
  }
  .page-promotions__final-cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 480px) {
  .page-promotions__hero-title {
    font-size: 28px;
  }
  .page-promotions__section-title {
    font-size: 24px;
  }
  .page-promotions__hero-cta-buttons {
    gap: 10px;
  }
  .page-promotions__cta-button {
    font-size: 15px;
    padding: 10px 20px;
  }
  .page-promotions__promo-card-title {
    font-size: 18px;
  }
  .page-promotions__promo-card-image {
    height: 160px;
  }
  .page-promotions__step-title {
    font-size: 18px;
  }
  .page-promotions__why-choose-title {
    font-size: 18px;
  }
  .page-promotions__final-cta-buttons {
    gap: 10px;
  }
}