.page-news {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  padding-bottom: 60px; /* Ensure space above footer */
}

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

/* Hero Section */
.page-news__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 40px;
}

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

.page-news__hero-content {
  position: relative; /* Ensure content is above image if z-index is used, but we're stacking */
  padding: 20px 0;
  z-index: 1;
  max-width: 800px;
  margin-top: -100px; /* Pull content up over the image bottom, but not on top of main visual */
  background: linear-gradient(0deg, rgba(8, 22, 15, 0.9) 0%, rgba(8, 22, 15, 0.5) 50%, rgba(8, 22, 15, 0) 100%);
  padding-top: 120px;
  padding-bottom: 40px;
  width: 100%;
}

.page-news__main-title {
  font-size: clamp(2em, 4vw, 3em);
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-news__description {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

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

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

.page-news__btn--primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 0 15px #57E38D; /* Glow */
}

.page-news__btn--secondary {
  background: transparent;
  color: #2AD16F; /* Button top color */
  border: 2px solid #2AD16F;
}

.page-news__btn--secondary:hover {
  background: rgba(42, 209, 111, 0.1);
  color: #F2FFF6;
}

/* Articles Section */
.page-news__articles-section {
  padding: 60px 0;
  background-color: #08160F;
}

.page-news__section-title {
  font-size: 2.5em;
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

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

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

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

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

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

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

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

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

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

.page-news__article-meta {
  font-size: 0.9em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 15px;
}

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

.page-news__read-more {
  color: #2AD16F;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
  align-self: flex-start;
}

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

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

/* Why Choose Section */
.page-news__why-choose-section {
  background-color: #0A4B2C; /* Deep Green */
  padding: 60px 0;
}

.page-news__why-choose-content {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.page-news__why-choose-image {
  flex: 1 1 45%;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  display: block;
  object-fit: cover;
  min-width: 200px; /* Min size requirement */
}

.page-news__text-block {
  flex: 1 1 50%;
  color: #F2FFF6;
}

.page-news__advantage-list {
  list-style: none;
  padding-left: 0;
  margin: 20px 0;
}

.page-news__advantage-list li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
  color: #A7D9B8;
}

.page-news__advantage-list li strong {
  color: #F2FFF6;
}

.page-news__advantage-list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #57E38D; /* Glow */
  font-weight: bold;
}

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

.page-news__faq-list {
  margin-top: 40px;
}

.page-news__faq-item {
  background-color: #11271B; /* Card BG */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: background-color 0.3s ease;
  border: 1px solid #2E7A4E; /* Border */
}

.page-news__faq-item[open] {
  background-color: #0A4B2C; /* Deep Green */
}

.page-news__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  font-size: 1.15em;
  list-style: none; /* Hide default marker for details/summary */
}

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

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

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

.page-news__faq-answer {
  padding: 0 25px 20px 25px;
  color: #A7D9B8; /* Text Secondary */
  font-size: 1em;
}

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

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

.page-news__faq-answer a:hover {
  color: #57E38D;
}

/* Call to Action Section */
.page-news__cta-section {
  background-color: #11271B; /* Card BG */
  padding: 60px 0;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-news__hero-image {
    max-height: 400px;
  }
  .page-news__why-choose-content {
    flex-direction: column;
    text-align: center;
  }
  .page-news__why-choose-image {
    max-width: 100%;
    order: -1; /* Image above text on smaller screens */
  }
  .page-news__text-block {
    flex: 1 1 100%;
  }
  .page-news__advantage-list {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .page-news__hero-section {
    padding-top: 10px !important;
    padding-bottom: 20px;
  }
  .page-news__hero-content {
    margin-top: -50px; /* Adjust for smaller screens */
    padding-top: 80px;
  }
  .page-news__main-title {
    font-size: 2em;
  }
  .page-news__description {
    font-size: 1em;
  }
  .page-news__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-news__btn {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-news__section-title {
    font-size: 2em;
  }
  .page-news__section-description {
    font-size: 0.95em;
  }
  .page-news__articles-grid {
    grid-template-columns: 1fr;
  }
  .page-news__article-image {
    height: 180px;
  }
  .page-news__article-title {
    font-size: 1.2em;
  }
  .page-news__article-excerpt {
    font-size: 0.95em;
  }
  .page-news__why-choose-section,
  .page-news__articles-section,
  .page-news__faq-section,
  .page-news__cta-section {
    padding: 40px 0;
  }
  .page-news__container {
    padding-left: 15px !important;
    padding-right: 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-news__article-card,
  .page-news__faq-item {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-news img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .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;
  }
}