.page-news {
  line-height: 1.6;
  color: #333333; /* Default text color for light backgrounds */
}

.page-news__hero-banner {
  padding-top: 180px; /* Adjust for fixed header */
  padding-bottom: 80px;
  background: linear-gradient(135deg, #DAA520, #1E1E1E);
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-news__hero-title {
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-news__hero-description {
  font-size: 18px;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-news__cta-button {
  display: inline-block;
  padding: 15px 35px;
  background: #DAA520;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: none;
}

.page-news__cta-button:hover {
  background: #FFA500;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-news__articles-section {
  padding: 60px 0;
  background: #f8f9fa;
}

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

.page-news__section-title {
  font-size: 32px;
  font-weight: bold;
  color: #1E1E1E;
  text-align: center;
  margin-bottom: 40px;
}

.page-news__article-card {
  display: flex;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-news__article-image {
  width: 350px;
  height: 250px;
  object-fit: cover;
  flex-shrink: 0;
}

.page-news__article-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-news__article-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #1E1E1E;
}

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

.page-news__article-title a:hover {
  color: #DAA520;
  text-decoration: underline;
}

.page-news__article-meta {
  font-size: 14px;
  color: #666666;
  margin-bottom: 15px;
}

.page-news__article-excerpt {
  font-size: 16px;
  color: #333333;
  margin-bottom: 20px;
}

.page-news__article-excerpt a {
  color: #0066cc;
  text-decoration: none;
  font-weight: bold;
}

.page-news__article-excerpt a:hover {
  text-decoration: underline;
  color: #004499;
}

.page-news__read-more {
  display: inline-block;
  color: #DAA520;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-news__read-more:hover {
  color: #FFA500;
  text-decoration: underline;
}

.page-news__cta-section {
  background: #1E1E1E;
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.page-news__cta-content {
  max-width: 800px;
}

.page-news__cta-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-news__cta-description {
  font-size: 18px;
  margin-bottom: 40px;
  color: #f0f0f0;
}

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

.page-news__btn-primary,
.page-news__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-news__btn-primary {
  background: #DAA520;
  color: #ffffff;
  border: 2px solid transparent;
}

.page-news__btn-primary:hover {
  background: #FFA500;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.page-news__btn-secondary {
  background: #ffffff;
  color: #DAA520;
  border: 2px solid #DAA520;
}

.page-news__btn-secondary:hover {
  background: #f0f0f0;
  color: #FFA500;
  border-color: #FFA500;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.page-news__faq-section {
  padding: 60px 0;
  background: #f8f9fa;
}

.page-news__faq-list {
  margin-top: 40px;
}

.page-news__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
}

.page-news__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 15px;
  opacity: 0;
}

.page-news__faq-item.active .page-news__faq-answer {
  max-height: 2000px !important;
  padding: 20px 20px !important;
  opacity: 1;
  background: #f9f9f9;
  border-radius: 0 0 5px 5px;
}

.page-news__faq-answer p {
  color: #333333;
  font-size: 15px;
}

.page-news__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-news__faq-question:hover {
  background: #f5f5f5;
  border-color: #d0d0d0;
}

.page-news__faq-question:active {
  background: #eeeeee;
}

.page-news__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
  color: #1E1E1E;
  pointer-events: none;
}

.page-news__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #DAA520;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

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

@media (max-width: 1024px) {
  .page-news__hero-title {
    font-size: 36px;
  }
  .page-news__hero-description {
    font-size: 16px;
  }
  .page-news__section-title {
    font-size: 28px;
  }
  .page-news__article-card {
    flex-direction: column;
  }
  .page-news__article-image {
    width: 100%;
    height: 220px;
  }
  .page-news__article-title {
    font-size: 22px;
  }
  .page-news__cta-title {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .page-news__hero-banner {
    padding-top: 140px; /* Adjust for mobile fixed header */
    padding-bottom: 60px;
  }
  .page-news__hero-title {
    font-size: 28px;
  }
  .page-news__hero-description {
    font-size: 15px;
  }
  .page-news__cta-button {
    padding: 12px 25px;
    font-size: 16px;
  }
  .page-news__articles-section,
  .page-news__cta-section,
  .page-news__faq-section {
    padding: 40px 0;
  }
  .page-news__section-title {
    font-size: 24px;
    margin-bottom: 30px;
  }
  .page-news__article-image {
    height: 180px;
  }
  .page-news__article-content {
    padding: 20px;
  }
  .page-news__article-title {
    font-size: 20px;
  }
  .page-news__article-excerpt {
    font-size: 14px;
  }
  .page-news__cta-title {
    font-size: 26px;
  }
  .page-news__cta-description {
    font-size: 16px;
  }
  .page-news__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-news__btn-primary,
  .page-news__btn-secondary {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  .page-news__faq-question {
    padding: 15px;
    flex-wrap: wrap;
  }
  .page-news__faq-question h3 {
    font-size: 15px;
    margin-bottom: 0;
    width: calc(100% - 40px);
  }
  .page-news__faq-toggle {
    margin-left: 10px;
    width: 24px;
    height: 24px;
    font-size: 20px;
  }
  .page-news__faq-answer {
    padding: 0 15px;
  }
  .page-news__faq-item.active .page-news__faq-answer {
    padding: 15px 15px !important;
  }
}

@media (max-width: 480px) {
  .page-news__hero-title {
    font-size: 24px;
  }
  .page-news__hero-description {
    font-size: 14px;
  }
  .page-news__cta-button {
    padding: 10px 20px;
    font-size: 15px;
  }
  .page-news__section-title {
    font-size: 22px;
  }
  .page-news__article-title {
    font-size: 18px;
  }
  .page-news__cta-title {
    font-size: 24px;
  }
}