:root {
  --primary-color: #017439; /* Main brand green */
  --secondary-color: #FFFFFF; /* White */
  --register-button-bg: #C30808; /* Specific red for register/login */
  --register-login-font: #FFFF00; /* Yellow for register/login font */
  --text-dark: #333333;
  --text-light: #ffffff;
  --border-light: #e0e0e0;
  --bg-light: #f9f9f9;
}

.page-resources-b29-latest-promotions {
  font-family: 'Arial', sans-serif;
  color: var(--text-dark); /* Default text color for light background */
  background-color: var(--secondary-color); /* Body background is white */
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

/* Hero Section */
.page-resources-b29-latest-promotions__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #004d2b 100%); /* Darker gradient */
  color: var(--text-light);
  overflow: hidden; /* Prevent image overflow */
}