.page-blog-exclusive-promotions-analysis {
  --primary-color: #11A84E;
  --secondary-color: #22C768;
  --card-bg: #11271B;
  --background-dark: #08160F;
  --text-main: #F2FFF6;
  --text-secondary: #A7D9B8;
  --border-color: #2E7A4E;
  --glow-color: #57E38D;
  --gold-color: #F2C14E;
  --divider-color: #1E3A2A;
  --deep-green: #0A4B2C;

  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-main);
  background-color: var(--background-dark);
}

.page-blog-exclusive-promotions-analysis__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  overflow: hidden;
  color: var(--text-main);
}

.page-blog-exclusive-promotions-analysis__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-blog-exclusive-promotions-analysis__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image for text readability */
}

.page-blog-exclusive-promotions-analysis__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  margin-top: 80px; /* Space from top after header */
}

.page-blog-exclusive-promotions-analysis__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--gold-color);
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-blog-exclusive-promotions-analysis__subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  margin-bottom: 30px;
  color: var(--text-main);
}

.page-blog-exclusive-promotions-analysis__btn-primary {
  display: inline-block;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-exclusive-promotions-analysis__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-exclusive-promotions-analysis__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: var(--background-dark); /* Ensure contrast with text */
  color: var(--text-main);
}

.page-blog-exclusive-promotions-analysis__section-container {
  max-width: 900px;
  margin: 0 auto;
}

.page-blog-exclusive-promotions-analysis__section-title {
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-top: 40px;
  margin-bottom: 25px;
  text-align: center;
  border-bottom: 2px solid var(--divider-color);
  padding-bottom: 15px;
}

.page-blog-exclusive-promotions-analysis__sub-section-title {
  font-size: 1.8rem;
  color: var(--text-main);
  margin-top: 35px;
  margin-bottom: 20px;
  border-left: 5px solid var(--gold-color);
  padding-left: 15px;
}

.page-blog-exclusive-promotions-analysis__text-block {
  margin-bottom: 20px;
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.page-blog-exclusive-promotions-analysis__text-block strong {
  color: var(--text-main);
}

.page-blog-exclusive-promotions-analysis__image-in-content {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-exclusive-promotions-analysis__benefit-list,
.page-blog-exclusive-promotions-analysis__note-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.page-blog-exclusive-promotions-analysis__benefit-item,
.page-blog-exclusive-promotions-analysis__note-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 15px 20px;
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  color: var(--text-secondary);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-exclusive-promotions-analysis__benefit-item::before,
.page-blog-exclusive-promotions-analysis__note-item::before {
  content: '✓';
  color: var(--gold-color);
  font-weight: bold;
  margin-right: 10px;
  font-size: 1.2em;
}

.page-blog-exclusive-promotions-analysis__benefit-item strong,
.page-blog-exclusive-promotions-analysis__note-item strong {
  color: var(--text-main);
}

.page-blog-exclusive-promotions-analysis__faq-list {
  margin-top: 30px;
}

.page-blog-exclusive-promotions-analysis__faq-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--text-secondary);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-exclusive-promotions-analysis__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  cursor: pointer;
  font-weight: 600;
  color: var(--text-main);
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-blog-exclusive-promotions-analysis__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker for Chrome/Safari */
}

.page-blog-exclusive-promotions-analysis__faq-question:hover {
  background-color: rgba(var(--primary-color), 0.1);
}

.page-blog-exclusive-promotions-analysis__faq-qtext {
  flex-grow: 1;
}

.page-blog-exclusive-promotions-analysis__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  width: 24px;
  text-align: center;
  color: var(--gold-color);
}

.page-blog-exclusive-promotions-analysis__faq-answer {
  padding: 0 20px 15px;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.page-blog-exclusive-promotions-analysis__faq-answer p {
  margin: 0;
}

.page-blog-exclusive-promotions-analysis__cta-container {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 30px;
}

.page-blog-exclusive-promotions-analysis a {
  color: var(--gold-color);
  text-decoration: none;
}

.page-blog-exclusive-promotions-analysis a:hover {
  text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .page-blog-exclusive-promotions-analysis {
    font-size: 15px;
  }

  .page-blog-exclusive-promotions-analysis__hero-content {
    padding: 15px;
    margin-top: 40px;
  }

  .page-blog-exclusive-promotions-analysis__main-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }

  .page-blog-exclusive-promotions-analysis__subtitle {
    font-size: clamp(0.9rem, 3vw, 1.1rem);
  }

  .page-blog-exclusive-promotions-analysis__btn-primary,
  .page-blog-exclusive-promotions-analysis__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 20px !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    font-size: 1rem;
  }

  .page-blog-exclusive-promotions-analysis__content-area {
    padding: 20px 15px;
  }

  .page-blog-exclusive-promotions-analysis__section-title {
    font-size: 1.8rem;
  }

  .page-blog-exclusive-promotions-analysis__sub-section-title {
    font-size: 1.5rem;
  }

  .page-blog-exclusive-promotions-analysis__text-block {
    font-size: 1rem;
  }

  .page-blog-exclusive-promotions-analysis img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-exclusive-promotions-analysis__section,
  .page-blog-exclusive-promotions-analysis__card,
  .page-blog-exclusive-promotions-analysis__container,
  .page-blog-exclusive-promotions-analysis__hero-section,
  .page-blog-exclusive-promotions-analysis__content-area,
  .page-blog-exclusive-promotions-analysis__cta-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-exclusive-promotions-analysis__hero-section {
    padding-bottom: 40px;
  }

  .page-blog-exclusive-promotions-analysis__benefit-item,
  .page-blog-exclusive-promotions-analysis__note-item,
  .page-blog-exclusive-promotions-analysis__faq-item {
    padding: 12px 15px;
    margin-bottom: 10px;
  }

  .page-blog-exclusive-promotions-analysis__faq-question {
    padding: 12px 15px;
  }

  .page-blog-exclusive-promotions-analysis__faq-answer {
    padding: 0 15px 12px;
  }
}