.page-news__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, main offset from body */
  background: linear-gradient(180deg, #0A4B2C 0%, #08160F 100%);
  color: #F2FFF6;
}

.page-news__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.page-news__hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-news__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.page-news__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-news__hero-title {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #F2FFF6;
}

.page-news__hero-description {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #A7D9B8;
}

.page-news__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border: none;
}

.page-news__cta-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-news__highlight {
  color: #57E38D;
}

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

.page-news__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #F2FFF6;
}

.page-news__section-description {
  font-size: 1rem;
  line-height: 1.6;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #A7D9B8;
}

.page-news__latest-section {
  padding: 60px 0;
  background-color: #08160F;
  color: #F2FFF6;
}

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

.page-news__article-card {
  background-color: #11271B;
  border-radius: 8px;
  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__article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-news__article-image-wrapper {
  width: 100%;
  height: 225px;
  overflow: hidden;
}

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

.page-news__article-content {
  padding: 20px;
}

.page-news__article-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.4;
}

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

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

.page-news__article-meta {
  font-size: 0.9rem;
  color: #A7D9B8;
  margin-bottom: 15px;
}

.page-news__article-excerpt {
  font-size: 1rem;
  line-height: 1.6;
  color: #A7D9B8;
  margin-bottom: 20px;
}

.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;
  text-decoration: underline;
}

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

.page-news__categories-section {
  padding: 60px 0;
  background-color: #0A4B2C;
  color: #F2FFF6;
}

.page-news__category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.page-news__category-card {
  background-color: #11271B;
  border-radius: 8px;
  padding: 25px;
  text-align: center;
  text-decoration: none;
  color: #F2FFF6;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, background-color 0.3s ease;
  border: 1px solid #2E7A4E;
}

.page-news__category-card:hover {
  transform: translateY(-5px);
  background-color: #1E3A2A;
}

.page-news__category-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #F2FFF6;
}

.page-news__category-desc {
  font-size: 0.95rem;
  color: #A7D9B8;
  line-height: 1.5;
}

.page-news__archive-section {
  padding: 60px 0;
  background-color: #08160F;
  color: #F2FFF6;
}

.page-news__archive-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-news__archive-item {
  background-color: #11271B;
  border-radius: 8px;
  padding: 20px 25px;
  border: 1px solid #2E7A4E;
  transition: background-color 0.3s ease;
}

.page-news__archive-item:hover {
  background-color: #1E3A2A;
}

.page-news__archive-item-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
}

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

.page-news__archive-item-title a:hover {
  color: #57E38D;
}

.page-news__archive-item-meta {
  font-size: 0.85rem;
  color: #A7D9B8;
  margin-bottom: 10px;
}

.page-news__archive-item-excerpt {
  font-size: 0.95rem;
  color: #A7D9B8;
  line-height: 1.5;
}

.page-news__cta-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, #13994A 0%, #0A4B2C 100%);
  text-align: center;
  color: #F2FFF6;
}

.page-news__cta-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 20px;
  color: #F2FFF6;
}

.page-news__cta-description {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #A7D9B8;
}

.page-news__cta-button--large {
  padding: 18px 50px;
  font-size: 20px;
}

.page-news__faq-section {
  padding: 60px 0;
  background-color: #08160F;
  color: #F2FFF6;
}

.page-news__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

details.page-news__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #2E7A4E;
  overflow: hidden;
  background: #11271B;
  color: #F2FFF6;
}

details.page-news__faq-item summary.page-news__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
}

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

details.page-news__faq-item summary.page-news__faq-question:hover {
  background: #1E3A2A;
}

.page-news__faq-qtext {
  flex: 1;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #F2FFF6;
}

.page-news__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: #57E38D;
  flex-shrink: 0;
  margin-left: 20px;
  width: 30px;
  text-align: center;
}

details.page-news__faq-item .page-news__faq-answer {
  padding: 0 25px 25px;
  background: #1E3A2A;
  border-radius: 0 0 8px 8px;
  color: #A7D9B8;
  font-size: 1rem;
  line-height: 1.6;
}

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

details.page-news__faq-item .page-news__faq-answer a {
  color: #57E38D;
  text-decoration: underline;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-news__hero-title {
    font-size: clamp(2rem, 4.5vw, 2.8rem);
  }
  .page-news__section-title {
    font-size: clamp(1.6rem, 3.8vw, 2.2rem);
  }
  .page-news__cta-title {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
  }
}

@media (max-width: 768px) {
  .page-news__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-news__hero-image img {
    border-radius: 4px;
  }
  .page-news__hero-description {
    font-size: 1rem;
  }
  .page-news__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-news__cta-button--large {
    padding: 15px 40px;
    font-size: 18px;
  }
  .page-news__container {
    padding: 30px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-news__section-title {
    font-size: 1.8rem;
  }
  .page-news__section-description {
    font-size: 0.9rem;
  }
  .page-news__articles-grid {
    grid-template-columns: 1fr;
  }
  .page-news__article-card {
    margin-bottom: 20px;
  }
  .page-news__article-image-wrapper {
    height: 200px;
  }
  .page-news__article-title {
    font-size: 1.15rem;
  }
  .page-news__article-excerpt {
    font-size: 0.9rem;
  }
  .page-news__category-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
  }
  .page-news__category-card {
    padding: 20px;
  }
  .page-news__category-title {
    font-size: 1.1rem;
  }
  .page-news__category-desc {
    font-size: 0.85rem;
  }
  .page-news__archive-item {
    padding: 18px 20px;
  }
  .page-news__archive-item-title {
    font-size: 1.1rem;
  }
  .page-news__archive-item-excerpt {
    font-size: 0.9rem;
  }
  .page-news__cta-section {
    padding: 60px 15px;
  }
  .page-news__cta-title {
    font-size: 2rem;
  }
  .page-news__cta-description {
    font-size: 1rem;
  }
  details.page-news__faq-item summary.page-news__faq-question {
    padding: 15px 20px;
  }
  .page-news__faq-qtext {
    font-size: 1rem;
  }
  .page-news__faq-toggle {
    font-size: 24px;
    width: 25px;
    margin-left: 15px;
  }
  details.page-news__faq-item .page-news__faq-answer {
    padding: 0 20px 20px;
    font-size: 0.95rem;
  }
  .page-news img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-news__section, .page-news__card, .page-news__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .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;
  }
  .page-news__cta-buttons {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .page-news__hero-title {
    font-size: 1.8rem;
  }
  .page-news__section-title {
    font-size: 1.6rem;
  }
  .page-news__cta-title {
    font-size: 1.8rem;
  }
  .page-news__category-grid {
    grid-template-columns: 1fr;
  }
  .page-news__article-image-wrapper {
    height: 180px;
  }
}