.page-resources-maximizing-promotions {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: var(--dark-bg-1); /* Inherited from shared.css, assumed dark */
}

.page-resources-maximizing-promotions__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-resources-maximizing-promotions__hero-section {
  position: relative;
  width: 100%;
  height: 600px; /* Adjust height as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

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

.page-resources-maximizing-promotions__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
  z-index: -1;
}

.page-resources-maximizing-promotions__hero-content {
  z-index: 1;
  max-width: 900px;
  padding: 20px;
}

.page-resources-maximizing-promotions__hero-title {
  font-size: 3.5em;
  color: #FFFFFF;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-resources-maximizing-promotions__hero-description {
  font-size: 1.3em;
  color: #f0f0f0;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-maximizing-promotions__section-title {
  font-size: 2.5em;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

.page-resources-maximizing-promotions__intro-section,
.page-resources-maximizing-promotions__strategy-section,
.page-resources-maximizing-promotions__faq-section {
  padding: 80px 0;
  background-color: #FFFFFF; /* Light background for contrast */
  color: #333333; /* Dark text for light background */
}

.page-resources-maximizing-promotions__dark-bg {
  background-color: #26A9E0; /* Primary brand color as background */
  color: #FFFFFF;
  padding: 80px 0;
}

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

.page-resources-maximizing-promotions__promotions-types .page-resources-maximizing-promotions__text-block {
  color: #f0f0f0;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

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

.page-resources-maximizing-promotions__card {
  background: #FFFFFF;
  color: #333333;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-resources-maximizing-promotions__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-resources-maximizing-promotions__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-resources-maximizing-promotions__card-title {
  font-size: 1.5em;
  color: #26A9E0;
  padding: 20px 20px 10px;
  font-weight: 600;
}

.page-resources-maximizing-promotions__card-description {
  font-size: 1em;
  padding: 0 20px 20px;
  flex-grow: 1;
}

.page-resources-maximizing-promotions__content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.page-resources-maximizing-promotions__grid-item {
  background: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-resources-maximizing-promotions__grid-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-resources-maximizing-promotions__grid-title {
  font-size: 1.6em;
  color: #000000;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-resources-maximizing-promotions__grid-description {
  font-size: 1em;
  color: #555555;
}

.page-resources-maximizing-promotions__mistakes-section .page-resources-maximizing-promotions__section-title {
  color: #FFFFFF;
}

.page-resources-maximizing-promotions__list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto;
}

.page-resources-maximizing-promotions__list-item {
  background: rgba(255, 255, 255, 0.15);
  border-left: 5px solid #FFFFFF;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  font-size: 1.1em;
  color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-resources-maximizing-promotions__list-item strong {
  color: #FFFFFF;
}

.page-resources-maximizing-promotions__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-resources-maximizing-promotions__faq-item {
  background: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-resources-maximizing-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: 600;
  color: #000000;
  cursor: pointer;
  background-color: #FFFFFF;
  transition: background-color 0.3s ease;
}

.page-resources-maximizing-promotions__faq-question:hover {
  background-color: #f0f0f0;
}

.page-resources-maximizing-promotions__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: #26A9E0;
  transition: transform 0.3s ease;
}

.page-resources-maximizing-promotions__faq-item.active .page-resources-maximizing-promotions__faq-toggle {
  transform: rotate(45deg);
}

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

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

.page-resources-maximizing-promotions__cta-section {
  text-align: center;
  padding: 80px 0;
}

.page-resources-maximizing-promotions__cta-section .page-resources-maximizing-promotions__text-block {
  color: #f0f0f0;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

.page-resources-maximizing-promotions__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  margin: 0 10px 20px;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-maximizing-promotions__btn-primary {
  background: #EA7C07; /* Login color for primary CTA */
  color: #FFFFFF;
  border: 2px solid #EA7C07;
}

.page-resources-maximizing-promotions__btn-primary:hover {
  background: #cc6a00;
  border-color: #cc6a00;
  transform: translateY(-3px);
}

.page-resources-maximizing-promotions__btn-secondary {
  background: #FFFFFF;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-resources-maximizing-promotions__btn-secondary:hover {
  background: #e0f2f7;
  color: #1a7aa0;
  transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-resources-maximizing-promotions__hero-title {
    font-size: 2.8em;
  }
  .page-resources-maximizing-promotions__section-title {
    font-size: 2em;
  }
  .page-resources-maximizing-promotions__cards-grid,
  .page-resources-maximizing-promotions__content-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-resources-maximizing-promotions__hero-section {
    height: 500px;
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-resources-maximizing-promotions__hero-title {
    font-size: 2.2em;
  }
  .page-resources-maximizing-promotions__hero-description {
    font-size: 1.1em;
  }
  .page-resources-maximizing-promotions__section-title {
    font-size: 1.8em;
  }
  .page-resources-maximizing-promotions__intro-section,
  .page-resources-maximizing-promotions__promotions-types,
  .page-resources-maximizing-promotions__strategy-section,
  .page-resources-maximizing-promotions__mistakes-section,
  .page-resources-maximizing-promotions__faq-section,
  .page-resources-maximizing-promotions__cta-section {
    padding: 50px 0;
  }
  .page-resources-maximizing-promotions__container {
    padding: 0 15px;
  }
  .page-resources-maximizing-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-resources-maximizing-promotions__section,
  .page-resources-maximizing-promotions__card,
  .page-resources-maximizing-promotions__container,
  .page-resources-maximizing-promotions__grid-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-resources-maximizing-promotions__cta-button,
  .page-resources-maximizing-promotions__btn-primary,
  .page-resources-maximizing-promotions__btn-secondary,
  .page-resources-maximizing-promotions a[class*="button"],
  .page-resources-maximizing-promotions a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin: 10px 0 !important; /* Stack buttons vertically */
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-resources-maximizing-promotions__cta-section .page-resources-maximizing-promotions__cta-button {
    display: block;
  }
  .page-resources-maximizing-promotions__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-resources-maximizing-promotions__faq-answer {
    padding: 0 20px;
  }
  .page-resources-maximizing-promotions__faq-item.active .page-resources-maximizing-promotions__faq-answer {
    padding: 10px 20px 20px;
  }
}

@media (max-width: 480px) {
  .page-resources-maximizing-promotions__hero-title {
    font-size: 1.8em;
  }
  .page-resources-maximizing-promotions__hero-description {
    font-size: 1em;
  }
  .page-resources-maximizing-promotions__section-title {
    font-size: 1.5em;
  }
  .page-resources-maximizing-promotions__hero-section {
    height: 400px;
  }
  .page-resources-maximizing-promotions__cta-button {
    font-size: 1em;
    padding: 12px 20px;
  }
}