.page-news {
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-news__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding */
  padding-bottom: 60px;
  text-align: center;
}

.page-news__hero-image-wrapper {
  width: 100%;
  max-height: 675px; /* Adjust as needed for hero image aspect ratio */
  overflow: hidden;
}

.page-news__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

.page-news__hero-content-wrapper {
  margin-top: 40px;
  max-width: 800px;
}

.page-news__hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-news__hero-description {
  font-size: 1.15rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

.page-news__hero-cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #F2FFF6; /* Text Main */
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  transition: background 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-news__hero-cta-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

.page-news__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

.page-news__section-paragraph {
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
  text-align: justify;
}

.page-news__intro-section, .page-news__benefits-section, .page-news__commitment-section, .page-news__cta-section--bottom {
  padding: 60px 0;
}

.page-news__highlights-section {
  padding: 60px 0;
  background-color: #11271B; /* Card BG */
}

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

.page-news__highlight-card {
  background-color: #08160F; /* Background */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
}

.page-news__highlight-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  margin-bottom: 20px;
}

.page-news__card-title {
  font-size: 1.4rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  padding: 0 15px;
}

.page-news__card-description {
  font-size: 0.95rem;
  color: #A7D9B8; /* Text Secondary */
  padding: 0 15px;
  text-align: justify;
}

.page-news__benefits-list {
  list-style: disc inside;
  color: #A7D9B8; /* Text Secondary */
  padding-left: 20px;
  margin-bottom: 30px;
}

.page-news__benefits-list li {
  margin-bottom: 10px;
}

.page-news__benefits-list strong {
  color: #F2FFF6; /* Text Main */
}

.page-news__cta-button {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #F2FFF6; /* Text Main */
  text-decoration: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.3s ease;
  border: none;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-news__cta-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

.page-news__cta-button--secondary {
  background: none;
  border: 2px solid #2AD16F;
  color: #2AD16F;
}

.page-news__cta-button--secondary:hover {
  background: #2AD16F;
  color: #08160F;
}

.page-news__cta-button--primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #F2FFF6;
}

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

.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: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

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

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

.page-news__news-card-title {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.page-news__news-card-title a {
  color: #F2FFF6; /* Text Main */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-news__news-card-title a:hover {
  color: #57E38D; /* Glow */
}

.page-news__news-date {
  font-size: 0.85rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 15px;
}

.page-news__news-excerpt {
  font-size: 0.95rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
  flex-grow: 1;
  text-align: justify;
}

.page-news__read-more-link {
  color: #2AD16F;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.page-news__read-more-link:hover {
  color: #F2FFF6;
}

.page-news__button-group {
  text-align: center;
}

.page-news__faq-section {
  padding: 60px 0;
  background-color: #11271B; /* Card BG */
}

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

.page-news__faq-item {
  background-color: #08160F; /* Background */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-news__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  list-style: none;
  transition: background-color 0.3s ease;
}

.page-news__faq-question:hover {
  background-color: #0A4B2C; /* Deep Green */
}

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

.page-news__faq-item[open] .page-news__faq-toggle {
  transform: rotate(45deg);
}

.page-news__faq-answer {
  padding: 0 25px 18px;
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
  text-align: justify;
}

.page-news__commitment-list {
  list-style: disc inside;
  color: #A7D9B8; /* Text Secondary */
  padding-left: 20px;
  margin-bottom: 30px;
}

.page-news__commitment-list li {
  margin-bottom: 10px;
}

.page-news__commitment-list strong {
  color: #F2FFF6; /* Text Main */
}

.page-news__cta-section--bottom {
  text-align: center;
}

@media (max-width: 1024px) {
  .page-news__hero-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
  .page-news__hero-description {
    font-size: 1.1rem;
  }
  .page-news__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  }
  .page-news__highlight-image {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .page-news__container {
    padding: 0 15px;
  }
  .page-news__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
  }
  .page-news__hero-content-wrapper {
    margin-top: 20px;
  }
  .page-news__hero-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }
  .page-news__hero-description {
    font-size: 1rem;
  }
  .page-news__hero-cta-button {
    padding: 12px 25px;
    font-size: 1rem;
  }
  .page-news__section-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-bottom: 30px;
  }
  .page-news__intro-section, .page-news__benefits-section, .page-news__commitment-section, .page-news__cta-section--bottom {
    padding: 40px 0;
  }
  .page-news__highlights-section {
    padding: 40px 0;
  }
  .page-news__highlights-grid {
    grid-template-columns: 1fr;
  }
  .page-news__highlight-image {
    height: 180px;
  }
  .page-news__card-title {
    font-size: 1.2rem;
  }
  .page-news__card-description {
    font-size: 0.9rem;
  }
  .page-news__benefits-list {
    padding-left: 15px;
  }
  .page-news__news-list-section {
    padding: 40px 0;
  }
  .page-news__news-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-news__news-image {
    height: 180px;
  }
  .page-news__news-card-title {
    font-size: 1.1rem;
  }
  .page-news__news-date, .page-news__news-excerpt {
    font-size: 0.85rem;
  }
  .page-news__read-more-link {
    font-size: 0.9rem;
  }
  .page-news__faq-item {
    margin-bottom: 10px;
  }
  .page-news__faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }
  .page-news__faq-answer {
    padding: 0 20px 15px;
    font-size: 0.95rem;
  }
  /* --- Mobile Image Responsiveness --- */
  .page-news img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-news__section, .page-news__card, .page-news__container, .page-news__hero-image-wrapper, .page-news__highlight-card, .page-news__news-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  /* Buttons */
  .page-news__cta-button, .page-news__hero-cta-button, .page-news__read-more-link {
    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;
  }
  .page-news__button-group {
    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;
    justify-content: center;
  }
  .page-news__button-group .page-news__cta-button {
    flex-grow: 1;
  }
}