:root {
  --main-color: #11A84E;
  --secondary-color: #22C768;
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --background-color-card: #11271B;
  --background-color-page: #08160F;
  --text-main-color: #F2FFF6;
  --text-secondary-color: #A7D9B8;
  --border-color: #2E7A4E;
  --glow-color: #57E38D;
  --gold-color: #F2C14E;
  --divider-color: #1E3A2A;
  --deep-green-color: #0A4B2C;
}

/* Base Styles */
.page-blog-188bey-promotions-analysis {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-main-color); /* #F2FFF6 */
  background-color: var(--background-color-page); /* #08160F */
}

.page-blog-188bey-promotions-analysis__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Typography */
.page-blog-188bey-promotions-analysis__main-title {
  font-size: clamp(2rem, 5vw, 3.5rem); /* Responsive H1 */
  font-weight: 700;
  line-height: 1.2;
  color: var(--gold-color); /* #F2C14E */
  text-align: center;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-188bey-promotions-analysis__intro-text {
  font-size: clamp(1rem, 2vw, 1.2rem);
  text-align: center;
  color: var(--text-secondary-color); /* #A7D9B8 */
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-188bey-promotions-analysis__section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 600;
  color: var(--text-main-color); /* #F2FFF6 */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 20px;
}

.page-blog-188bey-promotions-analysis__card-title,
.page-blog-188bey-promotions-analysis__step-title {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 600;
  color: var(--gold-color); /* #F2C14E */
  margin-bottom: 15px;
}

.page-blog-188bey-promotions-analysis__text-block,
.page-blog-188bey-promotions-analysis__card-text,
.page-blog-188bey-promotions-analysis__step-description,
.page-blog-188bey-promotions-analysis__list-item,
.page-blog-188bey-promotions-analysis__benefit-item,
.page-blog-188bey-promotions-analysis__faq-answer p {
  color: var(--text-secondary-color); /* #A7D9B8 */
  margin-bottom: 15px;
}

/* Hero Section */
.page-blog-188bey-promotions-analysis__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 0 40px;
  overflow: hidden;
  background-color: var(--deep-green-color); /* #0A4B2C */
}

.page-blog-188bey-promotions-analysis__hero-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0.3; /* Slightly transparent to let background color show */
  min-width: 200px;
  min-height: 200px;
}

.page-blog-188bey-promotions-analysis__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 20px;
  box-sizing: border-box;
}

/* CTA Button */
.page-blog-188bey-promotions-analysis__cta-button,
.page-blog-188bey-promotions-analysis__video-cta-button,
.page-blog-188bey-promotions-analysis__card-button,
.page-blog-188bey-promotions-analysis__step-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  background: var(--button-gradient);
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-blog-188bey-promotions-analysis__cta-button:hover,
.page-blog-188bey-promotions-analysis__video-cta-button:hover,
.page-blog-188bey-promotions-analysis__card-button:hover,
.page-blog-188bey-promotions-analysis__step-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
}

.page-blog-188bey-promotions-analysis__cta-button--large {
  padding: 18px 40px;
  font-size: 1.1rem;
}

/* Video Section */
.page-blog-188bey-promotions-analysis__video-section {
  padding: 10px 20px 40px;
  background-color: var(--background-color-page);
  text-align: center;
}

.page-blog-188bey-promotions-analysis__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  margin: 0 auto 20px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  background-color: #000;
  width: 100%; /* Ensure desktop width is 100% within its container */
}

.page-blog-188bey-promotions-analysis__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  min-width: 200px;
  min-height: 200px;
}

.page-blog-188bey-promotions-analysis__video-caption {
  color: var(--text-secondary-color);
  font-style: italic;
  margin-top: 10px;
}

.page-blog-188bey-promotions-analysis__video-caption p {
  margin-bottom: 15px;
}

/* Content Sections */
.page-blog-188bey-promotions-analysis__content-section {
  padding: 50px 0;
  background-color: var(--background-color-page); /* #08160F */
}

.page-blog-188bey-promotions-analysis__dark-section {
  background-color: var(--background-color-card); /* #11271B */
}

.page-blog-188bey-promotions-analysis__content-image {
  display: block;
  margin: 30px auto;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  min-width: 200px;
  min-height: 200px;
}

/* List Styles */
.page-blog-188bey-promotions-analysis__list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.page-blog-188bey-promotions-analysis__list-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  color: var(--text-secondary-color);
}

.page-blog-188bey-promotions-analysis__list-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--main-color); /* #11A84E */
  font-weight: bold;
}

.page-blog-188bey-promotions-analysis__benefit-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.page-blog-188bey-promotions-analysis__benefit-item {
  background-color: var(--background-color-card); /* #11271B */
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  position: relative;
  padding-left: 50px;
  color: var(--text-secondary-color);
}

.page-blog-188bey-promotions-analysis__benefit-item::before {
  content: '✨';
  position: absolute;
  left: 15px;
  top: 20px;
  font-size: 1.5rem;
}


/* Promotion Cards */
.page-blog-188bey-promotions-analysis__promotion-card {
  background-color: var(--background-color-card); /* #11271B */
  border: 1px solid var(--border-color); /* #2E7A4E */
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
}

/* Step-by-step Guide */
.page-blog-188bey-promotions-analysis__step-by-step {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-188bey-promotions-analysis__step-item {
  background-color: var(--background-color-card); /* #11271B */
  border: 1px solid var(--border-color); /* #2E7A4E */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-188bey-promotions-analysis__step-image {
  margin: 20px auto;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  min-width: 200px;
  min-height: 200px;
}

/* FAQ Section */
.page-blog-188bey-promotions-analysis__faq-list {
  margin-top: 30px;
}

.page-blog-188bey-promotions-analysis__faq-item {
  background-color: var(--background-color-card); /* #11271B */
  border: 1px solid var(--border-color); /* #2E7A4E */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-188bey-promotions-analysis__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-weight: 600;
  color: var(--text-main-color); /* #F2FFF6 */
  background-color: var(--background-color-card);
  user-select: none;
  list-style: none; /* For details/summary */
}

.page-blog-188bey-promotions-analysis__faq-question::-webkit-details-marker {
  display: none; /* For details/summary */
}

.page-blog-188bey-promotions-analysis__faq-qtext {
  flex-grow: 1;
  color: var(--gold-color); /* #F2C14E */
}

.page-blog-188bey-promotions-analysis__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: var(--main-color); /* #11A84E */
}

.page-blog-188bey-promotions-analysis__faq-answer {
  padding: 0 25px 20px;
  color: var(--text-secondary-color); /* #A7D9B8 */
}

.page-blog-188bey-promotions-analysis__faq-answer p {
  margin-bottom: 0;
}

/* Conclusion Section */
.page-blog-188bey-promotions-analysis__conclusion-section {
  padding: 50px 0 80px;
  text-align: center;
  background-color: var(--deep-green-color); /* #0A4B2C */
}

/* Image styling for content area */
.page-blog-188bey-promotions-analysis img:not(.page-blog-188bey-promotions-analysis__hero-image) {
    min-width: 200px;
    min-height: 200px;
    max-width: 100%;
    height: auto;
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-blog-188bey-promotions-analysis__container {
    padding: 0 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-blog-188bey-promotions-analysis__hero-section {
    padding: 60px 0 30px;
  }

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

  .page-blog-188bey-promotions-analysis__intro-text {
    font-size: clamp(0.9rem, 3vw, 1.1rem);
  }

  .page-blog-188bey-promotions-analysis__section-title {
    font-size: clamp(1.6rem, 6vw, 2rem);
    margin-bottom: 30px;
  }

  .page-blog-188bey-promotions-analysis__cta-button,
  .page-blog-188bey-promotions-analysis__video-cta-button,
  .page-blog-188bey-promotions-analysis__card-button,
  .page-blog-188bey-promotions-analysis__step-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
    font-size: 0.95rem;
    margin-top: 15px;
  }

  .page-blog-188bey-promotions-analysis__cta-button--large {
    padding: 15px 30px;
    font-size: 1rem;
  }

  .page-blog-188bey-promotions-analysis__video-section {
    padding-top: 10px !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-188bey-promotions-analysis__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-blog-188bey-promotions-analysis__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-blog-188bey-promotions-analysis img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    box-sizing: border-box !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }

  .page-blog-188bey-promotions-analysis__content-section,
  .page-blog-188bey-promotions-analysis__faq-section,
  .page-blog-188bey-promotions-analysis__conclusion-section {
    padding: 30px 0;
  }

  .page-blog-188bey-promotions-analysis__promotion-card,
  .page-blog-188bey-promotions-analysis__step-item {
    padding: 20px;
    margin-bottom: 20px;
  }

  .page-blog-188bey-promotions-analysis__benefit-list {
    grid-template-columns: 1fr;
  }

  .page-blog-188bey-promotions-analysis__benefit-item {
    padding-left: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .page-blog-188bey-promotions-analysis__benefit-item::before {
    left: 15px;
    top: 15px;
  }

  .page-blog-188bey-promotions-analysis__faq-question {
    padding: 15px 20px;
  }

  .page-blog-188bey-promotions-analysis__faq-answer {
    padding: 0 20px 15px;
  }
}