:root {
  --page-promotions-primary-color: #11A84E; /* Main color */
  --page-promotions-secondary-color: #22C768; /* Auxiliary color */
  --page-promotions-bg-color: #08160F; /* Background */
  --page-promotions-card-bg: #11271B; /* Card BG */
  --page-promotions-text-main: #F2FFF6; /* Text Main */
  --page-promotions-text-secondary: #A7D9B8; /* Text Secondary */
  --page-promotions-border-color: #2E7A4E; /* Border */
  --page-promotions-btn-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  --page-promotions-glow-color: #57E38D; /* Glow */
  --page-promotions-gold-color: #F2C14E; /* Gold */
  --page-promotions-divider-color: #1E3A2A; /* Divider */
  --page-promotions-deep-green-color: #0A4B2C; /* Deep Green */
}

.page-promotions {
  font-family: Arial, sans-serif;
  color: var(--page-promotions-text-main); /* Main text color for the page, as body is dark */
  background-color: var(--page-promotions-bg-color); /* Ensure consistency with body bg */
  line-height: 1.6;
  font-size: 16px;
}

/* Base container for content sections */
.page-promotions__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

/* Section titles */
.page-promotions__section-title {
  font-size: 2.8em;
  font-weight: bold;
  color: var(--page-promotions-text-main);
  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(--page-promotions-glow-color);
  border-radius: 2px;
}