.page-news__hero-section {
  position: relative;
  width: 100%;
  height: 100vh; /* Full viewport height for hero */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  overflow: hidden;
  padding-top: var(--header-offset, 120px);
}

.page-news__hero-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.page-news__hero-video {
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  cursor: pointer;
}

.page-news__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 51, 102, 0.7); /* Dark overlay from primary color */
  z-index: 2;
}

.page-news__hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding: 20px;
}

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

.page-news__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  line-height: 1.5;
}

.page-news__hero-cta-button {
  display: inline-block;
  background: #FFCC00; /* Secondary color for CTA */
  color: #003366;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-sizing: border-box;
}

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

.page-news__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
  color: #333333;
}

.page-news__introduction-section,
.page-news__latest-news-section,
.page-news__industry-analysis-section,
.page-news__guides-strategy-section,
.page-news__promotions-section,
.page-news__faq-section {
  padding: 60px 20px;
  background-color: #f8f8f8;
}

.page-news__introduction-section {
  text-align: center;
}

.page-news__section-title {
  font-size: 2.5em;
  color: #003366;
  margin-bottom: 30px;
  text-align: center;
  line-height: 1.3;
}

.page-news__section-description {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 40px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-news__section-text {
  font-size: 1em;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: justify;
}

.page-news__image-wrapper {
  text-align: center;
  margin: 40px 0;
}

.page-news__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.page-news__news-card,
.page-news__guide-card {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  color: #333333;
}

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

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

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

.page-news__card-title {
  font-size: 1.3em;
  margin-bottom: 15px;
  line-height: 1.4;
}

.page-news__card-title a {
  color: #003366;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-news__card-title a:hover {
  color: #FFCC00;
}

.page-news__card-text {
  font-size: 0.95em;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-news__card-link {
  display: inline-block;
  color: #003366;
  text-decoration: none;
  font-weight: bold;
  border: 1px solid #003366;
  padding: 8px 15px;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
  align-self: flex-start;
  box-sizing: border-box;
}

.page-news__card-link:hover {
  background-color: #003366;
  color: #ffffff;
}

.page-news__cta-group {
  text-align: center;
  margin-top: 50px;
}

.page-news__cta-button {
  display: inline-block;
  background: #003366;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-sizing: border-box;
}

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

.page-news__article-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 40px;
}

.page-news__article-item {
  display: flex;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  color: #333333;
}

.page-news__article-image {
  width: 40%;
  height: auto;
  object-fit: cover;
  display: block;
}

.page-news__article-content {
  padding: 25px;
  width: 60%;
  display: flex;
  flex-direction: column;
}

.page-news__article-title {
  font-size: 1.4em;
  margin-bottom: 15px;
  line-height: 1.4;
}

.page-news__article-title a {
  color: #003366;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-news__article-title a:hover {
  color: #FFCC00;
}

.page-news__article-text {
  font-size: 1em;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-news__article-link {
  display: inline-block;
  color: #003366;
  text-decoration: none;
  font-weight: bold;
  border: 1px solid #003366;
  padding: 8px 15px;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
  align-self: flex-start;
  box-sizing: border-box;
}

.page-news__article-link:hover {
  background-color: #003366;
  color: #ffffff;
}

.page-news__promotion-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  gap: 25px;
}

.page-news__promotion-item {
  background: #ffffff;
  border-left: 5px solid #FFCC00;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  color: #333333;
}

.page-news__promotion-title {
  font-size: 1.3em;
  margin-bottom: 10px;
}

.page-news__promotion-title a {
  color: #003366;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-news__promotion-title a:hover {
  color: #FFCC00;
}

.page-news__promotion-text {
  font-size: 1em;
  line-height: 1.6;
}

.page-news__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-news__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1em;
  color: #003366;
  background-color: #f0f5fa; /* Light background for question */
  transition: background-color 0.3s ease;
}

.page-news__faq-question:hover {
  background-color: #e0eaf5;
}

.page-news__faq-title {
  margin: 0;
  font-size: 1em;
  color: inherit;
}

.page-news__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-news__faq-item.active .page-news__faq-toggle {
  transform: rotate(45deg);
}

.page-news__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.page-news__faq-item.active .page-news__faq-answer {
  max-height: 1000px !important; /* Sufficiently large value */
  padding: 15px 25px 25px;
}

.page-news__faq-answer p {
  margin: 0;
  font-size: 0.95em;
  line-height: 1.6;
}

.page-news__faq-answer a {
  color: #003366;
  text-decoration: underline;
}

.page-news__faq-answer a:hover {
  color: #FFCC00;
}

.page-news__cta-final-section {
  background: #003366; /* Primary color background */
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.page-news__cta-final-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-news__cta-final-title {
  font-size: 2.8em;
  margin-bottom: 25px;
  color: #FFCC00; /* Secondary color for title */
  line-height: 1.2;
}

.page-news__cta-final-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  line-height: 1.6;
}

.page-news__cta-final-button {
  display: inline-block;
  background: #FFCC00; /* Secondary color for button */
  color: #003366;
  padding: 18px 35px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-sizing: border-box;
}

.page-news__cta-final-button:hover {
  background-color: #e6b800;
  transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-news__hero-title {
    font-size: 3em;
  }
  .page-news__hero-description {
    font-size: 1.2em;
  }
  .page-news__section-title {
    font-size: 2em;
  }
  .page-news__article-item {
    flex-direction: column;
  }
  .page-news__article-image,
  .page-news__article-content {
    width: 100%;
  }
  .page-news__article-image {
    height: 250px;
  }
}

@media (max-width: 768px) {
  .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__section,
  .page-news__card,
  .page-news__container,
  .page-news__video-section,
  .page-news__video-container,
  .page-news__video-wrapper,
  .page-news__hero-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    overflow-x: hidden !important; /* Ensure no horizontal scroll */
  }

  .page-news__hero-section {
    height: 70vh;
    padding-top: var(--header-offset, 120px) !important; /* Ensure header offset */
  }

  .page-news__hero-title {
    font-size: 2em;
  }

  .page-news__hero-description {
    font-size: 1em;
  }

  .page-news__hero-cta-button,
  .page-news__cta-button,
  .page-news__cta-final-button {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px !important;
    font-size: 1em !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    box-sizing: border-box !important;
  }

  .page-news__cta-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .page-news__section-title {
    font-size: 1.8em;
  }

  .page-news__card-grid {
    grid-template-columns: 1fr;
  }

  .page-news__article-item {
    flex-direction: column;
  }

  .page-news__article-image {
    height: 200px;
  }

  .page-news__cta-final-title {
    font-size: 2em;
  }

  .page-news__cta-final-description {
    font-size: 1em;
  }

  .page-news__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }

  .page-news__faq-answer {
    padding: 0 20px;
  }

  .page-news__faq-item.active .page-news__faq-answer {
    padding: 15px 20px 20px;
  }
}

@media (max-width: 480px) {
  .page-news__hero-title {
    font-size: 1.8em;
  }
  .page-news__hero-description {
    font-size: 0.9em;
  }
  .page-news__section-title {
    font-size: 1.5em;
  }
  .page-news__cta-final-title {
    font-size: 1.8em;
  }
}