.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;
}

.page-news__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 10px; /* Small top padding for visual spacing */
}

.page-news__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  /* Ensure image is not directly covered by text */
}

.page-news__hero-content {
  text-align: center;
  padding: 40px 20px;
  background-color: rgba(17, 39, 27, 0.8); /* Card BG with transparency */
  margin-top: 20px;
  border-radius: 8px;
  max-width: 800px;
  box-sizing: border-box;
}

.page-news__hero-title {
  font-size: 2.5em;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  line-height: 1.2;
}

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

.page-news__hero-button {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #F2FFF6;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.page-news__hero-button:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

.page-news__latest-news-section,
.page-news__featured-articles-section,
.page-news__guides-tips-section,
.page-news__promotions-events-section,
.page-news__faq-section {
  padding: 60px 0;
  background-color: #08160F; /* Background */
}

.page-news__section-title {
  font-size: 2em;
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.page-news__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #11A84E; /* Main Color */
  border-radius: 2px;
}

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

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

.page-news__news-card,
.page-news__tip-card {
  background-color: #11271B; /* Card BG */
  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;
  display: flex;
  flex-direction: column;
}

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

.page-news__card-image,
.page-news__tip-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-news__card-content,
.page-news__tip-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-news__card-title,
.page-news__tip-title {
  font-size: 1.3em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 10px;
  font-weight: bold;
}

.page-news__card-title a,
.page-news__tip-title a {
  color: inherit;
  text-decoration: none;
}

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

.page-news__card-date,
.page-news__tip-date {
  font-size: 0.9em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 10px;
}

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

.page-news__card-link,
.page-news__tip-link {
  display: inline-block;
  color: #2AD16F; /* Button Text on secondary */
  text-decoration: none;
  font-weight: bold;
  margin-top: auto;
}

.page-news__card-link:hover,
.page-news__tip-link:hover {
  text-decoration: underline;
}

.page-news__articles-list,
.page-news__promo-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

.page-news__article-item,
.page-news__promo-item {
  background-color: #11271B; /* Card BG */
  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;
  display: flex;
  flex-direction: row;
}

.page-news__article-item:hover,
.page-news__promo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-news__article-image,
.page-news__promo-image {
  width: 30%; /* Adjust as needed for layout */
  height: auto;
  object-fit: cover;
  display: block;
}

.page-news__article-content,
.page-news__promo-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-news__article-title,
.page-news__promo-title {
  font-size: 1.4em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 10px;
  font-weight: bold;
}

.page-news__article-title a,
.page-news__promo-title a {
  color: inherit;
  text-decoration: none;
}

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

.page-news__article-date,
.page-news__promo-date {
  font-size: 0.9em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 10px;
}

.page-news__article-excerpt,
.page-news__promo-excerpt {
  font-size: 1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 15px;
  flex-grow: 1;
}

.page-news__article-link,
.page-news__promo-link {
  display: inline-block;
  color: #2AD16F; /* Button Text on secondary */
  text-decoration: none;
  font-weight: bold;
  margin-top: auto;
}

.page-news__article-link:hover,
.page-news__promo-link:hover {
  text-decoration: underline;
}

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

.page-news__button {
  display: inline-block;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s ease, border-color 0.3s ease;
  margin: 0 10px;
}

.page-news__button--primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #F2FFF6;
  border: 2px solid transparent;
}

.page-news__button--primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

.page-news__button--secondary {
  background-color: transparent;
  color: #11A84E; /* Main Color */
  border: 2px solid #11A84E; /* Border */
}

.page-news__button--secondary:hover {
  background-color: #11A84E; /* Main Color */
  color: #F2FFF6;
}

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

.page-news__faq-item {
  background-color: #11271B; /* Card BG */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #F2FFF6; /* Text Main */
}

.page-news__faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px;
  font-weight: bold;
  font-size: 1.1em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #F2FFF6; /* Text Main */
  position: relative;
}

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

.page-news__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

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

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

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

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

.page-news__faq-answer a {
  color: #2AD16F;
  text-decoration: underline;
}

.page-news__cta-section {
  background-color: #11A84E; /* Main Color */
  padding: 80px 0;
  text-align: center;
  color: #F2FFF6; /* Text Main */
}

.page-news__section-title--light {
  color: #F2FFF6;
}

.page-news__cta-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 20px auto 40px auto;
  color: #F2FFF6;
}

.page-news__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-news__hero-title {
    font-size: 2em;
  }
  .page-news__section-title {
    font-size: 1.8em;
  }
  .page-news__article-item,
  .page-news__promo-item {
    flex-direction: column;
  }
  .page-news__article-image,
  .page-news__promo-image {
    width: 100%;
    height: 250px;
  }
}

@media (max-width: 768px) {
  .page-news {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-news__hero-content {
    margin-top: 10px;
    padding: 30px 15px;
  }
  .page-news__hero-title {
    font-size: 1.8em;
  }
  .page-news__hero-description {
    font-size: 1em;
  }
  .page-news__hero-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-news__latest-news-section,
  .page-news__featured-articles-section,
  .page-news__guides-tips-section,
  .page-news__promotions-events-section,
  .page-news__faq-section,
  .page-news__cta-section {
    padding: 40px 0;
  }
  .page-news__section-title {
    font-size: 1.6em;
    margin-bottom: 15px;
  }
  .page-news__section-description {
    font-size: 1em;
    margin-bottom: 30px;
    padding: 0 15px;
  }
  .page-news__news-grid,
  .page-news__tips-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
  }
  .page-news__articles-list,
  .page-news__promo-list {
    padding: 0 15px;
  }
  .page-news__news-card,
  .page-news__tip-card,
  .page-news__article-item,
  .page-news__promo-item {
    margin: 0 auto;
  }
  .page-news__article-image,
  .page-news__promo-image {
    height: 180px;
  }
  .page-news__card-image,
  .page-news__tip-image {
    height: 180px;
  }
  .page-news__card-title,
  .page-news__tip-title,
  .page-news__article-title,
  .page-news__promo-title {
    font-size: 1.1em;
  }
  .page-news__faq-list {
    padding: 0 15px;
  }
  .page-news__faq-item summary {
    font-size: 1em;
    padding: 15px;
  }
  .page-news__faq-answer {
    padding: 0 15px 15px 15px;
  }
  .page-news__cta-description {
    font-size: 1em;
    padding: 0 15px;
  }
  .page-news__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }
  .page-news__button {
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    margin: 0;
  }
  /* Mobile responsive for images */
  .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__news-card,
  .page-news__tip-card,
  .page-news__article-item,
  .page-news__promo-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
  }
  .page-news__hero-section {
    padding-top: 10px !important;
  }
}