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

.page-news__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0;
  overflow: hidden;
}

.page-news__hero-image-wrapper {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 0;
}

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

.page-news__hero-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text readability */
  z-index: 1;
}

.page-news__main-title {
  font-size: clamp(2em, 5vw, 3.5em);
  font-weight: 700;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  line-height: 1.2;
  max-width: 900px;
}

.page-news__description {
  font-size: clamp(1em, 2vw, 1.3em);
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
  max-width: 800px;
  line-height: 1.5;
}

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

.page-news__cta-button:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-news__cta-button--large {
  padding: 18px 35px;
  font-size: 1.2em;
}

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

.page-news__introduction-section, 
.page-news__featured-news-section, 
.page-news__benefits-section, 
.page-news__faq-section, 
.page-news__cta-section {
  padding: 60px 0;
  text-align: center;
}

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

.page-news__paragraph {
  font-size: 1.1em;
  line-height: 1.7;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

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

.page-news__news-card {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: left;
  display: flex;
  flex-direction: column;
  border: 1px solid #2E7A4E; /* Border */
}

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

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

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

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

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

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

.page-news__card-description {
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-news__read-more-button {
  display: inline-block;
  padding: 10px 20px;
  background: #11A84E; /* Main color */
  color: #F2FFF6; /* Text Main */
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  transition: background-color 0.3s ease;
  align-self: flex-start;
}

.page-news__read-more-button:hover {
  background-color: #22C768; /* Auxiliary color */
}

.page-news__view-all-button-container {
  margin-top: 50px;
}

.page-news__view-all-button {
  display: inline-block;
  padding: 15px 35px;
  background: #22C768; /* Auxiliary color */
  color: #F2FFF6; /* Text Main */
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1em;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-news__view-all-button:hover {
  background: #11A84E; /* Main color */
  transform: translateY(-2px);
}

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

.page-news__benefit-item {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #2E7A4E; /* Border */
}

.page-news__benefit-icon {
  width: 100%;
  max-width: 150px;
  height: auto;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-news__benefit-title {
  font-size: 1.3em;
  font-weight: 600;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
}

.page-news__benefit-description {
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.6;
}

.page-news__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  text-align: left;
}

.page-news__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.15em;
  font-weight: 600;
  color: #F2FFF6; /* Text Main */
  background-color: #11271B; /* Card BG */
  transition: background-color 0.3s ease;
}

.page-news__faq-question:hover {
  background-color: #1e3a2a; /* Darker shade of Card BG */
}

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

.page-news__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #2AD16F; /* Button gradient start color */
}

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

.page-news__faq-item[open] .page-news__faq-toggle {
  content: '−';
}

/* Hide default marker for details tag */
.page-news__faq-item summary {
  list-style: none;
}

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

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-news__hero-content {
    padding: 15px;
  }
  .page-news__main-title {
    font-size: clamp(1.8em, 6vw, 3em);
  }
  .page-news__description {
    font-size: clamp(0.9em, 2.5vw, 1.2em);
  }
  .page-news__news-grid, .page-news__benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  .page-news__card-image {
    height: 180px;
  }
  .page-news__card-title {
    font-size: 1.2em;
  }
  .page-news__faq-question {
    font-size: 1.05em;
    padding: 18px 20px;
  }
  .page-news__faq-answer {
    padding: 0 20px 18px;
  }
}

@media (max-width: 768px) {
  .page-news__hero-content {
    padding: 10px;
  }
  .page-news__main-title {
    font-size: clamp(1.5em, 7vw, 2.5em);
  }
  .page-news__description {
    font-size: clamp(0.85em, 3vw, 1.1em);
  }
  .page-news__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-news__cta-button--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  .page-news__container {
    padding: 30px 15px;
  }
  .page-news__introduction-section, 
  .page-news__featured-news-section, 
  .page-news__benefits-section, 
  .page-news__faq-section, 
  .page-news__cta-section {
    padding: 40px 0;
  }
  .page-news__section-title {
    font-size: clamp(1.5em, 5vw, 2.2em);
  }
  .page-news__paragraph {
    font-size: 0.95em;
    text-align: center;
  }
  .page-news__news-grid, .page-news__benefits-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .page-news__card-image {
    height: 200px;
  }
  .page-news__card-content {
    padding: 20px;
  }
  .page-news__card-title {
    font-size: 1.1em;
  }
  .page-news__card-date, .page-news__card-description {
    font-size: 0.9em;
  }
  .page-news__read-more-button {
    padding: 8px 18px;
    font-size: 0.9em;
  }
  .page-news__view-all-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-news__benefit-item {
    padding: 25px;
  }
  .page-news__benefit-title {
    font-size: 1.2em;
  }
  .page-news__benefit-description {
    font-size: 0.95em;
  }
  .page-news__faq-question {
    font-size: 1em;
    padding: 15px 18px;
  }
  .page-news__faq-answer {
    padding: 0 18px 15px;
  }

  /* Force responsive for images, videos, buttons */
  .page-news img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-news__news-card, .page-news__benefit-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    margin-left: auto;
    margin-right: auto;
  }
  .page-news__cta-button, .page-news__view-all-button,
  .page-news a[class*="button"], .page-news a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin-left: auto;
    margin-right: auto;
  }
  .page-news__cta-buttons, .page-news__button-group, .page-news__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .page-news__main-title {
    font-size: clamp(1.3em, 8vw, 2em);
  }
  .page-news__description {
    font-size: clamp(0.8em, 3.5vw, 1em);
  }
  .page-news__cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-news__cta-button--large {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-news__card-image {
    height: 160px;
  }
  .page-news__card-title {
    font-size: 1.05em;
  }
  .page-news__faq-question {
    font-size: 0.95em;
  }
}