.page-blog-hh888-2024-promotions {
  --primary-color: #11A84E;
  --secondary-color: #22C768;
  --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --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-color: #0A4B2C;

  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-main); /* Default text color for the page content */
  background-color: var(--background-dark);
}

.page-blog-hh888-2024-promotions__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-blog-hh888-2024-promotions__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0 60px 0; /* Small top padding, more bottom padding */
  background-color: var(--background-dark);
}

.page-blog-hh888-2024-promotions__hero-image-wrapper {
  width: 100%;
  max-height: 500px; /* Limit height to prevent image from being too tall */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-blog-hh888-2024-promotions__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.page-blog-hh888-2024-promotions__hero-content {
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -100px; /* Adjust to slightly overlap the image for visual effect, but not cover text */
  position: relative;
  z-index: 1;
  background-color: var(--background-dark);
  border-radius: 10px;
}

.page-blog-hh888-2024-promotions__main-title {
  font-size: clamp(2em, 4vw, 3.5em);
  font-weight: 700;
  color: var(--gold-color);
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-blog-hh888-2024-promotions__intro-text {
  font-size: 1.1em;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.page-blog-hh888-2024-promotions__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-hh888-2024-promotions__cta-button--primary {
  background: var(--button-gradient);
  color: #ffffff;
  box-shadow: 0 5px 15px rgba(34, 199, 104, 0.4);
}

.page-blog-hh888-2024-promotions__cta-button--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(34, 199, 104, 0.6);
}

.page-blog-hh888-2024-promotions__cta-button--secondary {
  background-color: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  margin-left: 15px;
}

.page-blog-hh888-2024-promotions__cta-button--secondary:hover {
  background-color: var(--primary-color);
  color: #ffffff;
}

.page-blog-hh888-2024-promotions__content-section {
  padding: 60px 0;
  background-color: var(--background-dark);
}

.page-blog-hh888-2024-promotions__dark-bg {
  background-color: var(--card-bg);
  color: var(--text-main);
}

.page-blog-hh888-2024-promotions__section-title {
  font-size: 2.5em;
  color: var(--gold-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

.page-blog-hh888-2024-promotions__paragraph {
  font-size: 1em;
  color: var(--text-secondary);
  margin-bottom: 20px;
  text-align: justify;
}

.page-blog-hh888-2024-promotions__paragraph--center {
  text-align: center;
}

.page-blog-hh888-2024-promotions__paragraph--cta {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-hh888-2024-promotions__list {
  list-style: disc;
  margin-left: 25px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.page-blog-hh888-2024-promotions__ordered-list {
  list-style: decimal;
  margin-left: 25px;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.page-blog-hh888-2024-promotions__list-item {
  margin-bottom: 10px;
}

.page-blog-hh888-2024-promotions__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-hh888-2024-promotions__promo-card {
  background-color: var(--card-bg);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 20px;
  border: 1px solid var(--border-color);
}

.page-blog-hh888-2024-promotions__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  margin-bottom: 20px;
}

.page-blog-hh888-2024-promotions__card-title {
  font-size: 1.5em;
  color: var(--text-main);
  margin-bottom: 15px;
  padding: 0 15px;
}

.page-blog-hh888-2024-promotions__card-description {
  font-size: 0.95em;
  color: var(--text-secondary);
  margin-bottom: 25px;
  padding: 0 15px;
  flex-grow: 1;
}

.page-blog-hh888-2024-promotions__video-section {
  padding: 60px 0;
  background-color: var(--background-dark);
  padding-top: 10px; /* Small top padding */
}

.page-blog-hh888-2024-promotions__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  margin-bottom: 30px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.page-blog-hh888-2024-promotions__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  cursor: pointer;
}

.page-blog-hh888-2024-promotions__faq-list {
  margin-top: 40px;
}

.page-blog-hh888-2024-promotions__faq-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-hh888-2024-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.1em;
  color: var(--text-main);
  background-color: var(--deep-green-color);
  user-select: none;
  list-style: none;
}

.page-blog-hh888-2024-promotions__faq-question::-webkit-details-marker {
  display: none;
}

.page-blog-hh888-2024-promotions__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: var(--gold-color);
}

.page-blog-hh888-2024-promotions__faq-answer {
  padding: 15px 25px;
  font-size: 1em;
  color: var(--text-secondary);
  background-color: var(--card-bg);
  border-top: 1px solid var(--divider-color);
}

.page-blog-hh888-2024-promotions__faq-answer p {
  margin-bottom: 0;
  color: var(--text-secondary);
}

.page-blog-hh888-2024-promotions__cta-section {
  padding: 60px 0;
  background-color: var(--background-dark);
  text-align: center;
}

.page-blog-hh888-2024-promotions__section-title--cta {
  color: var(--gold-color);
}

.page-blog-hh888-2024-promotions__cta-buttons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-hh888-2024-promotions__hero-content {
    margin-top: -80px;
  }
  .page-blog-hh888-2024-promotions__main-title {
    font-size: clamp(1.8em, 5vw, 3em);
  }
  .page-blog-hh888-2024-promotions__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-blog-hh888-2024-promotions__hero-section {
    padding-bottom: 40px;
  }
  .page-blog-hh888-2024-promotions__hero-content {
    margin-top: -60px;
    padding: 30px 15px;
  }
  .page-blog-hh888-2024-promotions__main-title {
    font-size: clamp(1.5em, 6vw, 2.5em);
  }
  .page-blog-hh888-2024-promotions__intro-text {
    font-size: 0.95em;
  }
  .page-blog-hh888-2024-promotions__cta-button {
    margin: 0;
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 0.9em;
  }
  .page-blog-hh888-2024-promotions__cta-button--secondary {
    margin-top: 15px;
    margin-left: 0;
  }
  .page-blog-hh888-2024-promotions__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }
  .page-blog-hh888-2024-promotions__content-section {
    padding: 40px 0;
  }
  .page-blog-hh888-2024-promotions__container {
    padding: 0 15px;
  }
  .page-blog-hh888-2024-promotions__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-blog-hh888-2024-promotions__paragraph {
    font-size: 0.9em;
  }
  .page-blog-hh888-2024-promotions__promo-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-blog-hh888-2024-promotions__card-image {
    height: 200px;
  }
  .page-blog-hh888-2024-promotions__card-title {
    font-size: 1.3em;
  }
  .page-blog-hh888-2024-promotions__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }
  .page-blog-hh888-2024-promotions__faq-answer {
    padding: 10px 20px;
  }

  /* Ensure all images are responsive */
  .page-blog-hh888-2024-promotions img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  /* Ensure all video elements are responsive */
  .page-blog-hh888-2024-promotions video,
  .page-blog-hh888-2024-promotions__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* Ensure all containers with images/videos are responsive */
  .page-blog-hh888-2024-promotions__section,
  .page-blog-hh888-2024-promotions__card,
  .page-blog-hh888-2024-promotions__container,
  .page-blog-hh888-2024-promotions__video-section,
  .page-blog-hh888-2024-promotions__video-container,
  .page-blog-hh888-2024-promotions__video-wrapper,
  .page-blog-hh888-2024-promotions__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Prevent content overflow */
  }
  .page-blog-hh888-2024-promotions__video-section {
    padding-top: 10px !important; /* Small top padding for video section */
  }
}

@media (max-width: 480px) {
  .page-blog-hh888-2024-promotions__hero-content {
    margin-top: -40px;
    padding: 20px 10px;
  }
  .page-blog-hh888-2024-promotions__main-title {
    font-size: clamp(1.2em, 7vw, 2em);
  }
  .page-blog-hh888-2024-promotions__section-title {
    font-size: 1.5em;
  }
  .page-blog-hh888-2024-promotions__paragraph {
    font-size: 0.85em;
  }
  .page-blog-hh888-2024-promotions__cta-button {
    padding: 10px 15px;
  }
}