.page-resources-ae888-latest-promotions {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Body background is dark, so text is light */
  background-color: var(--black-color); /* Inherit from shared.css */
  padding-top: 0; /* Assuming shared.css handles body padding-top for header offset */
}

/* Hero Section */
.page-resources-ae888-latest-promotions__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 600px;
  padding: 80px 20px;
  background-color: #0d0d0d; /* Dark background for hero */
  color: #ffffff;
  padding-top: var(--header-offset, 120px); /* Apply header offset here if body doesn't have it */
}

.page-resources-ae888-latest-promotions__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-resources-ae888-latest-promotions__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Slightly dim the background image */
}

.page-resources-ae888-latest-promotions__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.page-resources-ae888-latest-promotions__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #26A9E0; /* Brand color for title */
  text-shadow: 0 0 10px rgba(38, 169, 224, 0.7);
}

.page-resources-ae888-latest-promotions__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.page-resources-ae888-latest-promotions__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap; /* Ensure buttons wrap on small screens */
}

.page-resources-ae888-latest-promotions__btn-primary,
.page-resources-ae888-latest-promotions__btn-secondary,
.page-resources-ae888-latest-promotions__btn-small {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%; /* Ensure buttons are responsive */
}

.page-resources-ae888-latest-promotions__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-resources-ae888-latest-promotions__btn-primary:hover {
  background-color: #1e87b8;
  border-color: #1e87b8;
}

.page-resources-ae888-latest-promotions__btn-secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-resources-ae888-latest-promotions__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-resources-ae888-latest-promotions__btn-small {
  padding: 10px 20px;
  font-size: 0.9em;
  background-color: #26A9E0;
  color: #ffffff;
  border: 1px solid #26A9E0;
  border-radius: 5px;
}

.page-resources-ae888-latest-promotions__btn-small:hover {
  background-color: #1e87b8;
  border-color: #1e87b8;
}

/* General Content Sections */
.page-resources-ae888-latest-promotions__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

.page-resources-ae888-latest-promotions__section-title {
  font-size: 2.5em;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 20px;
}

.page-resources-ae888-latest-promotions__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-resources-ae888-latest-promotions__list-highlight {
    color: #26A9E0;
}

.page-resources-ae888-latest-promotions a {
  color: #26A9E0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-resources-ae888-latest-promotions a:hover {
  color: #1e87b8;
  text-decoration: underline;
}

/* Promo Types Section */
.page-resources-ae888-latest-promotions__promo-types-section {
  background-color: #1a1a1a;
  padding: 60px 0;
}

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

.page-resources-ae888-latest-promotions__promo-card {
  background-color: #2a2a2a;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  text-align: center;
  color: #ffffff;
}

.page-resources-ae888-latest-promotions__promo-card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.page-resources-ae888-latest-promotions__promo-card-title {
  font-size: 1.5em;
  margin-bottom: 10px;
  color: #26A9E0;
}

.page-resources-ae888-latest-promotions__promo-card-description {
  font-size: 1em;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* How To Claim Section */
.page-resources-ae888-latest-promotions__how-to-claim-section {
  background-color: var(--black-color);
  padding: 60px 0;
}

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

.page-resources-ae888-latest-promotions__steps-list li {
  background-color: #2a2a2a;
  border-left: 5px solid #26A9E0;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-resources-ae888-latest-promotions__step-title {
  font-size: 1.4em;
  color: #26A9E0;
  margin-bottom: 10px;
}

.page-resources-ae888-latest-promotions__step-description {
  font-size: 1em;
  color: #f0f0f0;
}

/* Video Section */
.page-resources-ae888-latest-promotions__video-section {
    background-color: #1a1a1a;
    padding: 60px 0;
    text-align: center;
}

.page-resources-ae888-latest-promotions__video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 1000px; /* Max width for video */
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    cursor: pointer; /* Indicate clickability */
}

.page-resources-ae888-latest-promotions__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.page-resources-ae888-latest-promotions__video-caption {
    font-style: italic;
    font-size: 0.9em;
    color: #aaaaaa;
    margin-top: 10px;
}

/* Terms Section */
.page-resources-ae888-latest-promotions__terms-section {
  background-color: var(--black-color);
  padding: 60px 0;
}

.page-resources-ae888-latest-promotions__terms-list {
  list-style: disc;
  padding-left: 40px;
  margin-top: 30px;
  color: #f0f0f0;
}

.page-resources-ae888-latest-promotions__terms-list li {
  margin-bottom: 10px;
  font-size: 1em;
}

/* Why Choose Section */
.page-resources-ae888-latest-promotions__why-choose-section {
  background-color: #1a1a1a;
  padding: 60px 0;
}

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

.page-resources-ae888-latest-promotions__benefits-list li {
  background-color: #2a2a2a;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  color: #f0f0f0;
}

.page-resources-ae888-latest-promotions__benefits-list li::before {
  content: '✔';
  color: #26A9E0;
  font-size: 1.2em;
  margin-right: 15px;
}

/* FAQ Section */
.page-resources-ae888-latest-promotions__faq-section {
  background-color: #26A9E0; /* Brand color as background */
  color: #ffffff; /* White text for contrast */
  padding: 60px 0;
  text-align: center;
}

.page-resources-ae888-latest-promotions__faq-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    margin: 30px auto;
    display: block;
}

.page-resources-ae888-latest-promotions__faq-list {
  margin-top: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-ae888-latest-promotions__faq-item {
  background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white for contrast */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-resources-ae888-latest-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.2em;
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.15);
  transition: background-color 0.3s ease;
}