.page-news {
  background-color: var(--page-bg, #08160F);
  color: var(--text-main, #F2FFF6);
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.page-news__section-padding {
  padding: 60px 20px;
}

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

.page-news__section-title {
  font-size: 2.5rem;
  color: var(--text-main, #F2FFF6);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.2;
}

.page-news__text-block {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--text-secondary, #A7D9B8);
}

.page-news__link {
  color: var(--gold-color, #F2C14E);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-news__link:hover {
  color: var(--glow-color, #57E38D);
  text-decoration: underline;
}

/* Hero Section */
.page-news__hero-section {
  position: relative;
  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: 60px;
}

.page-news__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-news__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
  display: block;
}

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

.page-news__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--text-main, #F2FFF6);
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-news__hero-description {
  font-size: 1.2rem;
  color: var(--text-secondary, #A7D9B8);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

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

/* Featured News Section */
.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: var(--card-bg, #11271B);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color, #2E7A4E);
  display: flex;
  flex-direction: column;
}

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

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

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

.page-news__news-card-title {
  font-size: 1.4rem;
  margin-bottom: 10px;
  line-height: 1.3;
}

.page-news__news-card-title a {
  color: var(--text-main, #F2FFF6);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-news__news-card-title a:hover {
  color: var(--gold-color, #F2C14E);
}

.page-news__news-card-date {
  font-size: 0.9rem;
  color: var(--text-secondary, #A7D9B8);
  margin-bottom: 15px;
}

.page-news__news-card-description {
  font-size: 1rem;
  color: var(--text-secondary, #A7D9B8);
  margin-bottom: 20px;
  flex-grow: 1;
}

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

/* Latest Updates Section */
.page-news__latest-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-news__latest-item {
  display: flex;
  align-items: center;
  background-color: var(--card-bg, #11271B);
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 20px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--divider-color, #1E3A2A);
  transition: transform 0.3s ease;
}

.page-news__latest-item:hover {
  transform: translateY(-3px);
}

.page-news__latest-image {
  width: 150px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
  margin-right: 20px;
  flex-shrink: 0;
}

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

.page-news__latest-title {
  font-size: 1.25rem;
  margin-bottom: 5px;
  line-height: 1.3;
}

.page-news__latest-title a {
  color: var(--text-main, #F2FFF6);
  text-decoration: none;
}

.page-news__latest-title a:hover {
  color: var(--gold-color, #F2C14E);
}

.page-news__latest-date {
  font-size: 0.85rem;
  color: var(--text-secondary, #A7D9B8);
  margin-bottom: 10px;
}

.page-news__latest-description {
  font-size: 0.95rem;
  color: var(--text-secondary, #A7D9B8);
}

/* Special Topics Section */
.page-news__topic-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-news__topic-list li {
  background-color: var(--deep-green-color, #0A4B2C);
  margin-bottom: 15px;
  padding: 15px 20px;
  border-radius: 8px;
  border-left: 5px solid var(--gold-color, #F2C14E);
  transition: background-color 0.3s ease;
}

.page-news__topic-list li:hover {
  background-color: var(--border-color, #2E7A4E);
}

.page-news__topic-list li a {
  font-size: 1.1rem;
  color: var(--text-main, #F2FFF6);
  text-decoration: none;
  display: block;
}

.page-news__topic-list li a:hover {
  color: var(--glow-color, #57E38D);
}

/* CTA Section */
.page-news__cta-section {
  background-color: var(--card-bg, #11271B);
  text-align: center;
  padding: 80px 20px;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--divider-color, #1E3A2A);
  border-bottom: 1px solid var(--divider-color, #1E3A2A);
}

.page-news__cta-content {
  position: relative;
  z-index: 1;
}

.page-news__cta-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.3);
  z-index: 0;
  display: block;
}

.page-news__cta-title {
  color: var(--text-main, #F2FFF6);
  margin-bottom: 20px;
  font-size: 2.2rem;
  position: relative;
}

.page-news__cta-description {
  color: var(--text-secondary, #A7D9B8);
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.page-news__cta-button {
  position: relative;
  margin-top: 20px;
}

/* FAQ Section */
.page-news__faq-list {
  margin-top: 40px;
}

.page-news__faq-item {
  background-color: var(--card-bg, #11271B);
  border: 1px solid var(--divider-color, #1E3A2A);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--text-main, #F2FFF6);
}

.page-news__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  background-color: var(--deep-green-color, #0A4B2C);
  color: var(--text-main, #F2FFF6);
  transition: background-color 0.3s ease;
  list-style: none;
}

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

.page-news__faq-question:hover {
  background-color: var(--border-color, #2E7A4E);
}

.page-news__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: var(--gold-color, #F2C14E);
}

.page-news__faq-answer {
  padding: 0 25px 20px;
  font-size: 1rem;
  color: var(--text-secondary, #A7D9B8);
}

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

/* Conclusion Section */
.page-news__conclusion-section .page-news__section-title {
  margin-bottom: 30px;
}

.page-news__conclusion-section .page-news__text-block {
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-news__conclusion-section .page-news__btn-primary {
  margin-top: 30px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-news__section-title {
    font-size: 2rem;
  }
  .page-news__main-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }
  .page-news__news-card-title {
    font-size: 1.25rem;
  }
  .page-news__latest-item {
    flex-direction: column;
    text-align: center;
  }
  .page-news__latest-image {
    margin-right: 0;
    margin-bottom: 15px;
    width: 100%;
    height: auto;
  }
  .page-news__faq-question {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .page-news__section-padding {
    padding: 40px 10px;
  }
  .page-news__container {
    padding: 0 10px;
  }
  .page-news__section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  .page-news__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }
  .page-news__hero-description {
    font-size: 1rem;
  }
  .page-news__text-block {
    font-size: 1rem;
  }
  .page-news__news-grid {
    grid-template-columns: 1fr;
  }
  .page-news__news-card-image {
    height: 180px;
  }
  .page-news__news-card-content {
    padding: 20px;
  }
  .page-news__latest-item {
    padding: 15px;
  }
  .page-news__latest-image {
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
  }
  .page-news__cta-section {
    padding: 60px 10px;
  }
  .page-news__cta-title {
    font-size: 1.8rem;
  }
  .page-news__cta-description {
    font-size: 1rem;
  }
  .page-news__btn-primary {
    padding: 12px 25px;
    font-size: 1rem;
    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 {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-news__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }
  .page-news__faq-answer {
    padding: 0 20px 15px;
  }
  .page-news__hero-section .page-news__hero-image,
  .page-news__introduction-section img,
  .page-news__featured-news-section img,
  .page-news__latest-updates-section img,
  .page-news__special-topics-section img,
  .page-news__cta-section img,
  .page-news__faq-section img,
  .page-news__conclusion-section img,
  .page-news__hero-image,
  .page-news__news-card-image,
  .page-news__latest-image,
  .page-news__cta-image {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-news__hero-section,
  .page-news__introduction-section,
  .page-news__featured-news-section,
  .page-news__latest-updates-section,
  .page-news__special-topics-section,
  .page-news__cta-section,
  .page-news__faq-section,
  .page-news__conclusion-section,
  .page-news__container,
  .page-news__news-card,
  .page-news__latest-item,
  .page-news__topic-list li,
  .page-news__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 10px;
    padding-right: 10px;
  }
  .page-news__hero-section {
    padding-left: 0;
    padding-right: 0;
  }
  .page-news__hero-content {
    padding: 15px;
  }
  .page-news__view-all-btn-wrapper {
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media (max-width: 480px) {
  .page-news__section-title {
    font-size: 1.5rem;
  }
  .page-news__main-title {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }
  .page-news__news-card-title {
    font-size: 1.1rem;
  }
  .page-news__latest-item {
    padding: 10px;
  }
  .page-news__latest-title {
    font-size: 1.1rem;
  }
  .page-news__cta-title {
    font-size: 1.5rem;
  }
  .page-news__faq-question {
    font-size: 0.95rem;
  }
}