.page-resources-latest-promotions {
  font-family: 'Arial', sans-serif;
  color: #ffffff; /* Light text for dark body background */
  background-color: transparent; /* Body background from shared.css */
  line-height: 1.6;
}

.page-resources-latest-promotions__hero-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  padding-top: var(--header-offset, 120px); /* Adjust for fixed header */
  min-height: 500px;
  background-color: rgba(0, 0, 0, 0.7); /* Dark overlay for image */
  overflow: hidden;
}

.page-resources-latest-promotions__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.page-resources-latest-promotions__hero-content {
  text-align: center;
  max-width: 900px;
  z-index: 1;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background for readability */
  border-radius: 10px;
}

.page-resources-latest-promotions__main-title {
  font-size: 3.2em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources-latest-promotions__intro-text {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-resources-latest-promotions__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-resources-latest-promotions__btn-primary,
.page-resources-latest-promotions__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  box-sizing: border-box;
  max-width: 100%; /* For mobile responsiveness */
  white-space: normal; /* Allow text wrap */
  word-wrap: break-word; /* Allow text wrap */
}

.page-resources-latest-promotions__btn-primary {
  background-color: #FFD700; /* Gold */
  color: #121212; /* Dark text for gold background */
  border: 2px solid #FFD700;
}

.page-resources-latest-promotions__btn-primary:hover {
  background-color: #DC143C; /* Red on hover */
  color: #ffffff;
  border-color: #DC143C;
}

.page-resources-latest-promotions__btn-secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
}

.page-resources-latest-promotions__btn-secondary:hover {
  background-color: #FFD700;
  color: #121212;
}

.page-resources-latest-promotions__btn-center {
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
    display: block; /* Ensure it takes full width for centering */
    width: fit-content; /* Adjust width to content */
    min-width: 200px;
    text-align: center;
}

.page-resources-latest-promotions__section {
  padding: 60px 20px;
  background-color: #1a1a1a; /* Slightly lighter dark background for sections */
  margin-bottom: 20px;
}

.page-resources-latest-promotions__section:last-of-type {
  margin-bottom: 0;
}

.page-resources-latest-promotions__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px; /* Inner padding for content */
}

.page-resources-latest-promotions__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-resources-latest-promotions__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #DC143C; /* Red accent */
  border-radius: 2px;
}

.page-resources-latest-promotions__section-title--light {
    color: #ffffff; /* White text for dark-bg section */
}

.page-resources-latest-promotions__sub-title {
  font-size: 2em;
  color: #FFD700;
  margin-top: 50px;
  margin-bottom: 25px;
  text-align: left;
}

.page-resources-latest-promotions__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #f0f0f0;
  text-align: justify;
}

.page-resources-latest-promotions__text-block--light {
    color: #ffffff;
}

.page-resources-latest-promotions__content-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: block; /* Ensure it behaves as a block element */
  object-fit: cover;
}

.page-resources-latest-promotions__card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-resources-latest-promotions__card {
  background-color: rgba(255, 255, 255, 0.08); /* Slightly transparent white for dark theme */
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  color: #ffffff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-latest-promotions__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
}

.page-resources-latest-promotions__card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistent card appearance */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-resources-latest-promotions__card-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-resources-latest-promotions__card-text {
  font-size: 1em;
  color: #f0f0f0;
  flex-grow: 1; /* Ensures text takes available space */
}

.page-resources-latest-promotions__list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-resources-latest-promotions__list-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-left: 5px solid #DC143C;
  padding: 20px 25px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  color: #ffffff;
}

.page-resources-latest-promotions__list-title {
  font-size: 1.3em;
  color: #FFD700;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-resources-latest-promotions__faq-list {
  margin-top: 30px;
}

.page-resources-latest-promotions__faq-item {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-resources-latest-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: #2a2a2a; /* Slightly different background for question */
  color: #FFD700;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-resources-latest-promotions__faq-question:hover {
  background-color: #3a3a3a;
}

.page-resources-latest-promotions__faq-title {
  margin: 0;
  color: #FFD700;
  font-size: 1em; /* Adjust to fit parent font size */
}

.page-resources-latest-promotions__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #DC143C; /* Red toggle */
}

.page-resources-latest-promotions__faq-item.active .page-resources-latest-promotions__faq-toggle {
  transform: rotate(45deg); /* Plus to X */
}

.page-resources-latest-promotions__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #f0f0f0;
}

.page-resources-latest-promotions__faq-item.active .page-resources-latest-promotions__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to reveal content */
  padding: 15px 25px;
}

.page-resources-latest-promotions__faq-answer p {
  margin: 0;
  padding-bottom: 10px; /* Add some padding at the bottom of the paragraph */
}

.page-resources-latest-promotions__cta-final {
  background-color: #DC143C; /* Red background for final CTA */
  text-align: center;
  padding: 80px 20px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.page-resources-latest-promotions__cta-final .page-resources-latest-promotions__section-title {
  color: #ffffff;
}

.page-resources-latest-promotions__cta-final .page-resources-latest-promotions__section-title::after {
  background-color: #FFD700; /* Gold accent */
}

.page-resources-latest-promotions__cta-final .page-resources-latest-promotions__text-block {
  color: #ffffff;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

.page-resources-latest-promotions__cta-final .page-resources-latest-promotions__btn-primary {
  background-color: #FFD700;
  color: #DC143C; /* Red text on gold button */
  border-color: #FFD700;
}
}