.page-news__hero-section {
  position: relative;
  padding: 100px 20px;
  padding-top: var(--header-offset, 120px);
  text-align: center;
  background: #1A202C;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px; /* Ensure hero section has a minimum height */
}

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

.page-news__main-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700;
  line-height: 1.2;
}

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

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

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

.page-news__btn-primary--large {
  padding: 18px 35px;
  font-size: 1.3em;
  margin-top: 30px;
}

.page-news__content-section {
  padding: 60px 20px;
  background: #f8f8f8;
  color: #333333;
}

.page-news__section-title {
  font-size: 2.5em;
  color: #1A202C;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-news__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #FFD700;
  border-radius: 2px;
}

.page-news__sub-title {
  font-size: 1.8em;
  color: #1A202C;
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-news__paragraph {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 20px;
}

.page-news__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

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

.page-news__card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 25px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-sizing: border-box;
}

.page-news__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-news__card-image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-news__card-title {
  font-size: 1.5em;
  color: #1A202C;
  margin-bottom: 15px;
  flex-grow: 1;
}

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

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

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

.page-news__btn-secondary {
  display: inline-block;
  background: #1A202C;
  color: #FFD700;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background 0.3s ease, color 0.3s ease;
  border: 2px solid #1A202C;
  margin-top: auto; /* Push button to bottom */
}

.page-news__btn-secondary:hover {
  background: #FFD700;
  color: #1A202C;
  border-color: #FFD700;
}

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

.page-news__list-item {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 10px;
  padding-left: 30px;
  position: relative;
  color: #333333;
}

.page-news__list-item::before {
  content: '✔'; /* Checkmark icon */
  position: absolute;
  left: 0;
  color: #FFD700;
  font-weight: bold;
  font-size: 1.2em;
}

.page-news__list--ordered {
  list-style: decimal;
  padding-left: 25px;
}

.page-news__list--ordered .page-news__list-item {
  padding-left: 0;
  margin-left: 15px;
}

.page-news__list--ordered .page-news__list-item::before {
  content: none;
}

.page-news__video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-news__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  cursor: pointer;
}

.page-news__faq-container {
  margin-top: 40px;
  margin-bottom: 60px;
}

.page-news__faq-item {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.page-news__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background: #1A202C;
  color: #ffffff;
  font-weight: bold;
  font-size: 1.2em;
  border-bottom: 1px solid #2a3447; /* Darker border for contrast */
}

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

.page-news__faq-title {
  margin: 0;
  color: #ffffff;
}

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

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

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

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

.page-news__faq-answer .page-news__paragraph {
  margin-bottom: 0;
}

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

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

  .page-news__sub-title {
    font-size: 1.5em;
  }

  .page-news__intro-text,
  .page-news__paragraph,
  .page-news__list-item {
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .page-news__hero-section {
    padding: 80px 15px;
    padding-top: var(--header-offset, 120px) !important;
  }

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

  .page-news__intro-text {
    font-size: 0.95em;
  }

  .page-news__btn-primary {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-news__btn-primary--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }

  .page-news__content-section {
    padding: 40px 15px;
  }

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

  .page-news__sub-title {
    font-size: 1.3em;
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .page-news__paragraph,
  .page-news__list-item,
  .page-news__card-text {
    font-size: 0.9em;
    line-height: 1.6;
  }

  .page-news__grid-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-news__card {
    padding: 20px;
  }

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

  .page-news__btn-secondary {
    padding: 8px 15px;
    font-size: 0.9em;
  }

  /* Mobile specific image, video, button responsiveness */
  .page-news img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-news video,
  .page-news__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-news__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
    overflow: hidden !important;
  }
  
  .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;
    text-align: center;
  }
  
  .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: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
    display: flex;
    flex-direction: column; 
  }

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

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

/* Color Contrast Adjustments (as per instructions) */
/* Body background is var(--primary-color) which is #1A202C (dark) */
.page-news {
  color: #ffffff; /* Default text color for dark body background */
}

.page-news__content-section {
  background: #f8f8f8; /* Light background for content */
  color: #333333; /* Dark text for light background */
}

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

.page-news__card-title a {
  color: #1A202C; /* Ensure contrast on white card background */
}

.page-news__faq-question {
  background: #1A202C;
  color: #ffffff;
}

.page-news__faq-answer {
  background: #ffffff;
  color: #333333;
}