.page-news__hero-section {
  background-color: #000080; /* Dark blue background */
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  padding-top: var(--header-offset, 120px);
}

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

.page-news__main-title {
  font-size: 3.2em;
  font-weight: 700;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main title */
  line-height: 1.2;
}

.page-news__intro-description {
  font-size: 1.2em;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-news__btn-primary,
.page-news__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1em;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-news__btn-primary {
  background-color: #FFD700; /* Gold button */
  color: #000080; /* Dark blue text */
  border: 2px solid #FFD700;
}

.page-news__btn-primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
}

.page-news__btn-secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
}

.page-news__btn-secondary:hover {
  background-color: #FFD700;
  color: #000080;
}

.page-news__latest-articles,
.page-news__in-depth-analysis,
.page-news__promotions-events,
.page-news__faq-section,
.page-news__cta-bottom {
  padding: 60px 0;
}

.page-news__light-bg {
  background-color: #f8f8f8; /* Light background for contrast */
  color: #333333;
}

.page-news__dark-bg {
  background-color: #1a1a1a; /* Dark background from body */
  color: #ffffff;
}

.page-news__section-title {
  font-size: 2.5em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #FFD700;
}

.page-news__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

.page-news__latest-articles .page-news__section-title,
.page-news__latest-articles .page-news__section-description {
  color: #000080;
}

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

.page-news__article-card,
.page-news__analysis-item,
.page-news__event-card {
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  color: #333333;
  display: flex;
  flex-direction: column;
}

.page-news__article-card:hover,
.page-news__analysis-item:hover,
.page-news__event-card:hover {
  transform: translateY(-10px);
}

.page-news__article-image,
.page-news__analysis-image,
.page-news__event-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-news__article-content,
.page-news__analysis-title,
.page-news__analysis-text,
.page-news__event-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-news__article-title,
.page-news__analysis-title,
.page-news__event-title {
  font-size: 1.5em;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.4;
}

.page-news__article-title a,
.page-news__analysis-title a,
.page-news__event-title a {
  color: #000080; /* Dark blue for link titles */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-news__article-title a:hover,
.page-news__analysis-title a:hover,
.page-news__event-title a:hover {
  color: #FFD700; /* Gold on hover */
}

.page-news__article-excerpt,
.page-news__analysis-text,
.page-news__event-text {
  font-size: 1em;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-news__read-more {
  display: inline-block;
  margin-top: auto; /* Push to bottom */
  color: #FFD700; /* Gold link */
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

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

.page-news__in-depth-analysis .page-news__analysis-item {
  background-color: #1a1a1a; /* Dark card background */
  color: #ffffff;
}

.page-news__in-depth-analysis .page-news__analysis-title a {
  color: #FFD700; /* Gold for link titles on dark background */
}

.page-news__in-depth-analysis .page-news__analysis-title a:hover {
  color: #ffffff;
}

.page-news__in-depth-analysis .page-news__read-more {
  color: #ffffff;
}

.page-news__in-depth-analysis .page-news__read-more:hover {
  color: #FFD700;
}

.page-news__promotions-events .page-news__event-card {
  background-color: #ffffff;
  color: #333333;
}

.page-news__promotions-events .page-news__event-title a {
  color: #000080;
}

.page-news__promotions-events .page-news__event-title a:hover {
  color: #FFD700;
}

.page-news__promotions-events .page-news__read-more {
  color: #FFD700;
}

.page-news__promotions-events .page-news__read-more:hover {
  color: #000080;
}

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

.page-news__faq-item {
  background-color: #000080; /* Dark blue FAQ item */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-news__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: 600;
  color: #FFD700; /* Gold text for question */
  background-color: #000080;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-news__faq-question:hover {
  background-color: #000066; /* Slightly lighter dark blue on hover */
}

.page-news__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-news__faq-item.active .page-news__faq-toggle {
  transform: rotate(45deg);
}

.page-news__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #ffffff; /* White text for answer */
  background-color: #000080;
}

.page-news__faq-item.active .page-news__faq-answer {
  max-height: 1000px !important; /* Sufficiently large to show content */
  padding: 15px 25px;
}

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

.page-news__cta-bottom {
  text-align: center;
  background-color: #f8f8f8;
  color: #000080;
}

.page-news__cta-title {
  font-size: 2.5em;
  font-weight: 700;
  margin-bottom: 20px;
  color: #000080;
}

.page-news__cta-text {
  font-size: 1.2em;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-news__main-title {
    font-size: 2.8em;
  }
  .page-news__section-title,
  .page-news__cta-title {
    font-size: 2em;
  }
  .page-news__article-image,
  .page-news__analysis-image,
  .page-news__event-image {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .page-news__hero-section {
    padding: 60px 15px;
    padding-top: var(--header-offset, 120px) !important;
  }
  .page-news__main-title {
    font-size: 2em;
  }
  .page-news__intro-description {
    font-size: 1em;
  }
  .page-news__cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-news__btn-primary,
  .page-news__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-news__section-title,
  .page-news__cta-title {
    font-size: 1.8em;
  }
  .page-news__section-description,
  .page-news__cta-text {
    font-size: 0.95em;
  }

  .page-news__latest-articles,
  .page-news__in-depth-analysis,
  .page-news__promotions-events,
  .page-news__faq-section,
  .page-news__cta-bottom {
    padding: 40px 0;
  }

  .page-news__container {
    padding: 0 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-news img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-news__article-card,
  .page-news__analysis-item,
  .page-news__event-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-news__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-news__faq-answer {
    padding: 0 20px;
  }
  .page-news__faq-item.active .page-news__faq-answer {
    padding: 15px 20px;
  }
}