.page-news__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px 40px;
  padding-top: var(--header-offset, 120px);
  overflow: hidden;
  color: #ffffff;
  background: #26A9E0;
}

.page-news__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.2;
}

.page-news__container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
}

.page-news__main-title {
  font-size: 3.2em;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff;
}

.page-news__intro-text {
  font-size: 1.2em;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-news__btn-primary,
.page-news__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-news__btn-primary {
  background: #EA7C07;
  color: #ffffff;
  border: 2px solid #EA7C07;
  margin-top: 20px;
}

.page-news__btn-primary:hover {
  background: #d46c06;
  border-color: #d46c06;
}

.page-news__latest-news-section,
.page-news__featured-articles-section,
.page-news__promotion-highlight,
.page-news__faq-section,
.page-news__cta-section {
  padding: 60px 20px;
  text-align: center;
}

.page-news__light-bg {
  background: #ffffff;
  color: #333333;
}

.page-news__dark-bg {
  background: #26A9E0;
  color: #ffffff;
}

.page-news__section-title {
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.page-news__light-bg .page-news__section-title {
  color: #000000;
}

.page-news__dark-bg .page-news__section-title {
  color: #ffffff;
}

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

.page-news__news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-news__news-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.page-news__dark-bg .page-news__news-card {
  background: rgba(255, 255, 255, 0.1);
  color: #f0f0f0;
}

.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.4em;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.4;
}

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

.page-news__dark-bg .page-news__card-title a {
  color: #ffffff;
}

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

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

.page-news__dark-bg .page-news__card-text {
  color: #cccccc;
}

.page-news__btn-secondary {
  background: #ffffff;
  color: #26A9E0;
  border: 2px solid #26A9E0;
  margin-top: auto;
}

.page-news__dark-bg .page-news__btn-secondary {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.page-news__btn-secondary:hover {
  background: #26A9E0;
  color: #ffffff;
}

.page-news__dark-bg .page-news__btn-secondary:hover {
  background: #ffffff;
  color: #26A9E0;
}

.page-news__promotion-content {
  display: flex;
  align-items: center;
  gap: 40px;
  text-align: left;
}

.page-news__promotion-text {
  flex: 1;
}

.page-news__promotion-image {
  flex: 1;
  max-width: 600px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  display: block;
}

.page-news__promotion-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  margin-bottom: 30px;
}

.page-news__promotion-list li {
  font-size: 1.05em;
  line-height: 1.8;
  margin-bottom: 10px;
  color: #333333;
  position: relative;
  padding-left: 25px;
}

.page-news__promotion-list li::before {
  content: '✅';
  position: absolute;
  left: 0;
  color: #26A9E0;
}

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

.page-news__faq-item {
  background: #f9f9f9;
  border-radius: 8px;
  margin-bottom: 15px;
  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: 20px 25px;
  cursor: pointer;
  background: #ffffff;
  border-bottom: 1px solid #eeeeee;
  transition: background 0.3s ease;
}

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

.page-news__faq-title {
  font-size: 1.15em;
  font-weight: 600;
  color: #26A9E0;
  margin: 0;
  flex-grow: 1;
  text-align: left;
}

.page-news__faq-toggle {
  font-size: 1.8em;
  font-weight: 300;
  color: #26A9E0;
  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;
  color: #555555;
  text-align: left;
}

.page-news__faq-item.active .page-news__faq-answer {
  max-height: 1000px !important;
  padding: 15px 25px 20px;
}

.page-news__faq-answer p {
  margin-bottom: 0;
  line-height: 1.6;
}

.page-news__faq-answer a {
  color: #26A9E0;
  text-decoration: none;
}

.page-news__faq-answer a:hover {
  text-decoration: underline;
}

.page-news__cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-news__cta-buttons {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.page-news__cta-buttons .page-news__btn-primary,
.page-news__cta-buttons .page-news__btn-secondary {
  min-width: 200px;
  flex-grow: 1;
  text-align: center;
}

/* Responsive styles */
@media (max-width: 992px) {
  .page-news__main-title {
    font-size: 2.5em;
  }
  .page-news__section-title {
    font-size: 2em;
  }
  .page-news__promotion-content {
    flex-direction: column;
  }
  .page-news__promotion-image {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-news__hero-section {
    padding: 60px 15px 30px;
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-news__main-title {
    font-size: 2em;
  }
  .page-news__intro-text {
    font-size: 1em;
  }
  .page-news__section-title {
    font-size: 1.8em;
  }
  .page-news__section-description {
    font-size: 0.95em;
  }
  .page-news__latest-news-section,
  .page-news__featured-articles-section,
  .page-news__promotion-highlight,
  .page-news__faq-section,
  .page-news__cta-section {
    padding: 40px 15px;
  }
  .page-news__news-grid {
    grid-template-columns: 1fr;
  }
  .page-news__news-card {
    margin-bottom: 20px;
  }
  .page-news__card-image {
    height: 180px;
  }
  .page-news__card-title {
    font-size: 1.2em;
  }
  .page-news__card-text {
    font-size: 0.9em;
  }
  .page-news__faq-question {
    padding: 15px 20px;
  }
  .page-news__faq-title {
    font-size: 1em;
  }
  .page-news__faq-toggle {
    font-size: 1.5em;
  }
  .page-news__faq-answer {
    padding: 0 20px;
  }
  .page-news__faq-item.active .page-news__faq-answer {
    padding: 10px 20px 15px;
  }
  .page-news__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }
  .page-news__btn-primary,
  .page-news__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    margin: 0;
  }

  /* Ensure all images are responsive on mobile */
  .page-news img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* All containers with images/videos */
  .page-news__section,
  .page-news__card,
  .page-news__container,
  .page-news__promotion-content,
  .page-news__cta-content {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }
}