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

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

.page-news__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 60px 0;
  padding-top: 10px; /* Small top padding, body handles header offset */
  text-align: center;
  overflow: hidden;
  background-color: #08160F; /* Background */
}

.page-news__hero-image-wrapper {
  width: 100%;
  max-height: 500px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.page-news__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin-top: 30px;
}

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

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

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

.page-news__text-block {
  font-size: 1em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
}

.page-news__cta-button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05em;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
}

.page-news__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #F2FFF6; /* Text Main */
  border: none;
}

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

.page-news__btn-secondary {
  background: none;
  color: #F2C14E; /* Gold */
  border: 2px solid #F2C14E; /* Gold */
  margin-left: 15px;
}

.page-news__btn-secondary:hover {
  background-color: rgba(242, 193, 78, 0.1);
  transform: translateY(-2px);
}

.page-news__button-group {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.page-news__overview-section, .page-news__safety-section {
  padding: 60px 0;
  background-color: #08160F; /* Background */
}

.page-news__highlights-section {
  padding: 60px 0;
  background-color: #11271B; /* Card BG */
}

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

.page-news__card {
  background-color: #08160F; /* Background */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  border: 1px solid #2E7A4E; /* Border */
}

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

.page-news__card-content {
  padding: 20px;
  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.3;
}

.page-news__card-title a {
  color: #F2FFF6; /* Text Main */
  text-decoration: none;
}

.page-news__card-title a:hover {
  color: #57E38D; /* Glow */
  text-decoration: underline;
}

.page-news__card-text {
  font-size: 0.95em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 15px;
  flex-grow: 1;
}

.page-news__card-date {
  font-size: 0.85em;
  color: #2E7A4E; /* Border */
  text-align: right;
  margin-top: auto;
}

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

.page-news__guides-section {
  padding: 60px 0;
  background-color: #0A4B2C; /* Deep Green */
}

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

.page-news__guide-item {
  background-color: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  border: 1px solid #2E7A4E; /* Border */
}

.page-news__guide-title {
  font-size: 1.3em;
  font-weight: 600;
  margin-bottom: 15px;
}

.page-news__guide-title a {
  color: #F2FFF6; /* Text Main */
  text-decoration: none;
}

.page-news__guide-title a:hover {
  color: #57E38D; /* Glow */
  text-decoration: underline;
}

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

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

.page-news__info-item {
  background-color: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  border: 1px solid #2E7A4E; /* Border */
}

.page-news__info-icon {
  width: 150px;
  height: auto;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

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

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

.page-news__info-text a {
  color: #57E38D; /* Glow */
  text-decoration: none;
}

.page-news__info-text a:hover {
  text-decoration: underline;
}

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

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

.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-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.1em;
  color: #F2FFF6; /* Text Main */
  background-color: #11271B; /* Card BG */
  transition: background-color 0.3s ease;
}

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

.page-news__faq-item summary:hover {
  background-color: #1e3a2a; /* Divider - slightly darker for hover */
}

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

.page-news__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #57E38D; /* Glow */
}

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

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

.page-news__cta-section {
  padding: 60px 0;
  text-align: center;
  background-color: #08160F; /* Background */
}

.page-news__cta-section .page-news__description {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-news__dark-section {
  background-color: #0A4B2C; /* Deep Green */
  color: #F2FFF6; /* Text Main */
}

.page-news__dark-section .page-news__section-title,
.page-news__dark-section .page-news__text-block {
  color: #F2FFF6;
}

.page-news__dark-section .page-news__guide-item,
.page-news__dark-section .page-news__faq-item {
  background-color: #11271B;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-news__hero-section {
    padding: 40px 0;
    padding-top: 10px;
  }

  .page-news__main-title {
    font-size: clamp(2em, 5vw, 3em);
  }

  .page-news__section-title {
    font-size: clamp(1.6em, 4.5vw, 2.5em);
  }

  .page-news__card-image {
    height: 180px;
  }
}

@media (max-width: 768px) {
  .page-news__container {
    padding: 0 15px;
  }

  .page-news__hero-section {
    padding: 30px 0;
    padding-top: 10px !important;
  }

  .page-news__hero-content {
    margin-top: 20px;
  }

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

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

  .page-news__section-title {
    font-size: clamp(1.5em, 5.5vw, 2em);
    margin-bottom: 30px;
  }

  .page-news__cta-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
    margin-left: 0 !important; /* Remove margin for stacked buttons */
  }

  .page-news__btn-secondary {
    margin-top: 15px; /* Add space when stacked */
  }

  .page-news__button-group {
    flex-direction: column; /* Stack buttons vertically */
    gap: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 15px;
  }

  .page-news__cards-grid, .page-news__content-grid, .page-news__info-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

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

  .page-news__guide-title {
    font-size: 1.1em;
  }

  .page-news__info-icon {
    width: 120px;
  }

  .page-news__info-title {
    font-size: 1.3em;
  }

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

  .page-news__faq-answer {
    padding: 0 20px 15px;
  }

  /* Force responsive for all images and containers */
  .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,
  .page-news__button-group,
  .page-news__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-news__hero-section,
  .page-news__overview-section,
  .page-news__highlights-section,
  .page-news__guides-section,
  .page-news__safety-section,
  .page-news__faq-section,
  .page-news__cta-section {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}