/* style/blog-v99-nhacai-latest-promotions-2024.css */

:root {
  --primary-color: #C61F1F;
  --secondary-color: #E53030;
  --button-gradient: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
  --card-bg: #2A1212;
  --page-bg: #140C0C;
  --text-main-color: #FFF1E8;
  --border-color: #6A1E1E;
  --gold-color: #F3C54D;
  --deep-red-color: #7E0D0D;
}

.page-blog-v99-nhacai-latest-promotions-2024 {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-main-color); /* Main text color for the page content */
  background-color: var(--page-bg); /* Page background from custom colors */
}

.page-blog-v99-nhacai-latest-promotions-2024__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-blog-v99-nhacai-latest-promotions-2024__hero-section {
  position: relative;
  width: 100%;
  padding-top: 10px; /* Small top padding as body padding-top is handled by shared.css */
  padding-bottom: 0;
  overflow: hidden;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-blog-v99-nhacai-latest-promotions-2024__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 675px; /* Limit hero image height */
}

.page-blog-v99-nhacai-latest-promotions-2024__hero-content {
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
  width: 100%;
  box-sizing: border-box;
  background-color: var(--page-bg); /* Ensure content block has a background */
  margin-top: -5px; /* Slight overlap to make it visually cohesive */
  position: relative;
  z-index: 1;
}

.page-blog-v99-nhacai-latest-promotions-2024__main-title {
  font-weight: bold;
  color: var(--gold-color);
  line-height: 1.2;
  letter-spacing: 1px;
  margin-bottom: 20px;
  max-width: 100%;
  box-sizing: border-box;
}

.page-blog-v99-nhacai-latest-promotions-2024__hero-description {
  color: var(--text-main-color);
  font-size: 1.1em;
  margin-bottom: 30px;
}

.page-blog-v99-nhacai-latest-promotions-2024__hero-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-blog-v99-nhacai-latest-promotions-2024__btn-primary,
.page-blog-v99-nhacai-latest-promotions-2024__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-blog-v99-nhacai-latest-promotions-2024__btn-primary {
  background: var(--button-gradient);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 15px rgba(255, 176, 74, 0.4);
}

.page-blog-v99-nhacai-latest-promotions-2024__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-blog-v99-nhacai-latest-promotions-2024__btn-secondary {
  background-color: transparent;
  color: var(--gold-color);
  border: 2px solid var(--gold-color);
}

.page-blog-v99-nhacai-latest-promotions-2024__btn-secondary:hover {
  background-color: var(--gold-color);
  color: var(--page-bg);
  transform: translateY(-2px);
}

.page-blog-v99-nhacai-latest-promotions-2024__section {
  padding: 60px 0;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

.page-blog-v99-nhacai-latest-promotions-2024__section-title {
  color: var(--gold-color);
  margin-bottom: 40px;
  font-size: 2.2em;
  font-weight: bold;
}

.page-blog-v99-nhacai-latest-promotions-2024__text-block {
  color: var(--text-main-color);
  margin-bottom: 20px;
  font-size: 1.05em;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-v99-nhacai-latest-promotions-2024__promotions-grid {
  background-color: var(--page-bg);
}

.page-blog-v99-nhacai-latest-promotions-2024__promo-card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-v99-nhacai-latest-promotions-2024__promo-card-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 25px;
  display: block;
}

.page-blog-v99-nhacai-latest-promotions-2024__promo-card-content {
  width: 100%;
}

.page-blog-v99-nhacai-latest-promotions-2024__promo-card-title {
  color: var(--gold-color);
  font-size: 1.6em;
  margin-bottom: 15px;
}

.page-blog-v99-nhacai-latest-promotions-2024__promo-card-description {
  color: var(--text-main-color);
  margin-bottom: 25px;
}

.page-blog-v99-nhacai-latest-promotions-2024__guide-section {
  background-color: var(--deep-red-color);
  color: #ffffff;
}

.page-blog-v99-nhacai-latest-promotions-2024__guide-section .page-blog-v99-nhacai-latest-promotions-2024__section-title {
  color: var(--gold-color);
}

.page-blog-v99-nhacai-latest-promotions-2024__guide-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 800px;
}

.page-blog-v99-nhacai-latest-promotions-2024__guide-list li {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  text-align: left;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-v99-nhacai-latest-promotions-2024__guide-list-title {
  color: var(--gold-color);
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-blog-v99-nhacai-latest-promotions-2024__guide-list li p {
  color: var(--text-main-color);
  margin-bottom: 15px;
}

.page-blog-v99-nhacai-latest-promotions-2024__terms-section {
  background-color: var(--page-bg);
}

.page-blog-v99-nhacai-latest-promotions-2024__terms-list {
  list-style-type: disc;
  text-align: left;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: var(--text-main-color);
  padding-left: 25px;
}

.page-blog-v99-nhacai-latest-promotions-2024__terms-list li {
  margin-bottom: 10px;
}

.page-blog-v99-nhacai-latest-promotions-2024__why-choose-section {
  background-color: var(--deep-red-color);
}

.page-blog-v99-nhacai-latest-promotions-2024__why-choose-section .page-blog-v99-nhacai-latest-promotions-2024__section-title {
  color: var(--gold-color);
}

.page-blog-v99-nhacai-latest-promotions-2024__benefits-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 900px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  text-align: left;
}

.page-blog-v99-nhacai-latest-promotions-2024__benefits-list li {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 20px;
  color: var(--text-main-color);
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-v99-nhacai-latest-promotions-2024__benefits-list li strong {
  color: var(--gold-color);
}

.page-blog-v99-nhacai-latest-promotions-2024__faq-section {
  background-color: var(--page-bg);
}

.page-blog-v99-nhacai-latest-promotions-2024__faq-list {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

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

.page-blog-v99-nhacai-latest-promotions-2024__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  color: var(--gold-color);
  font-weight: bold;
  font-size: 1.1em;
  list-style: none; /* For details/summary */
}

.page-blog-v99-nhacai-latest-promotions-2024__faq-question::-webkit-details-marker, /* Hide default marker */
.page-blog-v99-nhacai-latest-promotions-2024__faq-question::marker {
  display: none;
}

.page-blog-v99-nhacai-latest-promotions-2024__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: var(--gold-color);
  margin-left: 15px;
}

.page-blog-v99-nhacai-latest-promotions-2024__faq-answer {
  padding: 0 25px 20px 25px;
  color: var(--text-main-color);
}

.page-blog-v99-nhacai-latest-promotions-2024__faq-answer p {
  margin: 0;
}

.page-blog-v99-nhacai-latest-promotions-2024__cta-final {
  background-color: var(--deep-red-color);
  padding-bottom: 80px;
}

.page-blog-v99-nhacai-latest-promotions-2024__cta-final .page-blog-v99-nhacai-latest-promotions-2024__section-title {
  color: var(--gold-color);
}

.page-blog-v99-nhacai-latest-promotions-2024__btn-container {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* General image responsive styles */
.page-blog-v99-nhacai-latest-promotions-2024 img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Media Queries */

/* Desktop/Tablet styles (adjust as needed for 1024px, but 768px is mandatory) */
@media (min-width: 769px) {
  .page-blog-v99-nhacai-latest-promotions-2024__main-title {
    font-size: 3.2em;
  }
  .page-blog-v99-nhacai-latest-promotions-2024__section-title {
    font-size: 2.8em;
  }
}

/* Mobile-specific styles */
@media (max-width: 768px) {
  /* 1. HERO 主图区域 */
  .page-blog-v99-nhacai-latest-promotions-2024__hero-section {
    padding-top: 10px !important;
  }
  .page-blog-v99-nhacai-latest-promotions-2024__hero-content {
    padding: 30px 15px;
  }
  .page-blog-v99-nhacai-latest-promotions-2024__main-title {
    font-size: 2em;
    margin-bottom: 15px;
  }
  .page-blog-v99-nhacai-latest-promotions-2024__hero-description {
    font-size: 1em;
    margin-bottom: 25px;
  }
  .page-blog-v99-nhacai-latest-promotions-2024__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  /* 2. 产品展示图区域 (Promo Cards) */
  .page-blog-v99-nhacai-latest-promotions-2024__promotions-grid .page-blog-v99-nhacai-latest-promotions-2024__container {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .page-blog-v99-nhacai-latest-promotions-2024__promo-card {
    padding: 20px;
    margin-bottom: 0; /* Adjust margin for column layout */
  }
  .page-blog-v99-nhacai-latest-promotions-2024__promo-card-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-blog-v99-nhacai-latest-promotions-2024__benefits-list {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  /* 3. 通用图片与容器 */
  .page-blog-v99-nhacai-latest-promotions-2024 img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-blog-v99-nhacai-latest-promotions-2024__section,
  .page-blog-v99-nhacai-latest-promotions-2024__card,
  .page-blog-v99-nhacai-latest-promotions-2024__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* 4. 按钮与按钮容器 */
  .page-blog-v99-nhacai-latest-promotions-2024__btn-primary,
  .page-blog-v99-nhacai-latest-promotions-2024__btn-secondary,
  .page-blog-v99-nhacai-latest-promotions-2024 a[class*="button"],
  .page-blog-v99-nhacai-latest-promotions-2024 a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-blog-v99-nhacai-latest-promotions-2024__hero-cta-buttons,
  .page-blog-v99-nhacai-latest-promotions-2024__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
    flex-direction: column;
  }

  /* 5. 其他内容模块 */
  .page-blog-v99-nhacai-latest-promotions-2024__section-title {
    font-size: 1.8em;
    margin-bottom: 25px;
  }
  .page-blog-v99-nhacai-latest-promotions-2024__text-block {
    font-size: 0.95em;
  }
  .page-blog-v99-nhacai-latest-promotions-2024__promo-card-title {
    font-size: 1.4em;
  }
  .page-blog-v99-nhacai-latest-promotions-2024__guide-list li,
  .page-blog-v99-nhacai-latest-promotions-2024__faq-item {
    padding: 20px;
  }
  .page-blog-v99-nhacai-latest-promotions-2024__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }
  .page-blog-v99-nhacai-latest-promotions-2024__faq-answer {
    padding: 0 20px 15px 20px;
  }
}