.page-news {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light body background */
  background-color: #f8f9fa; /* Ensure body background is consistent */
}

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

.page-news__section-title {
  font-size: 2.5em;
  color: #11A84E; /* Brand color for titles */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

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

/* Hero Section */
.page-news__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0 60px 0; /* body handles --header-offset, so small top padding here */
  text-align: center;
  overflow: hidden;
  background-color: #08160F; /* Deep Green background for visual separation */
}

.page-news__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 600px; /* Limit height for hero image */
}

.page-news__hero-content {
  padding: 40px 15px;
  max-width: 900px;
  color: #F2FFF6; /* Light text for dark background */
}

.page-news__main-title {
  font-size: clamp(2em, 4vw, 3.2em); /* Responsive font size */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #F2C14E; /* Gold color for main title */
}

.page-news__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #A7D9B8; /* Secondary light text color */
}

.page-news__hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap; /* Allow wrapping on small screens */
}

/* Buttons */
.page-news__btn-primary,
.page-news__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow word breaking */
  text-align: center;
}

.page-news__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: none;
}

.page-news__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 170, 0, 0.3);
}

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

.page-news__btn-secondary:hover {
  background: #11A84E;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(17, 168, 78, 0.3);
}

/* Latest News Section */
.page-news__latest-news {
  padding: 60px 0;
  background-color: #f8f9fa; /* Light background */
}

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

.page-news__news-card {
  background-color: #11271B; /* Dark card background */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #2E7A4E; /* Border color */
}

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

.page-news__card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

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

.page-news__card-content {
  padding: 20px;
  color: #F2FFF6; /* Light text for dark card background */
}

.page-news__card-title {
  font-size: 1.3em;
  margin-bottom: 10px;
  color: #F2FFF6; /* Light text */
  line-height: 1.3;
}

.page-news__card-date {
  font-size: 0.9em;
  color: #A7D9B8; /* Secondary light text */
  margin-bottom: 15px;
}

.page-news__card-excerpt {
  font-size: 1em;
  color: #A7D9B8; /* Secondary light text */
  margin-bottom: 15px;
}

.page-news__read-more {
  display: inline-block;
  color: #57E38D; /* Glow color for read more */
  font-weight: bold;
  text-decoration: none;
}

.page-news__read-more:hover {
  text-decoration: underline;
}

/* About News Section */
.page-news__about-news {
  padding: 60px 0;
  background-color: #08160F; /* Deep Green background */
  color: #F2FFF6; /* Light text */
}

.page-news__about-news .page-news__section-title {
  color: #F2C14E; /* Gold color for titles on dark background */
}

.page-news__about-news .page-news__section-description,
.page-news__about-news p {
  color: #A7D9B8; /* Secondary light text */
  text-align: left;
  margin-bottom: 20px;
}

/* News Categories Section */
.page-news__news-categories {
  padding: 60px 0;
  background-color: #f8f9fa; /* Light background */
}

.page-news__category-item {
  margin-bottom: 50px;
  background-color: #ffffff; /* White background for category items */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  color: #333333; /* Dark text */
}

.page-news__category-item:last-child {
  margin-bottom: 0;
}

.page-news__category-title {
  font-size: 1.8em;
  color: #11A84E; /* Brand color */
  margin-bottom: 15px;
  text-align: center;
}

.page-news__category-image {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-news__category-item p {
  color: #555555; /* Secondary dark text */
  text-align: justify;
}

/* Benefits Section */
.page-news__benefits {
  padding: 60px 0;
  background-color: #08160F; /* Deep Green background */
  color: #F2FFF6; /* Light text */
}

.page-news__benefits .page-news__section-title {
  color: #F2C14E; /* Gold color for titles on dark background */
}

.page-news__benefits .page-news__section-description {
  color: #A7D9B8; /* Secondary light text */
}

.page-news__benefits-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-news__benefits-list li {
  background-color: #11271B; /* Dark card background */
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Border color */
}

.page-news__benefit-title {
  font-size: 1.4em;
  color: #F2FFF6; /* Light text */
  margin-bottom: 10px;
}

.page-news__benefits-list p {
  color: #A7D9B8; /* Secondary light text */
  font-size: 0.95em;
}

/* Transparency Section */
.page-news__transparency {
  padding: 60px 0;
  background-color: #f8f9fa; /* Light background */
}

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

.page-news__transparency-item {
  background-color: #ffffff; /* White background */
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  color: #333333; /* Dark text */
}

.page-news__transparency-subtitle {
  font-size: 1.4em;
  color: #11A84E; /* Brand color */
  margin-bottom: 10px;
}

.page-news__transparency-item p {
  color: #555555; /* Secondary dark text */
  font-size: 0.95em;
}

/* Access Guide Section */
.page-news__access-guide {
  padding: 60px 0;
  background-color: #08160F; /* Deep Green background */
  color: #F2FFF6; /* Light text */
}

.page-news__access-guide .page-news__section-title {
  color: #F2C14E; /* Gold color for titles on dark background */
}

.page-news__access-guide .page-news__section-description {
  color: #A7D9B8; /* Secondary light text */
}

.page-news__guide-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-news__guide-list li {
  background-color: #11271B; /* Dark card background */
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Border color */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-news__guide-subtitle {
  font-size: 1.4em;
  color: #F2FFF6; /* Light text */
  margin-bottom: 10px;
}

.page-news__guide-list p {
  color: #A7D9B8; /* Secondary light text */
  font-size: 0.95em;
  flex-grow: 1; /* Allow paragraph to take space */
}

.page-news__guide-btn {
  margin-top: 20px; /* Space between text and button */
  align-self: flex-start; /* Align button to start */
}


/* FAQ Section */
.page-news__faq-section {
  padding: 60px 0;
  background-color: #f8f9fa; /* Light background */
}

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

.page-news__faq-item {
  background-color: #ffffff; /* White background */
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid #e0e0e0;
  overflow: hidden;
}

.page-news__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.1em;
  font-weight: bold;
  color: #333333; /* Dark text */
  cursor: pointer;
  background-color: #f5f5f5; /* Light grey background for question */
  border-bottom: 1px solid #e0e0e0;
  list-style: none; /* Hide default marker */
}

.page-news__faq-item[open] .page-news__faq-question {
  border-bottom: 1px solid #e0e0e0;
}

.page-news__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker for webkit */
}

.page-news__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: #11A84E; /* Brand color */
  transition: transform 0.3s ease;
}

.page-news__faq-item[open] .page-news__faq-toggle {
  transform: rotate(45deg); /* Rotate plus to cross */
}

.page-news__faq-answer {
  padding: 15px 25px 20px 25px;
  font-size: 1em;
  color: #555555; /* Secondary dark text */
  background-color: #ffffff;
}

/* Conclusion Section */
.page-news__conclusion {
  padding: 60px 0;
  text-align: center;
  background-color: #08160F; /* Deep Green background */
  color: #F2FFF6; /* Light text */
}

.page-news__conclusion .page-news__section-title {
  color: #F2C14E; /* Gold color for titles on dark background */
}

.page-news__conclusion p {
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #A7D9B8; /* Secondary light text */
  font-size: 1.1em;
}

.page-news__conclusion-cta {
  margin-top: 30px;
}


/* Responsive Styles */
@media (max-width: 1024px) {
  .page-news__section-title {
    font-size: 2em;
  }
  .page-news__hero-image {
    max-height: 500px;
  }
}

@media (max-width: 768px) {
  .page-news__section-title {
    font-size: 1.8em;
  }
  .page-news__section-description {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-news__main-title {
    font-size: clamp(1.8em, 6vw, 2.5em);
  }
  .page-news__hero-description {
    font-size: 1em;
  }
  .page-news__hero-cta {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    padding: 0 15px;
  }
  .page-news__btn-primary,
  .page-news__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 20px;
    font-size: 1em;
  }

  /* Image responsive */
  .page-news img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  /* Video responsive (if any, though none explicitly in HTML yet) */
  .page-news video,
  .page-news__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-news__video-section,
  .page-news__video-container,
  .page-news__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-news__video-section {
    padding-top: 10px !important; /* body handles --header-offset, small top padding here */
  }

  /* Content area padding */
  .page-news__container {
    padding: 0 15px;
  }

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

  .page-news__category-item,
  .page-news__benefits-list li,
  .page-news__transparency-item,
  .page-news__guide-list li {
    padding: 20px;
  }

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

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

  /* Ensure all containers containing images, videos, or buttons are responsive */
  .page-news__section,
  .page-news__card,
  .page-news__container,
  .page-news__hero-section,
  .page-news__latest-news,
  .page-news__about-news,
  .page-news__news-categories,
  .page-news__benefits,
  .page-news__transparency,
  .page-news__access-guide,
  .page-news__faq-section,
  .page-news__conclusion {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    /* Removed specific padding-left/right here to avoid double padding with .page-news__container */
  }
  .page-news__hero-section {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 480px) {
  .page-news__section-title {
    font-size: 1.5em;
  }
  .page-news__main-title {
    font-size: clamp(1.5em, 7vw, 2em);
  }
  .page-news__hero-image {
    max-height: 300px;
  }
}

/* Color Contrast Enforcement */
/* Dark background sections */
.page-news__dark-bg {
  background-color: #08160F; /* Deep Green */
  color: #F2FFF6; /* Text Main */
}
.page-news__dark-bg .page-news__section-title {
  color: #F2C14E; /* Gold */
}
.page-news__dark-bg .page-news__section-description,
.page-news__dark-bg p,
.page-news__dark-bg li {
  color: #A7D9B8; /* Text Secondary */
}
.page-news__dark-bg .page-news__news-card,
.page-news__dark-bg .page-news__benefits-list li,
.page-news__dark-bg .page-news__guide-list li {
  background-color: #11271B; /* Card BG */
  border-color: #2E7A4E; /* Border */
}
.page-news__dark-bg .page-news__card-title,
.page-news__dark-bg .page-news__benefit-title,
.page-news__dark-bg .page-news__guide-subtitle {
  color: #F2FFF6; /* Text Main */
}
.page-news__dark-bg .page-news__card-date,
.page-news__dark-bg .page-news__card-excerpt {
  color: #A7D9B8; /* Text Secondary */
}
.page-news__dark-bg .page-news__read-more {
  color: #57E38D; /* Glow */
}


/* Light background sections */
.page-news__light-bg {
  background-color: #f8f9fa; /* Body background */
  color: #333333; /* Default dark text */
}
.page-news__light-bg .page-news__section-title {
  color: #11A84E; /* Brand color */
}
.page-news__light-bg .page-news__section-description,
.page-news__light-bg p,
.page-news__light-bg li {
  color: #555555; /* Secondary dark text */
}
.page-news__light-bg .page-news__category-item,
.page-news__light-bg .page-news__transparency-item,
.page-news__light-bg .page-news__faq-item {
  background-color: #ffffff; /* White */
  border-color: #e0e0e0; /* Light border */
}
.page-news__light-bg .page-news__category-title,
.page-news__light-bg .page-news__transparency-subtitle,
.page-news__light-bg .page-news__faq-question {
  color: #11A84E; /* Brand color */
}
.page-news__light-bg .page-news__faq-answer {
  color: #555555; /* Secondary dark text */
}
.page-news__light-bg .page-news__faq-toggle {
  color: #11A84E; /* Brand color */
}
.page-news__light-bg .page-news__faq-question {
  background-color: #f5f5f5;
}