.page-news {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default dark text for light background sections */
  background-color: var(--white-color, #FFFFFF); /* Page content background */
}

.page-news__hero-section {
  position: relative;
  width: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  background-color: #26A9E0; /* Brand primary color for hero background */
}

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

.page-news__hero-content {
  position: relative;
  z-index: 2;
  color: #FFFFFF; /* White text for dark/brand primary background */
  max-width: 800px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text readability */
  border-radius: 8px;
}

.page-news__hero-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #FFFFFF;
}

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

.page-news__section {
  padding: 60px 20px;
  background-color: #FFFFFF;
  color: #333333;
}

.page-news__dark-section {
  background-color: #26A9E0;
  color: #FFFFFF;
}

.page-news__container {
  max-width: 1000px;
  margin: 0 auto;
}

.page-news__section-title {
  font-size: 2.5em;
  color: #26A9E0;
  margin-bottom: 30px;
  text-align: center;
}

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

.page-news__subsection-title {
  font-size: 1.8em;
  color: #26A9E0;
  margin-top: 40px;
  margin-bottom: 15px;
}

.page-news__dark-section .page-news__subsection-title {
  color: #FFFFFF;
}

.page-news__section-text, .page-news__step-description, .page-news__faq-text {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.7;
}

.page-news__list {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 20px;
}

.page-news__list-item {
  margin-bottom: 10px;
  font-size: 1.1em;
}

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

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

.page-news__btn-primary {
  display: inline-block;
  background-color: #26A9E0; /* Primary brand color */
  color: #FFFFFF; /* White text for primary button */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

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

.page-news__btn-secondary {
  display: inline-block;
  background-color: #FFFFFF; /* White background for secondary button */
  color: #26A9E0; /* Primary brand color text for secondary button */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  border: 2px solid #26A9E0;
  cursor: pointer;
}

.page-news__btn-secondary:hover {
  background-color: #26A9E0;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.page-news__cta-bottom {
  text-align: center;
  background-color: #F8F8F8; /* Light background for CTA */
  padding: 80px 20px;
}

.page-news__cta-container {
  max-width: 800px;
}

/* FAQ Section Styles */
.page-news__faq-list {
  margin-top: 40px;
}

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

.page-news__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background-color: #FFFFFF;
  cursor: pointer;
  border-bottom: 1px solid #eee;
  transition: background-color 0.3s ease;
}

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

.page-news__faq-title {
  font-size: 1.2em;
  color: #333333;
  margin: 0;
}

.page-news__faq-toggle {
  font-size: 1.5em;
  color: #26A9E0;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.page-news__faq-item.active .page-news__faq-toggle {
  transform: rotate(0deg); /* No rotation needed if using +/- */
}

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

.page-news__faq-item.active .page-news__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 20px 25px !important;
}

/* Ensure links within content are styled */
.page-news__section-text a, .page-news__list-item a, .page-news__step-description a, .page-news__faq-text a {
  color: #26A9E0;
  text-decoration: underline;
}

.page-news__section-text a:hover, .page-news__list-item a:hover, .page-news__step-description a:hover, .page-news__faq-text a:hover {
  color: #1a7fb3;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-news__hero-title {
    font-size: 2.5em;
  }
  .page-news__section-title {
    font-size: 2em;
  }
  .page-news__subsection-title {
    font-size: 1.5em;
  }
}

@media (max-width: 768px) {
  .page-news {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-news__hero-section {
    min-height: 400px;
    padding: 40px 15px;
    padding-top: var(--header-offset, 120px) !important; /* Ensure mobile header offset */
  }

  .page-news__hero-title {
    font-size: 2em;
    margin-bottom: 15px;
  }

  .page-news__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-news__btn-primary, .page-news__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px !important;
    font-size: 1em !important;
    margin-top: 10px;
  }

  .page-news__section, .page-news__cta-bottom {
    padding: 40px 15px;
  }

  .page-news__container {
    padding-left: 0px;
    padding-right: 0px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-news__section-title {
    font-size: 1.8em;
    margin-bottom: 20px;
  }

  .page-news__subsection-title {
    font-size: 1.3em;
  }

  .page-news__image-content {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* FAQ specific mobile styles */
  .page-news__faq-item {
    margin-bottom: 10px;
  }
  .page-news__faq-question {
    padding: 15px 20px;
  }
  .page-news__faq-title {
    font-size: 1.1em;
  }
  .page-news__faq-answer {
    padding: 15px 20px !important;
  }
}

/* No CSS filter for images */
.page-news img {
  filter: none !important;
}