/* style/blog-hi8823-latest-promotions.css */

:root {
  --primary-color: #26A9E0;
  --secondary-color: #FFFFFF;
  --login-color: #EA7C07;
  --background-white: #FFFFFF;
  --text-dark: #333333;
  --text-light: #ffffff;
  --border-light: #e0e0e0;
}

.page-blog-hi8823-latest-promotions {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--background-white);
}

.page-blog-hi8823-latest-promotions__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  background-color: var(--primary-color);
  color: var(--text-light);
  text-align: center;
}

.page-blog-hi8823-latest-promotions__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-blog-hi8823-latest-promotions__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 600px; /* Limit height for hero image */
}

.page-blog-hi8823-latest-promotions__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  margin-top: -100px; /* Pull content up slightly over image for visual flow, but not overlapping text on image */
  background-color: rgba(0, 0, 0, 0.4); /* Semi-transparent background for readability */
  border-radius: 10px;
}

.page-blog-hi8823-latest-promotions__main-title {
  font-size: clamp(2.2em, 4vw, 3.5em);
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--text-light);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.page-blog-hi8823-latest-promotions__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: var(--text-light);
}

.page-blog-hi8823-latest-promotions__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.page-blog-hi8823-latest-promotions__btn-primary,
.page-blog-hi8823-latest-promotions__btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-blog-hi8823-latest-promotions__btn-primary {
  background-color: var(--login-color);
  color: var(--secondary-color);
  border: 2px solid var(--login-color);
}

.page-blog-hi8823-latest-promotions__btn-primary:hover {
  background-color: darken(var(--login-color), 10%);
  border-color: darken(var(--login-color), 10%);
}

.page-blog-hi8823-latest-promotions__btn-secondary {
  background-color: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
}

.page-blog-hi8823-latest-promotions__btn-secondary:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

.page-blog-hi8823-latest-promotions__section {
  padding: 60px 20px;
}

.page-blog-hi8823-latest-promotions__dark-bg {
  background-color: var(--primary-color);
  color: var(--text-light);
}

.page-blog-hi8823-latest-promotions__light-bg {
  background-color: var(--background-white);
  color: var(--text-dark);
}

.page-blog-hi8823-latest-promotions__container {
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-blog-hi8823-latest-promotions__section-title {
  font-size: 2.5em;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
  color: inherit;
}

.page-blog-hi8823-latest-promotions__dark-bg .page-blog-hi8823-latest-promotions__section-title {
  color: var(--text-light);
}

.page-blog-hi8823-latest-promotions__light-bg .page-blog-hi8823-latest-promotions__section-title {
  color: var(--text-dark);
}

.page-blog-hi8823-latest-promotions__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-blog-hi8823-latest-promotions__promotion-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-hi8823-latest-promotions__promo-card {
  background-color: var(--secondary-color);
  color: var(--text-dark);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.page-blog-hi8823-latest-promotions__promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-blog-hi8823-latest-promotions__card-title {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.page-blog-hi8823-latest-promotions__card-description {
  font-size: 1em;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-blog-hi8823-latest-promotions__promo-card .page-blog-hi8823-latest-promotions__btn-primary,
.page-blog-hi8823-latest-promotions__promo-card .page-blog-hi8823-latest-promotions__btn-secondary {
  width: auto;
  min-width: 180px;
  padding: 10px 20px;
  font-size: 0.95em;
}

.page-blog-hi8823-latest-promotions__promo-card .page-blog-hi8823-latest-promotions__btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.page-blog-hi8823-latest-promotions__promo-card .page-blog-hi8823-latest-promotions__btn-primary:hover {
  background-color: darken(var(--primary-color), 10%);
  border-color: darken(var(--primary-color), 10%);
}

.page-blog-hi8823-latest-promotions__promo-card .page-blog-hi8823-latest-promotions__btn-secondary {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.page-blog-hi8823-latest-promotions__promo-card .page-blog-hi8823-latest-promotions__btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--secondary-color);
}

.page-blog-hi8823-latest-promotions__steps-list,
.page-blog-hi8823-latest-promotions__benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-blog-hi8823-latest-promotions__steps-list li,
.page-blog-hi8823-latest-promotions__benefits-list li {
  font-size: 1.1em;
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
}

.page-blog-hi8823-latest-promotions__steps-list li:last-child,
.page-blog-hi8823-latest-promotions__benefits-list li:last-child {
  margin-bottom: 0;
}

.page-blog-hi8823-latest-promotions__steps-list li::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  background-color: var(--primary-color);
  color: var(--text-light);
  border-radius: 50%;
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.page-blog-hi8823-latest-promotions__benefits-list li::before {
  content: '✔';
  color: var(--primary-color);
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.page-blog-hi8823-latest-promotions__faq-list {
  margin-top: 40px;
}

.page-blog-hi8823-latest-promotions__faq-item {
  background-color: var(--secondary-color);
  color: var(--text-dark);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-hi8823-latest-promotions__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15em;
  font-weight: bold;
  cursor: pointer;
  background-color: #f9f9f9;
  color: var(--primary-color);
  border-bottom: 1px solid var(--border-light);
  transition: background-color 0.3s ease;
}

.page-blog-hi8823-latest-promotions__faq-question:hover {
  background-color: #f0f0f0;
}

.page-blog-hi8823-latest-promotions__faq-item[open] .page-blog-hi8823-latest-promotions__faq-question {
  border-bottom: 1px solid transparent;
}

.page-blog-hi8823-latest-promotions__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.page-blog-hi8823-latest-promotions__faq-item[open] .page-blog-hi8823-latest-promotions__faq-toggle {
  transform: rotate(45deg);
}

.page-blog-hi8823-latest-promotions__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1em;
  color: var(--text-dark);
}

.page-blog-hi8823-latest-promotions__cta-section {
  padding: 80px 20px;
  text-align: center;
}

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

@media (max-width: 768px) {
  .page-blog-hi8823-latest-promotions {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-blog-hi8823-latest-promotions__hero-section {
    padding-bottom: 40px;
  }

  .page-blog-hi8823-latest-promotions__hero-content {
    margin-top: -60px;
    padding: 15px;
  }

  .page-blog-hi8823-latest-promotions__main-title {
    font-size: clamp(1.8em, 6vw, 2.5em);
  }

  .page-blog-hi8823-latest-promotions__hero-description {
    font-size: 1em;
  }

  .page-blog-hi8823-latest-promotions__cta-buttons {
    flex-direction: column;
    gap: 10px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-hi8823-latest-promotions__btn-primary,
  .page-blog-hi8823-latest-promotions__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
  }

  .page-blog-hi8823-latest-promotions__section {
    padding: 40px 15px;
  }

  .page-blog-hi8823-latest-promotions__container {
    padding-left: 15px;
    padding-right: 15px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-blog-hi8823-latest-promotions__section-title {
    font-size: 1.8em;
    margin-bottom: 20px;
  }

  .page-blog-hi8823-latest-promotions__text-block {
    font-size: 1em;
  }

  .page-blog-hi8823-latest-promotions__promotion-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-blog-hi8823-latest-promotions__promo-image {
    height: 180px;
  }

  .page-blog-hi8823-latest-promotions__promo-card {
    padding: 20px;
  }

  .page-blog-hi8823-latest-promotions__card-title {
    font-size: 1.3em;
  }

  .page-blog-hi8823-latest-promotions__steps-list li,
  .page-blog-hi8823-latest-promotions__benefits-list li {
    font-size: 1em;
    padding-left: 25px;
  }

  .page-blog-hi8823-latest-promotions__steps-list li::before,
  .page-blog-hi8823-latest-promotions__benefits-list li::before {
    width: 22px;
    height: 22px;
    font-size: 0.9em;
  }

  .page-blog-hi8823-latest-promotions__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }

  .page-blog-hi8823-latest-promotions__faq-answer {
    padding: 10px 20px 15px;
  }

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

  .page-blog-hi8823-latest-promotions__section,
  .page-blog-hi8823-latest-promotions__card,
  .page-blog-hi8823-latest-promotions__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-blog-hi8823-latest-promotions__video-section {
    padding-top: 10px !important;
  }
}

/* Ensure images within content areas are not too small */
.page-blog-hi8823-latest-promotions img:not(.page-blog-hi8823-latest-promotions__hero-image) {
  min-width: 200px;
  min-height: 200px;
  object-fit: cover;
}

/* Contrast Fixes */
.page-blog-hi8823-latest-promotions__text-contrast-fix {
  color: #333333 !important;
  text-shadow: none !important;
}