:root {
  --primary-color: #0A246A;
  --secondary-color: #F0B400;
  --text-light: #ffffff;
  --text-dark: #333333;
  --background-dark: #000;
  --background-light: #f9f9f9;
  --border-color: #e0e0e0;
}

.page-promotions {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Body background is #000, so main text is light */
  background-color: var(--background-dark);
  padding-top: 120px; /* Adjust for fixed header */
}

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

.page-promotions__hero-section {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(135deg, var(--primary-color) 0%, #0A246A 100%);
  color: var(--text-light);
  padding-top: 10px; /* Specific adjustment for first section if hero */
}

.page-promotions__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--secondary-color);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

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

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

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

.page-promotions__btn--primary {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  border: 2px solid var(--secondary-color);
}

.page-promotions__btn--primary:hover {
  background-color: #e0a500;
  border-color: #e0a500;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-promotions__btn--secondary {
  background-color: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

.page-promotions__btn--secondary:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-promotions__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 30px;
  color: var(--secondary-color);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.page-promotions__section-title--light {
  color: var(--text-light);
}

.page-promotions__section-intro {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #ccc;
}

.page-promotions__section-intro--light {
  color: #f0f0f0;
}

.page-promotions__overview-section {
  padding: 80px 0;
  background-color: #1a1a1a;
  color: var(--text-light);
}

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

.page-promotions__feature-item {
  background: #2a2a2a;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-promotions__feature-item:hover {
  transform: translateY(-5px);
}

.page-promotions__feature-icon {
  width: 150px; /* Min size 200x200, adjust for visual balance here */
  height: auto;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-promotions__feature-title {
  font-size: 1.6em;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.page-promotions__feature-text {
  font-size: 1em;
  color: #ccc;
}

.page-promotions__types-section {
  padding: 80px 0;
  background-color: var(--primary-color);
  color: var(--text-light);
}

.page-promotions__dark-section {
  background-color: var(--primary-color);
  color: var(--text-light);
}

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

.page-promotions__promo-card {
  background: #0f2b71; /* Darker variant of primary color for contrast */
  padding: 25px;
  border-radius: 10px;
  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;
  align-items: center;
  text-align: center;
}

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

.page-promotions__promo-image {
  width: 100%;
  max-width: 300px; /* Ensure images are not too small, but fit card */
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-promotions__promo-title {
  font-size: 1.5em;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.page-promotions__promo-text {
  font-size: 0.95em;
  color: #e0e0e0;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-promotions__btn--link {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  border: none;
}

.page-promotions__btn--link:hover {
  background-color: #e0a500;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-promotions__claim-section {
  padding: 80px 0;
  background-color: #1a1a1a;
  color: var(--text-light);
}

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

.page-promotions__step-item {
  background: #2a2a2a;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.page-promotions__step-title {
  font-size: 1.6em;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.page-promotions__step-text {
  font-size: 1em;
  color: #ccc;
}

.page-promotions__step-text a {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: bold;
}

.page-promotions__step-text a:hover {
  text-decoration: underline;
}

.page-promotions__terms-section {
  padding: 80px 0;
  background-color: #111;
  color: var(--text-light);
}

.page-promotions__light-bg {
  background-color: #111;
  color: var(--text-light);
}

.page-promotions__terms-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__terms-item {
  background: #222;
  margin-bottom: 15px;
  padding: 20px 25px;
  border-left: 5px solid var(--secondary-color);
  border-radius: 5px;
  font-size: 1.05em;
  color: #e0e0e0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__terms-item a {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: bold;
}

.page-promotions__terms-item a:hover {
  text-decoration: underline;
}

.page-promotions__terms-note {
  text-align: center;
  margin-top: 40px;
  font-style: italic;
  color: #aaa;
}

.page-promotions__why-choose-section {
  padding: 80px 0;
  background-color: #1a1a1a;
  color: var(--text-light);
}

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

.page-promotions__benefit-item {
  background: #2a2a2a;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-promotions__benefit-item:hover {
  transform: translateY(-5px);
}

.page-promotions__benefit-icon {
  width: 150px; /* Min size 200x200, adjust for visual balance here */
  height: auto;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-promotions__benefit-title {
  font-size: 1.6em;
  color: var(--secondary-color);
  margin-bottom: 15px;
}

.page-promotions__benefit-text {
  font-size: 1em;
  color: #ccc;
}

.page-promotions__final-cta-section {
  padding: 80px 0;
  text-align: center;
  background-color: var(--primary-color);
  color: var(--text-light);
}

.page-promotions__final-cta-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-promotions__final-cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.page-promotions__final-cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.page-promotions__btn--large {
  padding: 18px 45px;
  font-size: 1.2em;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-promotions__hero-title {
    font-size: 2.8em;
  }
  .page-promotions__section-title {
    font-size: 2em;
  }
  .page-promotions__final-cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 768px) {
  .page-promotions {
    padding-top: 100px !important; /* Mobile fixed header adjustment */
    font-size: 16px;
    line-height: 1.6;
  }
  .page-promotions__container {
    padding: 0 15px;
  }

  .page-promotions__hero-section,
  .page-promotions__overview-section,
  .page-promotions__types-section,
  .page-promotions__claim-section,
  .page-promotions__terms-section,
  .page-promotions__why-choose-section,
  .page-promotions__final-cta-section {
    padding: 50px 0;
  }

  .page-promotions__hero-title {
    font-size: 2em;
  }
  .page-promotions__hero-description {
    font-size: 1em;
  }
  .page-promotions__cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-promotions__btn {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 20px !important;
    font-size: 1em !important;
  }

  .page-promotions__section-title,
  .page-promotions__final-cta-title {
    font-size: 1.8em;
    margin-bottom: 20px;
  }
  .page-promotions__section-intro,
  .page-promotions__final-cta-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }

  .page-promotions__features-grid,
  .page-promotions__promo-grid,
  .page-promotions__steps-grid,
  .page-promotions__benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-promotions__feature-item,
  .page-promotions__promo-card,
  .page-promotions__step-item,
  .page-promotions__benefit-item {
    padding: 25px;
  }
  
  .page-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    object-fit: contain;
  }
  
  .page-promotions__feature-icon,
  .page-promotions__benefit-icon {
    width: 100% !important; /* Ensure icons also scale */
    max-width: 120px !important; /* But not too large */
    margin-left: auto !important;
    margin-right: auto !important;
  }
  
  .page-promotions__promo-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-promotions__promo-title,
  .page-promotions__feature-title,
  .page-promotions__step-title,
  .page-promotions__benefit-title {
    font-size: 1.3em;
  }

  .page-promotions__terms-item {
    padding: 15px 20px;
    font-size: 1em;
  }
  .page-promotions__btn--large {
    padding: 15px 30px !important;
    font-size: 1.1em !important;
  }
}

@media (max-width: 480px) {
  .page-promotions__hero-title {
    font-size: 1.8em;
  }
  .page-promotions__section-title,
  .page-promotions__final-cta-title {
    font-size: 1.6em;
  }
  .page-promotions__hero-description,
  .page-promotions__section-intro,
  .page-promotions__final-cta-description {
    font-size: 0.9em;
  }
  .page-promotions__promo-title,
  .page-promotions__feature-title,
  .page-promotions__step-title,
  .page-promotions__benefit-title {
    font-size: 1.2em;
  }
  .page-promotions__step-number {
    width: 50px;
    height: 50px;
    font-size: 1.8em;
  }
}