.page-news {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* Dark text for light body background */
  background-color: #f8f9fa; /* Body background from shared.css */
}

.page-news__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  text-align: center;
  overflow: hidden;
  background-color: #08160F; /* Deep green background for contrast */
  color: #F2FFF6; /* Light text on dark background */
}

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

.page-news__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
}

.page-news__main-title {
  font-size: clamp(2em, 5vw, 3.5em);
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #F2FFF6;
}

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

.page-news__section-title {
  font-size: 2.5em;
  font-weight: bold;
  margin-bottom: 15px;
  text-align: center;
  color: #11A84E; /* Brand primary color */
}

.page-news__section-subtitle {
  font-size: 1.1em;
  margin-bottom: 40px;
  text-align: center;
  color: #333333;
}

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

.page-news__recent-news,
.page-news__promotions-section,
.page-news__faq-section {
  background-color: #f8f9fa; /* Light background */
  color: #333333;
}

.page-news__dark-section {
  background-color: #08160F; /* Deep Green */
  color: #F2FFF6;
}

.page-news__dark-section .page-news__section-title {
  color: #22C768; /* Auxiliary color for titles on dark background */
}

.page-news__dark-section .page-news__section-subtitle {
  color: #A7D9B8;
}

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

.page-news__news-card {
  background-color: #ffffff; /* Card background */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #333333;
  display: flex;
  flex-direction: column;
}

.page-news__news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-news__card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

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

.page-news__card-date {
  font-size: 0.9em;
  color: #A7D9B8;
  margin-bottom: 10px;
}

.page-news__card-title {
  font-size: 1.4em;
  font-weight: bold;
  margin-bottom: 10px;
}

.page-news__card-title a {
  color: #11A84E; /* Primary color for links */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-news__card-title a:hover {
  color: #22C768; /* Auxiliary color on hover */
}

.page-news__card-excerpt {
  font-size: 1em;
  color: #555555;
  margin-bottom: 15px;
}

.page-news__card-link {
  display: inline-block;
  color: #11A84E;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
  margin-top: auto;
}

.page-news__card-link:hover {
  color: #22C768;
}

.page-news__article-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 40px;
}

.page-news__article-item {
  display: flex;
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #F2FFF6;
}

.page-news__article-image {
  width: 40%;
  height: auto;
  object-fit: cover;
}

.page-news__article-content {
  padding: 30px;
  width: 60%;
}

.page-news__article-date {
  font-size: 0.9em;
  color: #A7D9B8;
  margin-bottom: 10px;
}

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

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

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

.page-news__article-text {
  font-size: 1em;
  color: #F2FFF6;
  margin-bottom: 20px;
}

.page-news__promotions-section .page-news__section-title,
.page-news__promotions-section .page-news__section-subtitle {
  color: #333333;
}

.page-news__promotion-banner {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
  color: #F2FFF6;
}

.page-news__banner-image {
  width: 50%;
  height: auto;
  object-fit: cover;
}

.page-news__banner-content {
  width: 50%;
  padding: 30px;
}

.page-news__banner-content h3 {
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 15px;
  color: #F2FFF6;
}

.page-news__banner-content p {
  font-size: 1.1em;
  color: #A7D9B8;
  margin-bottom: 25px;
}

.page-news__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: center;
  margin-bottom: 40px;
}

.page-news__feature-item {
  background-color: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-news__feature-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-news__feature-item h3 {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 10px;
  color: #F2FFF6;
}

.page-news__feature-item p {
  font-size: 1em;
  color: #A7D9B8;
}

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

.page-news__faq-item {
  background-color: #ffffff; /* White background */
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #333333;
}

.page-news__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  background-color: #f5f5f5;
  color: #11A84E;
  list-style: none;
}

.page-news__faq-item summary::-webkit-details-marker {
  display: none;
}

.page-news__faq-qtext {
  flex-grow: 1;
}

.page-news__faq-toggle {
  font-size: 1.5em;
  margin-left: 10px;
  color: #11A84E;
}

.page-news__faq-answer {
  padding: 20px;
  border-top: 1px solid #e0e0e0;
  background-color: #ffffff;
  color: #555555;
}

.page-news__faq-answer p {
  margin: 0;
  color: #333333;
}

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

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

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

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

.page-news__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 5px 15px rgba(34, 199, 104, 0.4);
}

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

.page-news__btn-secondary:hover {
  background-color: #11A84E;
  color: #ffffff;
  box-shadow: 0 5px 15px rgba(17, 168, 78, 0.4);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .page-news__article-item {
    flex-direction: column;
  }

  .page-news__article-image,
  .page-news__article-content {
    width: 100%;
  }

  .page-news__promotion-banner {
    flex-direction: column;
  }

  .page-news__banner-image,
  .page-news__banner-content {
    width: 100%;
  }

  .page-news__banner-content {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .page-news__hero-section {
    padding-bottom: 40px;
  }

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

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

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

  .page-news__section-subtitle {
    font-size: 0.9em;
  }

  .page-news__container {
    padding: 20px 15px;
  }

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

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

  .page-news__banner-content h3 {
    font-size: 1.5em;
  }

  .page-news__banner-content p {
    font-size: 0.9em;
  }

  .page-news__feature-item {
    padding: 20px;
  }

  .page-news__faq-item summary {
    font-size: 1em;
    padding: 15px;
  }

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

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

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

  /* Image responsive adaptations */
  .page-news img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-news__hero-image,
  .page-news__card-image,
  .page-news__article-image,
  .page-news__banner-image,
  .page-news__feature-icon {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }

  .page-news__section,
  .page-news__card,
  .page-news__container,
  .page-news__news-card,
  .page-news__article-item,
  .page-news__promotion-banner,
  .page-news__feature-item,
  .page-news__faq-list,
  .page-news__faq-item,
  .page-news__cta-bottom {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Ensure no overflow */
  }

  .page-news__video-section { /* Apply to video sections if present, for safety */
    padding-top: 10px !important;
  }
}