.page-news__main-content {
  padding-top: 120px; /* Space for fixed header on desktop */
  background-color: var(--dark-bg-1); /* Inherited from shared.css, assumed dark */
  color: #ffffff; /* Light text for dark background */
}

@media (max-width: 768px) {
  .page-news__main-content {
    padding-top: 100px; /* Space for fixed header on mobile */
  }
}

.page-news__hero-banner {
  position: relative;
  width: 100%;
  height: 450px; /* Adjust height as needed */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  margin-bottom: 40px;
}

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

.page-news__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.page-news__hero-title {
  font-size: 3.2em;
  margin-bottom: 15px;
  color: #E0B14A; /* Highlight color */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.page-news__hero-description {
  font-size: 1.3em;
  max-width: 800px;
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-news__hero-description a {
  color: #E0B14A;
  text-decoration: underline;
}

.page-news__hero-btn {
  display: inline-block;
  background: #E0B14A;
  color: #0A2463;
  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;
}

.page-news__hero-btn:hover {
  background: #f0c25a;
  transform: translateY(-2px);
}

.page-news__section {
  padding: 60px 0;
  background-color: var(--dark-bg-1);
  color: #ffffff;
}

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

.page-news__section-title {
  font-size: 2.8em;
  color: #ffffff;
  text-align: center;
  margin-bottom: 20px;
}

.page-news__highlight {
  color: #E0B14A;
}

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

.page-news__section-description a {
  color: #E0B14A;
  text-decoration: underline;
}

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

.page-news__article-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(224, 177, 74, 0.3);
}

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

.page-news__article-image-wrapper {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.page-news__article-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.page-news__article-card:hover .page-news__article-image {
  transform: scale(1.05);
}

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

.page-news__article-category {
  display: inline-block;
  background: #0A2463;
  color: #E0B14A;
  padding: 6px 12px;
  border-radius: 5px;
  font-size: 0.85em;
  font-weight: bold;
  margin-bottom: 15px;
}

.page-news__article-title {
  font-size: 1.5em;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.4;
}

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

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

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

.page-news__article-excerpt a {
  color: #E0B14A;
  text-decoration: underline;
}

.page-news__read-more-btn {
  display: inline-block;
  color: #E0B14A;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: color 0.3s ease, transform 0.3s ease;
  align-self: flex-start;
  padding: 8px 15px;
  border: 1px solid #E0B14A;
  border-radius: 5px;
}

.page-news__read-more-btn:hover {
  color: #ffffff;
  background-color: #E0B14A;
  transform: translateX(5px);
}

.page-news__cta-banner {
  background: linear-gradient(135deg, #0A2463, #0A2463, #E0B14A); /* Brand color gradient */
  padding: 80px 0;
  text-align: center;
  color: #ffffff;
}

.page-news__cta-content {
  max-width: 900px;
}

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

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

.page-news__cta-description a {
  color: #E0B14A;
  text-decoration: underline;
}

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

.page-news__btn-primary,
.page-news__btn-secondary {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.page-news__btn-primary {
  background: #E0B14A;
  color: #0A2463;
  border: 2px solid transparent;
}

.page-news__btn-primary:hover {
  background: #f0c25a;
  transform: translateY(-3px);
}

.page-news__btn-secondary {
  background: transparent;
  color: #E0B14A;
  border: 2px solid #E0B14A;
}

.page-news__btn-secondary:hover {
  background: #E0B14A;
  color: #0A2463;
  transform: translateY(-3px);
}

/* FAQ Section */
.page-news__faq-section {
  background-color: var(--dark-bg-2); /* Slightly different dark background */
  padding: 80px 0;
}

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

.page-news__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(224, 177, 74, 0.2);
}

.page-news__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.page-news__faq-question:hover {
  background: rgba(255, 255, 255, 0.12);
}

.page-news__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 1.2em;
  font-weight: 600;
  line-height: 1.5;
  color: #ffffff;
  pointer-events: none;
}

.page-news__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  color: #E0B14A;
  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;
  transform: rotate(45deg); /* Change to X on active */
}

.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;
  background: rgba(0, 0, 0, 0.3);
  color: #cccccc;
  border-top: 1px solid rgba(224, 177, 74, 0.1);
}

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

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

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

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

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

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

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

  .page-news__articles-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

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

@media (max-width: 768px) {
  .page-news__hero-banner {
    height: 350px;
  }

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

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

  .page-news__hero-btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-news__section {
    padding: 40px 0;
  }

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

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

  .page-news__section-description {
    font-size: 0.9em;
    margin-bottom: 30px;
  }

  .page-news__articles-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .page-news__article-image-wrapper {
    height: 180px;
  }

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

  .page-news__article-category {
    font-size: 0.8em;
    padding: 5px 10px;
    margin-bottom: 10px;
  }

  .page-news__article-title {
    font-size: 1.2em;
  }

  .page-news__article-excerpt {
    font-size: 0.9em;
    margin-bottom: 15px;
  }

  .page-news__read-more-btn {
    font-size: 0.9em;
    padding: 6px 12px;
  }

  .page-news__cta-banner {
    padding: 60px 0;
  }

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

  .page-news__cta-description {
    font-size: 1em;
    margin-bottom: 30px;
  }

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

  .page-news__btn-primary,
  .page-news__btn-secondary {
    width: 100%;
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-news__faq-section {
    padding: 60px 0;
  }

  .page-news__faq-question {
    padding: 15px 20px;
  }

  .page-news__faq-question h3 {
    font-size: 1em;
  }

  .page-news__faq-toggle {
    font-size: 24px;
    width: 25px;
    height: 25px;
  }

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

  .page-news__faq-item.active .page-news__faq-answer {
    padding: 15px 20px !important;
  }
  
  /* Mobile image adaptation for all images */
  .page-news img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
}