.page-news__video-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  padding-top: 10px; /* Desktop: Adjust according to fixed header height */
}

.page-news__video-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-news__video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.page-news__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 8px;
  object-fit: cover;
}

.page-news__video-cta {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
}

.page-news__play-now-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--primary-color, #FFD700); /* Gold */
  color: #000000; /* Dark text for contrast on gold */
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
  text-transform: uppercase;
}

.page-news__play-now-button:hover {
  background: var(--secondary-color, #E6C200); /* Slightly darker gold */
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-news {
  color: #f0f0f0; /* Light text for dark body background */
  background-color: #121212; /* Inherited from shared.css, dark background */
}

.page-news__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-news__hero-section {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(135deg, rgba(0,0,128,0.8), rgba(255,215,0,0.2)); /* Dark blue to gold gradient */
  color: #ffffff;
  padding-top: 120px; /* Desktop: Ensure content is below fixed header */
}

.page-news__hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.page-news__main-title {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-color, #FFD700); /* Gold */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-news__hero-description {
  font-size: 18px;
  line-height: 1.6;
  max-width: 800px;
  margin-bottom: 40px;
  color: #f0f0f0;
}

.page-news__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-news__cta-button {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-news__cta-button:first-of-type {
  background: var(--primary-color, #FFD700);
  color: #000000; /* Dark text on gold */
  border: 2px solid var(--primary-color, #FFD700);
}

.page-news__cta-button:first-of-type:hover {
  background: #E6C200;
  border-color: #E6C200;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-news__cta-button--secondary {
  background: transparent;
  color: var(--primary-color, #FFD700);
  border: 2px solid var(--primary-color, #FFD700);
}

.page-news__cta-button--secondary:hover {
  background: var(--primary-color, #FFD700);
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.page-news__section-title {
  font-size: 38px;
  font-weight: 700;
  color: var(--primary-color, #FFD700); /* Gold */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-news__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary-color, #FFD700);
  border-radius: 2px;
}

.page-news__section-description {
  font-size: 17px;
  line-height: 1.6;
  color: #cccccc;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
}

.page-news__brand-introduction {
  padding: 80px 0;
  background-color: var(--secondary-color, #000080); /* Dark blue background */
  color: #ffffff; /* Light text on dark blue */
}

.page-news__brand-introduction .page-news__section-title {
  color: #ffffff; /* White title on dark blue */
}

.page-news__brand-introduction .page-news__section-title::after {
  background: #ffffff;
}

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

.page-news__brand-item {
  background: rgba(255, 255, 255, 0.1); /* Semi-transparent white on dark blue */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-news__brand-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-news__brand-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 25px;
  object-fit: cover;
}

.page-news__brand-item-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--primary-color, #FFD700); /* Gold title */
  margin-bottom: 15px;
}

.page-news__brand-item-text {
  font-size: 16px;
  line-height: 1.7;
  color: #e0e0e0;
}

.page-news__latest-articles {
  padding: 80px 0;
  background-color: #1a1a1a; /* Slightly lighter dark background */
}

.page-news__article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-news__article-card {
  background: #2a2a2a; /* Darker card background */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.page-news__article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-news__article-link {
  text-decoration: none;
  display: block;
  color: inherit;
}

.page-news__article-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-news__article-content {
  padding: 25px;
}

.page-news__article-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--primary-color, #FFD700); /* Gold title */
  margin-bottom: 10px;
  line-height: 1.4;
}

.page-news__article-excerpt {
  font-size: 15px;
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 15px;
}

.page-news__article-date {
  font-size: 14px;
  color: #888888;
  display: block;
}

.page-news__pagination {
  text-align: center;
  margin-top: 60px;
}

.page-news__pagination-button {
  display: inline-block;
  padding: 12px 30px;
  background: var(--primary-color, #FFD700);
  color: #000000;
  text-decoration: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-news__pagination-button:hover {
  background: #E6C200;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.page-news__faq-section {
  padding: 80px 0;
  background-color: #121212; /* Dark background */
  color: #f0f0f0; /* Light text */
}

.page-news__faq-list {
  max-width: 900px;
  margin: 60px auto 0;
}

/* FAQ容器样式 */
.page-news__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid rgba(255, 215, 0, 0.2); /* Subtle gold border */
}

/* FAQ默认状态 - 答案隐藏 */
.page-news__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 25px;
  opacity: 0;
}

/* FAQ展开状态 */
.page-news__faq-item.active .page-news__faq-answer {
  max-height: 2000px !important; /* Use !important and large value */
  padding: 20px 25px !important;
  opacity: 1;
  background: #2a2a2a; /* Darker background for answer */
  border-radius: 0 0 5px 5px;
  color: #cccccc;
}

/* 问题样式 */
.page-news__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #1e1e1e; /* Slightly lighter dark background */
  border-bottom: 1px solid rgba(255, 215, 0, 0.1); /* Subtle gold border */
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-news__faq-question:hover {
  background: #282828; /* Even lighter dark on hover */
  border-color: var(--primary-color, #FFD700);
}

.page-news__faq-question:active {
  background: #333333;
}

/* 问题标题样式 */
.page-news__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
  color: #ffffff; /* White title */
  pointer-events: none;
}

/* 切换图标 */
.page-news__faq-toggle {
  font-size: 26px;
  font-weight: bold;
  line-height: 1;
  color: var(--primary-color, #FFD700); /* Gold toggle icon */
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}

.page-news__faq-item.active .page-news__faq-toggle {
  color: #ffffff; /* White when active */
  transform: rotate(45deg); /* Rotate for 'x' effect from '+' */
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-news__main-title {
    font-size: 42px;
  }
  .page-news__section-title {
    font-size: 34px;
  }
  .page-news__hero-section {
    padding: 60px 0;
  }
  .page-news__brand-introduction, .page-news__latest-articles, .page-news__faq-section {
    padding: 60px 0;
  }
  .page-news__brand-image {
    max-width: 300px;
  }
}

@media (max-width: 768px) {
  .page-news__video-section {
    padding-top: 10px !important; /* Mobile: Adjust according to fixed header height */
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  
  .page-news__video-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
    overflow: hidden !important;
  }
  
  .page-news__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    border-radius: 4px;
    overflow: hidden !important;
  }
  
  .page-news__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    border-radius: 4px;
    object-fit: contain;
  }
  
  .page-news__video-cta {
    margin-top: 20px;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  
  .page-news__play-now-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 30px !important;
    font-size: 16px !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-news__hero-section {
    padding: 40px 0;
    padding-top: 100px; /* Mobile: Ensure content is below fixed header */
  }
  .page-news__main-title {
    font-size: 32px;
  }
  .page-news__hero-description {
    font-size: 16px;
  }
  .page-news__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }
  .page-news__cta-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 25px;
    font-size: 16px;
  }
  .page-news__section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .page-news__section-description {
    font-size: 15px;
    margin-bottom: 40px;
  }
  .page-news__brand-introduction, .page-news__latest-articles, .page-news__faq-section {
    padding: 40px 0;
  }
  .page-news__brand-item {
    padding: 20px;
  }
  .page-news__brand-image {
    max-width: 250px;
    margin-left: auto;
    margin-right: auto;
  }
  .page-news__brand-item-title {
    font-size: 20px;
  }
  .page-news__article-title {
    font-size: 18px;
  }
  .page-news__article-excerpt {
    font-size: 14px;
  }
  .page-news__article-image {
    height: 180px;
  }
  .page-news__pagination-button {
    padding: 10px 25px;
    font-size: 15px;
  }
  .page-news__faq-question {
    padding: 15px;
    flex-wrap: wrap;
  }
  .page-news__faq-question h3 {
    font-size: 15px;
    margin-bottom: 0;
    width: calc(100% - 40px);
  }
  .page-news__faq-toggle {
    margin-left: 10px;
    width: 24px;
    height: 24px;
    font-size: 20px;
  }
  .page-news__faq-answer {
    padding: 0 15px;
  }
  .page-news__faq-item.active .page-news__faq-answer {
    padding: 15px !important;
  }
  /* General mobile image, video, and container adaptations */
  .page-news img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-news video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-news__container, .page-news__brand-introduction, .page-news__latest-articles, .page-news__faq-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-news__article-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-news__article-grid {
    gap: 20px;
  }
  .page-news__brand-grid {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .page-news__main-title {
    font-size: 28px;
  }
  .page-news__section-title {
    font-size: 24px;
  }
  .page-news__hero-description {
    font-size: 15px;
  }
  .page-news__article-title {
    font-size: 16px;
  }
  .page-news__article-excerpt {
    font-size: 13px;
  }
}