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

.page-news__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #08160F;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  overflow: hidden;
}

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

.page-news__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2; /* Slightly dim the background image */
}

.page-news__hero-content-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  text-align: center;
  padding: 40px 20px;
  box-sizing: border-box;
}

.page-news__hero-content {
  max-width: 900px;
  margin: 0 auto;
  color: #F2FFF6; /* Light text for dark hero background */
}

.page-news__main-title {
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #F2C14E; /* Gold color for main title */
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.page-news__intro-text {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #F2FFF6;
}

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

.page-news__btn-primary,
.page-news__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  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 {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-news__btn-secondary {
  background: #08160F;
  color: #F2FFF6;
  border: 2px solid #2E7A4E;
}

.page-news__btn-secondary:hover {
  background: #11271B;
  color: #F2C14E;
}

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

.page-news__latest-news-section,
.page-news__featured-articles-section,
.page-news__why-follow-section,
.page-news__how-to-stay-updated,
.page-news__about-news-section,
.page-news__faq-section,
.page-news__cta-bottom-section {
  padding: 60px 0;
}

.page-news__dark-section {
  background-color: #08160F;
  color: #F2FFF6;
}

.page-news__dark-section .page-news__section-title,
.page-news__dark-section .page-news__section-description,
.page-news__dark-section .page-news__card-title a,
.page-news__dark-section .page-news__card-date,
.page-news__dark-section .page-news__card-excerpt,
.page-news__dark-section .page-news__read-more,
.page-news__dark-section .page-news__faq-qtext,
.page-news__dark-section .page-news__faq-answer p,
.page-news__dark-section .page-news__benefit-item h3,
.page-news__dark-section .page-news__benefit-item p,
.page-news__dark-section .page-news__about-item,
.page-news__dark-section .page-news__about-item strong {
  color: #F2FFF6;
}

.page-news__dark-section .page-news__read-more {
  color: #2AD16F;
}

.page-news__dark-section .page-news__card-title a:hover,
.page-news__dark-section .page-news__read-more:hover {
  color: #F2C14E;
}

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

.page-news__dark-section .page-news__section-title {
  color: #F2C14E;
}

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

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

.page-news__news-card {
  background-color: #11271B;
  border-radius: 12px;
  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;
}

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

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

.page-news__card-content {
  padding: 25px;
}

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

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

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

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

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

.page-news__read-more {
  color: #2AD16F;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
  display: inline-block;
}

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

.page-news__view-all-button-wrapper {
  text-align: center;
  margin-top: 50px;
}

.page-news__articles-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.page-news__article-item {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  padding: 25px;
  border: 1px solid #e0e0e0;
}

.page-news__article-image {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.page-news__article-content {
  flex-grow: 1;
}

.page-news__article-title {
  font-size: 1.5em;
  margin-bottom: 10px;
}

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

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

.page-news__article-date {
  font-size: 0.9em;
  color: #666666;
  margin-bottom: 15px;
  display: block;
}

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

.page-news__benefits-list,
.page-news__update-methods-list,
.page-news__about-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  gap: 25px;
}

.page-news__benefit-item,
.page-news__method-item,
.page-news__about-item {
  background-color: #11271B;
  border: 1px solid #2E7A4E;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.page-news__benefit-item h3,
.page-news__method-item h3 {
  color: #F2C14E;
  font-size: 1.3em;
  margin-bottom: 10px;
}

.page-news__benefit-item p,
.page-news__method-item p,
.page-news__about-item {
  color: #A7D9B8;
}

.page-news__about-item strong {
  color: #F2C14E;
}

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

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

.page-news__dark-section .page-news__faq-item {
  background-color: #11271B;
  border: 1px solid #2E7A4E;
}

.page-news__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1em;
  color: #11A84E;
  list-style: none; /* For details/summary */
}

.page-news__dark-section .page-news__faq-question {
  color: #F2FFF6;
}

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

.page-news__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  transition: transform 0.3s ease;
  color: #2AD16F;
}

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

.page-news__faq-answer {
  padding: 0 25px 20px 25px;
  color: #333333;
  font-size: 1em;
}

.page-news__dark-section .page-news__faq-answer {
  color: #A7D9B8;
}

.page-news__faq-answer a {
  color: #2AD16F;
  text-decoration: none;
}

.page-news__faq-answer a:hover {
  text-decoration: underline;
}

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

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

  .page-news__news-card {
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .page-news__hero-content-wrapper {
    padding: 30px 15px;
  }

  .page-news__main-title {
    font-size: clamp(1.8em, 6vw, 2.5em); /* Use clamp for H1 on mobile */
    margin-bottom: 15px;
  }

  .page-news__intro-text {
    font-size: 1em;
    margin-bottom: 25px;
  }

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

  .page-news__btn-primary,
  .page-news__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-news__latest-news-section,
  .page-news__featured-articles-section,
  .page-news__why-follow-section,
  .page-news__how-to-stay-updated,
  .page-news__about-news-section,
  .page-news__faq-section,
  .page-news__cta-bottom-section {
    padding: 40px 0;
  }

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

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

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

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

  .page-news__article-item {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }

  .page-news__article-image {
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
    display: block !important;
  }

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

  .page-news__benefits-list,
  .page-news__update-methods-list,
  .page-news__about-list {
    gap: 20px;
  }

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

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

  /* Mobile image responsiveness */
  .page-news img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-news__section, .page-news__card, .page-news__container, .page-news__hero-section, .page-news__latest-news-section, .page-news__featured-articles-section, .page-news__why-follow-section, .page-news__how-to-stay-updated, .page-news__about-news-section, .page-news__faq-section, .page-news__cta-bottom-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden !important; /* Ensure no horizontal scroll */
  }
  .page-news__hero-section {
    padding-top: 10px !important;
  }
}

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

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

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

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