.page-resources-promo-analysis {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light body background */
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-resources-promo-analysis__hero-section {
  background: linear-gradient(135deg, #B80F0A, #FFD700);
  padding: 60px 20px;
  text-align: center;
  color: #ffffff; /* White text on dark/brand background */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

.page-resources-promo-analysis__hero-container {
  max-width: 900px;
  margin: 0 auto;
}

.page-resources-promo-analysis__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-resources-promo-analysis__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-resources-promo-analysis__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #FFD700; /* Auxiliary color for CTA */
  color: #B80F0A; /* Main color for text on CTA */
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-resources-promo-analysis__cta-button:hover {
  background: #f0c500;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-resources-promo-analysis__cta-button--secondary {
  background: #B80F0A;
  color: #FFD700;
  border: 2px solid #FFD700;
  margin-left: 20px;
}

.page-resources-promo-analysis__cta-button--secondary:hover {
  background: #a10d08;
  border-color: #f0c500;
}

.page-resources-promo-analysis__section {
  padding: 80px 0;
}

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

.page-resources-promo-analysis__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 50px;
  font-weight: bold;
  color: #B80F0A; /* Main color for titles */
}

.page-resources-promo-analysis__dark-bg .page-resources-promo-analysis__section-title {
  color: #FFD700; /* Auxiliary color for titles on dark background */
}

.page-resources-promo-analysis__paragraph {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: justify;
}

/* Intro content specific */
.page-resources-promo-analysis__intro-content {
  background: #fdfdfd;
  color: #333333;
}

/* Promo types section */
.page-resources-promo-analysis__promo-types {
  background: #B80F0A;
  color: #ffffff;
}

.page-resources-promo-analysis__grid-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

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

.page-resources-promo-analysis__card:hover {
  transform: translateY(-5px);
}

.page-resources-promo-analysis__card-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-resources-promo-analysis__card-title {
  font-size: 1.4em;
  font-weight: bold;
  margin: 20px 20px 10px 20px;
  color: #B80F0A;
}

.page-resources-promo-analysis__card-description {
  font-size: 0.95em;
  padding: 0 20px 20px 20px;
  line-height: 1.7;
  flex-grow: 1;
}

.page-resources-promo-analysis__button-group {
  text-align: center;
  margin-top: 40px;
}

/* How to claim section */
.page-resources-promo-analysis__how-to-claim {
  background: #fdfdfd;
  color: #333333;
}

.page-resources-promo-analysis__steps-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.page-resources-promo-analysis__step-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-resources-promo-analysis__step-title {
  font-size: 1.5em;
  font-weight: bold;
  color: #B80F0A;
  margin-bottom: 15px;
}

.page-resources-promo-analysis__step-description {
  font-size: 1em;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: justify;
  flex-grow: 1;
}

.page-resources-promo-analysis__inline-button {
  display: inline-block;
  padding: 10px 25px;
  background: #B80F0A;
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 0.9em;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
  margin-top: auto; /* Push button to bottom */
}

.page-resources-promo-analysis__inline-button:hover {
  background: #a10d08;
}

/* Benefits section */
.page-resources-promo-analysis__benefits {
  background: #B80F0A;
  color: #ffffff;
}

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

.page-resources-promo-analysis__benefit-card {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  color: #333333;
  text-align: center;
  padding-bottom: 20px;
}

.page-resources-promo-analysis__benefit-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
  margin-bottom: 20px;
}

.page-resources-promo-analysis__benefit-title {
  font-size: 1.3em;
  font-weight: bold;
  color: #B80F0A;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-resources-promo-analysis__benefit-description {
  font-size: 0.95em;
  line-height: 1.7;
  padding: 0 15px;
  flex-grow: 1;
  text-align: justify;
}

/* Tips optimization section */
.page-resources-promo-analysis__tips-optimization {
  background: #fdfdfd;
  color: #333333;
}

.page-resources-promo-analysis__tips-list {
  list-style: none;
  padding: 0;
  margin-top: 50px;
}

.page-resources-promo-analysis__tip-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  margin-bottom: 25px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-resources-promo-analysis__tip-title {
  font-size: 1.5em;
  font-weight: bold;
  color: #B80F0A;
  margin-bottom: 15px;
}

.page-resources-promo-analysis__tip-description {
  font-size: 1em;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: justify;
  flex-grow: 1;
}

/* FAQ Section */
.page-resources-promo-analysis__faq-section {
  background: #fdfdfd;
  color: #333333;
}

.page-resources-promo-analysis__faq-list {
  margin-top: 50px;
}

.page-resources-promo-analysis__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
}

.page-resources-promo-analysis__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
  padding: 0 15px;
  opacity: 0;
  color: #333333;
}

.page-resources-promo-analysis__faq-item.active .page-resources-promo-analysis__faq-answer {
  max-height: 2000px !important;
  padding: 20px 15px !important;
  opacity: 1;
  background: #f9f9f9;
  border-radius: 0 0 5px 5px;
}

.page-resources-promo-analysis__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-resources-promo-analysis__faq-question:hover {
  background: #f5f5f5;
  border-color: #d0d0d0;
}

.page-resources-promo-analysis__faq-question:active {
  background: #eeeeee;
}

.page-resources-promo-analysis__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: #B80F0A; /* FAQ question color */
}

.page-resources-promo-analysis__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #666;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.page-resources-promo-analysis__faq-item.active .page-resources-promo-analysis__faq-toggle {
  color: #333;
  transform: rotate(45deg); /* Change to X on active */
}

/* Conclusion section */
.page-resources-promo-analysis__conclusion {
  background: #B80F0A;
  color: #ffffff;
  text-align: center;
}

.page-resources-promo-analysis__conclusion .page-resources-promo-analysis__paragraph {
  color: #f0f0f0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Image responsiveness */
.page-resources-promo-analysis img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-promo-analysis__main-title {
    font-size: 2.8em;
  }
  .page-resources-promo-analysis__hero-description {
    font-size: 1.2em;
  }
  .page-resources-promo-analysis__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-resources-promo-analysis {
    font-size: 16px;
    line-height: 1.6;
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-resources-promo-analysis__hero-section {
    padding: 40px 15px;
  }
  .page-resources-promo-analysis__hero-container {
    padding: 0;
  }
  .page-resources-promo-analysis__main-title {
    font-size: 2.2em;
    margin-bottom: 15px;
  }
  .page-resources-promo-analysis__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }
}
}