.page-blog-nw88-promotion-strategy {
  background-color: var(--background-color, #08160F); /* Fallback to Deep Green if var not set */
  color: #F2FFF6; /* Text Main for dark background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-blog-nw88-promotion-strategy__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-blog-nw88-promotion-strategy__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 0 60px; /* Small top padding, more bottom */
  background-color: #0A4B2C; /* Deep Green */
}

.page-blog-nw88-promotion-strategy__hero-image-wrapper {
  width: 100%;
  max-height: 500px; /* Limit height for hero image */
  overflow: hidden;
}

.page-blog-nw88-promotion-strategy__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.page-blog-nw88-promotion-strategy__hero-content {
  position: relative;
  z-index: 1;
  padding: 20px;
  max-width: 800px;
  margin-top: -150px; /* Overlap slightly on image for visual effect, but text is below image in DOM */
  background-color: rgba(17, 39, 27, 0.8); /* Card BG with transparency */
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-nw88-promotion-strategy__main-title {
  font-size: clamp(2em, 4vw, 3em); /* Responsive font size */
  font-weight: 700;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-blog-nw88-promotion-strategy__intro-text {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

.page-blog-nw88-promotion-strategy__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
  color: #F2FFF6; /* Text Main */
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-blog-nw88-promotion-strategy__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

/* General Section Styles */
.page-blog-nw88-promotion-strategy__section {
  padding: 60px 0;
  border-bottom: 1px solid #1E3A2A; /* Divider */
}

.page-blog-nw88-promotion-strategy__section:last-of-type {
  border-bottom: none;
}

.page-blog-nw88-promotion-strategy__section-title {
  font-size: 2.5em;
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

.page-blog-nw88-promotion-strategy__paragraph {
  font-size: 1.1em;
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* List Styles */
.page-blog-nw88-promotion-strategy__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-nw88-promotion-strategy__list.page-blog-nw88-promotion-strategy__two-columns {
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
}

.page-blog-nw88-promotion-strategy__list-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-blog-nw88-promotion-strategy__list-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-nw88-promotion-strategy__list-title {
  font-size: 1.5em;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
}

.page-blog-nw88-promotion-strategy__list-description {
  color: #A7D9B8; /* Text Secondary */
  font-size: 1em;
}

/* Grid Card Styles */
.page-blog-nw88-promotion-strategy__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-nw88-promotion-strategy__card {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-blog-nw88-promotion-strategy__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-nw88-promotion-strategy__card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  display: block; /* Ensure it behaves as block for max-width */
}

.page-blog-nw88-promotion-strategy__card-title {
  font-size: 1.3em;
  color: #F2C14E; /* Gold */
  margin-bottom: 10px;
}

.page-blog-nw88-promotion-strategy__card-description {
  color: #A7D9B8; /* Text Secondary */
  font-size: 0.95em;
}

/* Steps Grid */
.page-blog-nw88-promotion-strategy__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-nw88-promotion-strategy__step-card {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-nw88-promotion-strategy__step-title {
  font-size: 1.4em;
  color: #2AD16F; /* Main color */
  margin-bottom: 10px;
}

.page-blog-nw88-promotion-strategy__step-description {
  color: #A7D9B8; /* Text Secondary */
  font-size: 0.95em;
}

/* Features Grid */
.page-blog-nw88-promotion-strategy__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-nw88-promotion-strategy__feature-card {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-nw88-promotion-strategy__feature-image {
  width: 100%;
  height: 180px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  display: block; /* Ensure it behaves as block for max-width */
}

.page-blog-nw88-promotion-strategy__feature-title {
  font-size: 1.4em;
  color: #F2C14E; /* Gold */
  margin-bottom: 10px;
}

.page-blog-nw88-promotion-strategy__feature-description {
  color: #A7D9B8; /* Text Secondary */
  font-size: 0.95em;
}

/* FAQ Section */
.page-blog-nw88-promotion-strategy__faq-list {
  margin-top: 40px;
}

.page-blog-nw88-promotion-strategy__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-nw88-promotion-strategy__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-size: 1.2em;
  color: #F2FFF6; /* Text Main */
  background-color: #0A4B2C; /* Deep Green */
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-blog-nw88-promotion-strategy__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-nw88-promotion-strategy__faq-question:hover {
  background-color: #13994A; /* Slightly lighter green */
}

.page-blog-nw88-promotion-strategy__faq-qtext {
  flex-grow: 1;
}

.page-blog-nw88-promotion-strategy__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: #F2C14E; /* Gold */
  margin-left: 15px;
}

.page-blog-nw88-promotion-strategy__faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  color: #A7D9B8; /* Text Secondary */
}

.page-blog-nw88-promotion-strategy__faq-item[open] .page-blog-nw88-promotion-strategy__faq-answer {
  max-height: 500px; /* Adjust as needed for content */
  padding: 20px;
}

.page-blog-nw88-promotion-strategy__faq-answer-text {
  margin: 0;
  padding-top: 10px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-nw88-promotion-strategy__hero-content {
    margin-top: -100px;
  }
}

@media (max-width: 768px) {
  .page-blog-nw88-promotion-strategy__hero-section {
    padding-bottom: 40px;
  }

  .page-blog-nw88-promotion-strategy__hero-image-wrapper {
    max-height: 300px;
  }

  .page-blog-nw88-promotion-strategy__hero-content {
    margin-top: -80px;
    padding: 15px;
  }

  .page-blog-nw88-promotion-strategy__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
    margin-bottom: 10px;
  }

  .page-blog-nw88-promotion-strategy__intro-text {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-blog-nw88-promotion-strategy__cta-button {
    padding: 12px 25px;
    font-size: 0.9em;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  
  .page-blog-nw88-promotion-strategy__cta-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-blog-nw88-promotion-strategy__section {
    padding: 40px 0;
  }

  .page-blog-nw88-promotion-strategy__section-title {
    font-size: 2em;
    margin-bottom: 30px;
  }

  .page-blog-nw88-promotion-strategy__paragraph {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-blog-nw88-promotion-strategy__list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .page-blog-nw88-promotion-strategy__list.page-blog-nw88-promotion-strategy__two-columns {
    grid-template-columns: 1fr;
  }

  .page-blog-nw88-promotion-strategy__grid,
  .page-blog-nw88-promotion-strategy__steps-grid,
  .page-blog-nw88-promotion-strategy__features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-nw88-promotion-strategy__card-image,
  .page-blog-nw88-promotion-strategy__feature-image {
    height: auto;
    max-width: 100% !important;
    width: 100% !important;
    display: block !important;
  }
  
  /* Ensure all image containers are responsive */
  .page-blog-nw88-promotion-strategy__card,
  .page-blog-nw88-promotion-strategy__feature-card,
  .page-blog-nw88-promotion-strategy__step-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-blog-nw88-promotion-strategy__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }

  .page-blog-nw88-promotion-strategy__faq-toggle {
    font-size: 1.2em;
  }

  .page-blog-nw88-promotion-strategy__faq-answer {
    padding: 0 15px;
  }

  .page-blog-nw88-promotion-strategy__faq-item[open] .page-blog-nw88-promotion-strategy__faq-answer {
    padding: 15px;
  }

  /* General image responsive styles */
  .page-blog-nw88-promotion-strategy img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  /* Mobile specific overrides for images and containers */
  .page-blog-nw88-promotion-strategy__hero-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-blog-nw88-promotion-strategy__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}