.page-news {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Dark text for light body background */
  background-color: #f8f8f8; /* Light background for the page content */
}

.page-news__hero-section {
  position: relative;
  padding: var(--header-offset, 120px) 0 60px 0; /* Apply header offset here */
  background: linear-gradient(135deg, #1A1A1A, #333333);
  color: #ffffff;
  text-align: center;
  overflow: hidden;
}

.page-news__hero-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.page-news__hero-content {
  flex: 1;
  padding-right: 40px;
  text-align: left;
}

.page-news__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold accent for title */
  line-height: 1.2;
}

.page-news__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-news__hero-button {
  display: inline-block;
  background: #FFD700;
  color: #1A1A1A;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
}

.page-news__hero-button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-news__hero-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.page-news__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  display: block;
}

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

.page-news__section-title {
  font-size: 2.5em;
  color: #1A1A1A;
  text-align: center;
  margin-bottom: 20px;
  margin-top: 60px;
  font-weight: bold;
}

.page-news__section-description {
  font-size: 1.1em;
  color: #666666;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-news__latest-news-section {
  padding: 60px 0;
  background-color: #ffffff;
}

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

.page-news__news-card {
  background: #fdfdfd;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-news__news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.page-news__news-card-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.page-news__news-card-image {
  width: 100%;
  height: 220px; /* Fixed height for consistent card appearance */
  object-fit: cover;
  display: block;
}

.page-news__news-card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-news__news-card-title {
  font-size: 1.4em;
  color: #1A1A1A;
  margin-top: 0;
  margin-bottom: 15px;
  line-height: 1.4;
  font-weight: 700;
}

.page-news__news-card-excerpt {
  font-size: 0.95em;
  color: #555555;
  margin-bottom: 15px;
  flex-grow: 1;
}

.page-news__news-card-meta {
  font-size: 0.85em;
  color: #888888;
  margin-bottom: 10px;
}

.page-news__read-more {
  display: inline-block;
  color: #FFD700;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-news__read-more:hover {
  color: #e6c200;
}

.page-news__view-all-button-wrapper {
  text-align: center;
  margin-top: 60px;
}

.page-news__view-all-button {
  display: inline-block;
  background: #1A1A1A;
  color: #FFD700;
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
}

.page-news__view-all-button:hover {
  background-color: #333333;
  transform: translateY(-2px);
}

.page-news__categories-section {
  padding: 60px 0;
  background-color: #f0f0f0;
}

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

.page-news__category-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  text-align: center;
  text-decoration: none;
  color: #1A1A1A;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding-bottom: 20px;
}

.page-news__category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-news__category-card-image {
  width: 100%;
  height: 180px; /* Fixed height for category images */
  object-fit: cover;
  margin-bottom: 15px;
  display: block;
}

.page-news__category-card-title {
  font-size: 1.3em;
  font-weight: bold;
  color: #1A1A1A;
  padding: 0 15px;
  margin-top: 0;
}

.page-news__cta-section {
  padding: 80px 0;
  text-align: center;
}

.page-news__dark-section {
  background: #1A1A1A;
  color: #ffffff;
}

.page-news__dark-section .page-news__section-title {
  color: #FFD700;
}

.page-news__dark-section .page-news__section-description {
  color: #cccccc;
}

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

.page-news__btn-primary {
  display: inline-block;
  background: #FFD700;
  color: #1A1A1A;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
}

.page-news__btn-primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-news__btn-secondary {
  display: inline-block;
  background: transparent;
  color: #FFD700;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  border: 2px solid #FFD700;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.page-news__btn-secondary:hover {
  background-color: #FFD700;
  color: #1A1A1A;
  transform: translateY(-2px);
}

.page-news__faq-section {
  padding: 60px 0 80px 0;
  background-color: #ffffff;
}

.page-news__faq-list {
  margin-top: 40px;
}

.page-news__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-news__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #fdfdfd;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-news__faq-question:hover {
  background: #f5f5f5;
  border-color: #d0d0d0;
}

.page-news__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 1.15em;
  font-weight: 600;
  line-height: 1.5;
  color: #1A1A1A;
  pointer-events: none; /* Prevent h3 from blocking click event */
}

.page-news__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #FFD700;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none; /* Prevent icon from blocking click event */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.page-news__faq-item.active .page-news__faq-toggle {
  color: #1A1A1A;
  transform: rotate(45deg); /* Rotate for 'x' effect, or just change text */
}

.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;
  color: #444444;
  background: #fdfdfd;
  border-top: 1px solid #eee;
  border-radius: 0 0 8px 8px;
}

.page-news__faq-item.active .page-news__faq-answer {
  max-height: 2000px !important; /* Use !important and large value */
  padding: 20px 25px !important;
  opacity: 1;
}

.page-news__contact-cta-section {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(135deg, #FFD700, #e6c200);
  color: #1A1A1A;
}

.page-news__contact-cta-section .page-news__section-title {
  color: #1A1A1A;
}

.page-news__contact-cta-section .page-news__section-description {
  color: #333333;
}

.page-news__contact-cta-section .page-news__btn-primary {
  background: #1A1A1A;
  color: #FFD700;
}

.page-news__contact-cta-section .page-news__btn-primary:hover {
  background-color: #333333;
  color: #FFD700;
}

.page-news__copyright-info {
  text-align: center;
  padding: 30px 20px;
  font-size: 0.9em;
  color: #888888;
  background-color: #f0f0f0;
  border-top: 1px solid #e0e0e0;
}

/* Universal image responsive styles */
.page-news img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Universal button responsive styles */
.page-news__cta-button,
.page-news__btn-primary,
.page-news__btn-secondary,
.page-news a[class*="button"],
.page-news a[class*="btn"] {
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-news__cta-buttons,
.page-news__button-group,
.page-news__btn-container {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* --- Mobile Responsive Styles (max-width: 1024px) --- */
@media (max-width: 1024px) {
  .page-news__hero-title {
    font-size: 2.8em;
  }
  .page-news__hero-description {
    font-size: 1.1em;
  }
  .page-news__hero-container {
    flex-direction: column;
    text-align: center;
    padding: 0 15px;
  }
  .page-news__hero-content {
    padding-right: 0;
    padding-bottom: 40px;
    text-align: center;
  }
  .page-news__hero-image-wrapper {
    justify-content: center;
  }
  .page-news__section-title {
    font-size: 2em;
    margin-top: 40px;
  }
  .page-news__section-description {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-news__news-grid,
  .page-news__categories-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }
  .page-news__news-card-image {
    height: 200px;
  }
  .page-news__news-card-title {
    font-size: 1.2em;
  }
  .page-news__category-card-image {
    height: 150px;
  }
  .page-news__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-news__btn-primary,
  .page-news__btn-secondary {
    width: 100%;
  }
}

/* --- Mobile Responsive Styles (max-width: 768px) --- */
@media (max-width: 768px) {
  /* HERO 主图区域 */
  .page-news__hero-section {
    padding-top: var(--header-offset, 120px) !important; /* Apply header offset */
    padding-bottom: 40px;
  }
  .page-news__hero-container {
    padding: 0 15px;
  }
  .page-news__hero-title {
    font-size: 2.2em;
    margin-bottom: 15px;
  }
  .page-news__hero-description {
    font-size: 1em;
    margin-bottom: 25px;
  }
  .page-news__hero-button {
    padding: 12px 25px;
    font-size: 1em;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-news__hero-image-wrapper {
    margin-top: 30px;
  }
  .page-news__hero-image {
    width: 100% !important;
    height: auto !important;
  }

  /* 通用图片与容器 */
  .page-news img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-news__container,
  .page-news__latest-news-section,
  .page-news__categories-section,
  .page-news__cta-section,
  .page-news__faq-section,
  .page-news__contact-cta-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* 按钮与按钮容器 */
  .page-news__cta-button,
  .page-news__btn-primary,
  .page-news__btn-secondary,
  .page-news a[class*="button"],
  .page-news 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-news__cta-buttons,
  .page-news__button-group,
  .page-news__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
    flex-direction: column !important;
    gap: 15px;
  }

  /* 其他内容模块 */
  .page-news__section-title {
    font-size: 1.8em;
    margin-top: 30px;
    margin-bottom: 15px;
  }
  .page-news__section-description {
    font-size: 0.95em;
    margin-bottom: 25px;
  }
  .page-news__news-grid,
  .page-news__categories-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-news__news-card-image {
    height: 180px;
  }
  .page-news__news-card-title {
    font-size: 1.1em;
  }
  .page-news__news-card-excerpt {
    font-size: 0.9em;
  }
  .page-news__view-all-button-wrapper {
    margin-top: 40px;
  }
  .page-news__view-all-button {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-news__category-card-title {
    font-size: 1.1em;
  }
  .page-news__faq-question {
    padding: 15px 20px;
  }
  .page-news__faq-question h3 {
    font-size: 1em;
  }
  .page-news__faq-toggle {
    font-size: 20px;
    width: 24px;
    height: 24px;
  }
  .page-news__faq-answer {
    padding: 15px 20px !important;
  }
  .page-news__contact-cta-section {
    padding: 50px 15px;
  }
  .page-news__copyright-info {
    padding: 20px 15px;
    font-size: 0.85em;
  }
}