/* style/promotions.css */

/* Variables (if needed, but using shared.css vars is better) */
:root {
  --primary-color: #0A1931;
  --secondary-color: #E0B400;
  --text-light: #ffffff;
  --text-dark: #333333;
  --bg-light: #f8f9fa; /* A very light grey for contrast on dark body */
  --bg-dark-card: rgba(255, 255, 255, 0.1);
}

/* Base styles for the page content, ensuring contrast with body background */
/* Body background is var(--site-primary) which is #0A1931 (dark) */
.page-promotions {
  color: var(--text-light); /* Light text on dark body background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background-color: transparent; /* inherited from body */
}

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