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

.page-news__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding */
  background-color: #08160F;
}

.page-news__hero-image-wrapper {
  width: 100%;
  overflow: hidden;
}

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

.page-news__hero-content {
  max-width: 900px;
  text-align: center;
  padding: 40px 20px;
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  margin-top: -80px; /* Overlap with hero image slightly */
  position: relative;
  z-index: 10;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  border: 1px solid #2E7A4E; /* Border */
}

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

.page-news__subtitle {
  font-size: clamp(1em, 1.5vw, 1.2em);
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

.page-news__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-news__cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

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

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

.page-news__cta-button--small {
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-news__section {
  padding: 60px 0;
  background-color: #08160F; /* Background */
}

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

.page-news__section-title {
  font-size: clamp(1.8em, 3vw, 2.8em);
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-news__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #2AD16F 0%, #13994A 100%);
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-news__text-block {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  text-align: justify;
  margin-bottom: 20px;
}

.page-news__video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
  height: 0;
  overflow: hidden;
  margin: 40px auto;
  max-width: 1000px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  border: 1px solid #2E7A4E; /* Border */
}

.page-news__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}

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

.page-news__card {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #2E7A4E; /* Border */
}

.page-news__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-news__card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid #1E3A2A; /* Divider */
}

.page-news__card-title {
  font-size: 1.5em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
}

.page-news__card-text {
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
}

.page-news__news-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-news__news-item {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  padding: 25px 30px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  border-left: 5px solid #2AD16F;
  transition: background-color 0.3s ease;
}

.page-news__news-item:hover {
  background-color: #1E3A2A; /* Deep Green */
}

.page-news__news-item-title {
  font-size: 1.4em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 10px;
}

.page-news__news-item-text {
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 15px;
}

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

.page-news__read-more-link:hover {
  color: #57E38D; /* Glow */
  text-decoration: underline;
}

.page-news__button-group {
  text-align: center;
  margin-top: 40px;
}

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

.page-news__step-card {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  border: 1px solid #2E7A4E; /* Border */
}

.page-news__step-image {
  width: 100%;
  height: 180px; /* Fixed height */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid #1E3A2A; /* Divider */
}

.page-news__step-title {
  font-size: 1.4em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 10px;
}

.page-news__step-text {
  font-size: 0.95em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
}

.page-news__benefits-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-news__benefits-item {
  display: flex;
  align-items: flex-start;
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid #1E3A2A; /* Divider */
}

.page-news__benefits-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  min-height: 60px;
  object-fit: contain;
  margin-right: 20px;
  border-radius: 50%;
  padding: 5px;
  background-color: rgba(42, 209, 111, 0.1);
}

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

.page-news__benefits-title {
  font-size: 1.3em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 8px;
}

.page-news__benefits-text {
  font-size: 0.95em;
  color: #A7D9B8; /* Text Secondary */
}

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

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

.page-news__faq-item {
  background-color: #11271B; /* Card BG */
  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: 20px 25px;
  cursor: pointer;
  background-color: #1E3A2A; /* Divider */
  color: #F2FFF6; /* Text Main */
  font-weight: bold;
  font-size: 1.15em;
  list-style: none;
}

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

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

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

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

.page-news__faq-answer {
  padding: 15px 25px 20px;
  color: #A7D9B8; /* Text Secondary */
  font-size: 1em;
  border-top: 1px solid #2E7A4E; /* Border */
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-news__hero-content {
    margin-top: -60px;
    padding: 30px 15px;
  }

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

  .page-news__subtitle {
    font-size: 1.1em;
  }

  .page-news__section {
    padding: 40px 0;
  }

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

  .page-news__text-block {
    font-size: 1em;
  }

  .page-news__benefits-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .page-news__benefits-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

@media (max-width: 768px) {
  .page-news__hero-content {
    margin-top: -40px;
    padding: 20px 10px;
  }

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

  .page-news__subtitle {
    font-size: 0.95em;
  }

  .page-news__cta-button {
    padding: 12px 25px;
    font-size: 0.9em;
  }

  .page-news__section {
    padding: 30px 0;
  }

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

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

  .page-news__text-block {
    font-size: 0.9em;
  }

  .page-news__card-grid,
  .page-news__steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-news__card-image,
  .page-news__step-image {
    height: 160px;
  }

  .page-news__card-title,
  .page-news__step-title {
    font-size: 1.3em;
  }

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

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

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

  .page-news__benefits-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
  }

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

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

  .page-news__faq-toggle {
    font-size: 1.3em;
  }

  /* Mobile responsive for images, videos, and buttons */
  .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__hero-image-wrapper,
  .page-news__video-wrapper,
  .page-news__section,
  .page-news__card,
  .page-news__container,
  .page-news__news-item,
  .page-news__step-card,
  .page-news__benefits-item,
  .page-news__faq-item,
  .page-news__cta-button,
  .page-news__button-group {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Ensure no horizontal scroll */
  }

  .page-news__cta-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;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-news__button-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .page-news__video-section {
    padding-top: 10px !important;
  }
}