:root {
  --primary-color: #0056B3; /* Deep Tech Blue */
  --primary-color-dark: #003F80;
  --secondary-color: #FFD700; /* Brilliant Gold */
  --secondary-color-dark: #CCA700;

  --dark-bg-1: #0d0d0d; /* Inferred from prompt, for body background */
  --dark-bg-2: #1a1a1a; /* Slightly lighter dark background */
  --card-bg-dark: #2a2a2a; /* Card background on dark body */

  --text-light: #ffffff; /* Text on dark backgrounds */
  --text-light-secondary: #f0f0f0; /* Slightly dimmer light text */
  --link-color-light: #FFD700; /* Gold links on dark background */
  --link-color-light-hover: #FFFACD;

  --card-bg-faq-question: #ffffff; /* White background for FAQ question */
  --card-bg-faq-question-hover: #f5f5f5;
  --card-bg-faq-question-active: #eeeeee;
  --card-bg-faq-answer: #f9f9f9; /* Light grey background for FAQ answer */
  --text-dark: #333333; /* Dark text on light backgrounds */
  --text-dark-secondary: #555555;
  --border-color-faq: #e0e0e0;
  --border-color-faq-hover: #d0d0d0;
  --link-color-dark: var(--primary-color);
  --link-color-dark-hover: var(--primary-color-dark);
}

.page-promotions__hero-promotions {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 180px 20px 60px; /* Adjusted padding-top for fixed header desktop */
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color-dark)); /* Using brand colors */
  color: var(--text-light);
}

.page-promotions__hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-promotions__hero-image {
  width: 100%;
  max-width: 800px; /* Limit image width */
  height: auto;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-promotions__main-title {
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--text-light); /* White text on dark background */
  line-height: 1.2;
}

.page-promotions__hero-description {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: var(--text-light-secondary); /* Slightly off-white for description */
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-promotions__cta-button {
  display: inline-block;
  padding: 16px 45px;
  background: var(--secondary-color);
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  border: none;
}

.page-promotions__cta-button:hover {
  background: var(--secondary-color-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions__section {
  padding: 60px 20px;
  background: var(--dark-bg-2); /* Darker background for sections */
  color: var(--text-light);
}

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

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

.page-promotions__section-title {
  font-size: 36px;
  font-weight: bold;
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-promotions__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  border-radius: 2px;
}

.page-promotions__text-block {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 25px;
  color: var(--text-light-secondary);
}

.page-promotions__highlight {
  color: var(--secondary-color);
  font-weight: bold;
}