:root {
  --primary-color: #0A2463;
  --secondary-color: #E0B34D;
  --text-light: #ffffff;
  --text-dark: #333333;
  --bg-dark: #1a1a2e;
  --bg-light-card: #ffffff;
  --border-color: #e0e0e0;
}

/* Base styles for the page content, ensuring contrast with shared body background */
.page-promotions {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-light); /* Default text color for dark body background */
  background-color: var(--bg-dark); /* Ensure consistency if body background is overridden */
}

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

/* Sections */
.page-promotions__hero-section,
.page-promotions__overview-section,
.page-promotions__how-to-claim-section,
.page-promotions__terms-section,
.page-promotions__faq-section,
.page-promotions__brand-section,
.page-promotions__blog-section {
  padding: 60px 0;
  position: relative;
}

/* Specific padding for the first content section */
.page-promotions__hero-section {
  padding-top: 120px; /* Desktop: Adjust based on header height */
}

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

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

/* Titles */
.page-promotions__main-title {
  font-size: 48px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  color: var(--secondary-color);
  line-height: 1.2;
}

.page-promotions__main-title .page-promotions__title-link {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-promotions__main-title .page-promotions__title-link:hover {
  color: #ffda8b; /* Lighter gold on hover */
}

.page-promotions__hero-description {
  font-size: 18px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: var(--text-light);
}

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

.page-promotions__section-intro {
  font-size: 17px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: var(--text-light);
}

/* CTA Buttons */
.page-promotions__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.page-promotions__cta-buttons--centered {
  margin-top: 50px;
}

.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.15);
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-promotions__btn-primary {
  background: var(--secondary-color);
  color: var(--primary-color);
}

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

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