/* style/resources-latest-promotions.css */
:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --text-dark: #333333;
  --text-light: #ffffff;
  --background-light: #ffffff;
  --background-dark: #26A9E0; /* Using primary color for dark sections */
  --button-login-color: #EA7C07;
}

.page-resources-latest-promotions {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark); /* Default text color for light backgrounds */
  background-color: var(--background-light); /* Default body background is white */
}

/* Common Section Styling */
.page-resources-latest-promotions__section {
  padding: 60px 0;
  text-align: center;
  position: relative;
}

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

.page-resources-latest-promotions__section-title {
  font-size: 36px;
  margin-bottom: 20px;
  color: var(--primary-color);
  font-weight: bold;
}

.page-resources-latest-promotions__section-description {
  font-size: 18px;
  margin-bottom: 40px;
  color: #555;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Dark Background Sections */
.page-resources-latest-promotions__dark-section {
  background-color: var(--background-dark);
  color: var(--text-light);
}