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

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

.page-news__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 60px; /* Space below content */
  padding-top: 10px; /* Small top padding as per requirement */
  overflow: hidden; /* Ensure no overflow from image */
  background-color: #08160F; /* Match body background for this section */
}

.page-news__hero-image-wrapper {
  width: 100%;
  max-height: 500px; /* Limit height of hero image */
  overflow: hidden;
  margin-bottom: 30px; /* Space between image and content */
}

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

.page-news__hero-content {
  position: relative;
  z-index: 1;
  padding: 0 20px;
  max-width: 800px;
}

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

.page-news__description {
  font-size: 1.1rem;
  color: #A7D9B8; /* Secondary text color */
  margin-bottom: 30px;
}

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

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

.page-news__cta-button--secondary {
  background: #11271B; /* Card BG as secondary button background */
  border: 1px solid #2E7A4E; /* Custom border color */
  color: #F2FFF6;
  margin-right: 15px;
}

.page-news__cta-button--secondary:hover {
  background-color: #1E3A2A; /* Deeper green on hover */
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(30, 58, 42, 0.4);
}

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

.page-news__section-title--light {
  color: #F2FFF6; /* Ensure light text on dark background */
}

.page-news__section-description {
  font-size: 1.05rem;
  color: #A7D9B8; /* Secondary text color */
  text-align: center;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Latest News Section */
.page-news__latest-news-section {
  padding: 60px 0;
  background-color: #08160F; /* Match body background */
}

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

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

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

.page-news__card-image-wrapper {
  width: 100%;
  height: 225px; /* Fixed height for consistent card images */
  overflow: hidden;
}

.page-news__card-image {
  width: 100%;
  height: 100%;
  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.3rem;
  color: #F2FFF6; /* Main text color */
  margin-bottom: 10px;
  line-height: 1.3;
}

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

.page-news__card-title a:hover {
  color: #2AD16F; /* Highlight on hover */
}

.page-news__card-meta {
  font-size: 0.9rem;
  color: #A7D9B8; /* Secondary text color */
  margin-bottom: 15px;
}

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

.page-news__read-more {
  display: inline-block;
  color: #57E38D; /* Glow color for links */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
  margin-top: auto; /* Push to bottom */
}

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

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

.page-news__view-all-button {
  display: inline-block;
  background: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Custom border color */
  color: #F2FFF6;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.page-news__view-all-button:hover {
  background-color: #1E3A2A;
  border-color: #57E38D;
}

/* Industry Insights Section */
.page-news__industry-insights-section {
  padding: 60px 0;
  background-color: #0A4B2C; /* Deep Green */
}

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

.page-news__insight-item {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  padding-bottom: 20px;
}

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

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

.page-news__insight-text {
  font-size: 1rem;
  color: #A7D9B8; /* Secondary text color */
  padding: 0 20px;
}

/* Promotions CTA Section */
.page-news__promotions-cta-section {
  background-color: #11A84E; /* Main color */
  padding: 60px 20px;
  text-align: center;
}

.page-news__promotions-cta-section .page-news__cta-button {
  margin-top: 30px;
}

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

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

.page-news__faq-item {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-news__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.15rem;
  font-weight: bold;
  color: #F2FFF6; /* Main text color */
  cursor: pointer;
  background-color: #11271B; /* Card BG */
  border-bottom: 1px solid #1E3A2A; /* Divider color */
  list-style: none; /* For details/summary */
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
  -moz-user-select: none; /* Old versions of Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
}

.page-news__faq-item[open] .page-news__faq-question {
  border-bottom: 1px solid #2E7A4E; /* Border when open */
}

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

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

.page-news__faq-toggle {
  font-size: 1.5rem;
  margin-left: 15px;
  transition: transform 0.3s ease;
  color: #57E38D; /* Glow color */
}

.page-news__faq-item[open] .page-news__faq-toggle {
  transform: rotate(45deg); /* Rotate plus to cross */
  content: '−'; /* Change to minus sign */
}

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

/* Contact CTA Section */
.page-news__contact-cta-section {
  background-color: #0A4B2C; /* Deep Green */
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 40px;
}

.page-news__contact-cta-section .page-news__cta-button {
  margin-top: 30px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-news__hero-image-wrapper {
    max-height: 400px;
  }
}

@media (max-width: 768px) {
  .page-news__hero-section {
    padding-bottom: 40px;
  }

  .page-news__hero-image-wrapper {
    max-height: 300px;
  }

  .page-news__main-title {
    font-size: clamp(1.8rem, 6vw, 2.8rem);
  }

  .page-news__description {
    font-size: 1rem;
  }

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

  .page-news__section-description {
    font-size: 0.95rem;
  }

  .page-news__news-grid,
  .page-news__insights-grid {
    grid-template-columns: 1fr;
  }

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

  .page-news__card-excerpt {
    font-size: 0.95rem;
  }

  .page-news__faq-question {
    font-size: 1.05rem;
    padding: 18px 20px;
  }

  .page-news__faq-answer {
    padding: 0 20px 18px 20px;
    font-size: 0.95rem;
  }

  .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__promotions-cta-section .page-news__cta-button,
  .page-news__contact-cta-section .page-news__cta-button {
    margin-bottom: 15px; /* Add space between stacked buttons */
  }

  .page-news__cta-button--secondary {
    margin-right: 0; /* Remove right margin for stacked buttons */
  }

  /* 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 {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Ensure no horizontal overflow */
  }

  .page-news__hero-section {
    padding-top: 10px !important; /* body already handles header offset */
  }
}

@media (max-width: 480px) {
  .page-news__main-title {
    font-size: clamp(1.6rem, 8vw, 2.2rem);
  }

  .page-news__section-title {
    font-size: 1.8rem;
  }

  .page-news__cta-button {
    font-size: 1rem;
    padding: 12px 20px;
  }
}