.page-news {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

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

.page-news-hero {
  background: linear-gradient(135deg, #FFD700, #8B0000);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.page-news-hero-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-news-hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  font-weight: bold;
}

.page-news-hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-news-hero-button {
  display: inline-block;
  padding: 15px 40px;
  background-color: #FFD700; /* Primary color */
  color: #8B0000; /* Dark red text for contrast */
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-news-hero-button:hover {
  background-color: #e0b800; /* Slightly darker gold */
  color: #5a0000; /* Darker red */
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-news-section-title {
  font-size: 2.5em;
  color: #8B0000; /* Auxiliary color */
  text-align: center;
  margin-bottom: 20px;
  padding-top: 40px;
  font-weight: bold;
}

.page-news-section-description {
  font-size: 1.1em;
  color: #555;
  text-align: center;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-news-featured, .page-news-latest, .page-news-categories, .page-news-faq {
  padding: 60px 0;
}

.page-news-featured {
  background-color: #fff;
}

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

.page-news-article-card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-news-article-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-news-article-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

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

.page-news-article-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-news-article-title a {
  color: #8B0000; /* Auxiliary color for links */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-news-article-title a:hover {
  color: #FFD700; /* Primary color on hover */
}

.page-news-article-summary {
  font-size: 0.95em;
  color: #666;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-news-article-date {
  font-size: 0.85em;
  color: #999;
  display: block;
  margin-top: auto;
}

.page-news-category-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.page-news-category-list li a {
  display: block;
  padding: 12px 25px;
  background-color: #FFD700; /* Primary color */
  color: #8B0000; /* Auxiliary color for text */
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.page-news-category-list li a:hover {
  background-color: #8B0000; /* Auxiliary color */
  color: #FFD700; /* Primary color for text */
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-news-latest {
  background-color: #f0f0f0;
}

.page-news-article-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

.page-news-list-item {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-news-list-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-news-list-image {
  width: 200px;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  margin-right: 25px;
  flex-shrink: 0;
}

.page-news-list-content {
  flex-grow: 1;
}

.page-news-list-title {
  font-size: 1.4em;
  margin-bottom: 10px;
  line-height: 1.3;
}

.page-news-list-title a {
  color: #8B0000; /* Auxiliary color */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-news-list-title a:hover {
  color: #FFD700; /* Primary color on hover */
}

.page-news-list-summary {
  font-size: 0.9em;
  color: #666;
  margin-bottom: 10px;
}

.page-news-list-date {
  font-size: 0.8em;
  color: #999;
}

.page-news-pagination {
  text-align: center;
  margin-top: 50px;
}

.page-news-pagination-link {
  display: inline-block;
  padding: 10px 18px;
  margin: 0 5px;
  background-color: #ddd;
  color: #333;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-news-pagination-link:hover:not(.page-news-pagination-active) {
  background-color: #FFD700; /* Primary color */
  color: #8B0000; /* Auxiliary color */
}

.page-news-pagination-active {
  background-color: #8B0000; /* Auxiliary color */
  color: #fff;
  font-weight: bold;
}

/* FAQ Styles */
.page-news-faq-items {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background-color: #fff;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #fdfdfd;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: #f5f5f5;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: #333;
}

.faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #8B0000; /* Auxiliary color */
  transition: transform 0.3s ease;
  line-height: 1;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: #FFD700; /* Primary color */
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #f9f9f9;
  color: #555;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* Adjust as needed for content */
  padding: 20px 25px;
  border-top: 1px solid #eee;
}

.faq-answer p {
  margin: 0;
  font-size: 1em;
  line-height: 1.7;
}

/* Floating buttons */
.page-news-floating-buttons {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
}

.page-news-float-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 50px;
  background-color: #FFD700; /* Primary color */
  color: #8B0000; /* Auxiliary color for text */
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  font-size: 1.1em;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.page-news-float-btn:hover {
  background-color: #8B0000; /* Auxiliary color */
  color: #FFD700; /* Primary color for text */
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-news-hero-title {
    font-size: 2.8em;
  }
  .page-news-section-title {
    font-size: 2em;
  }
  .page-news-article-image {
    height: 200px;
  }
  .page-news-list-item {
    flex-direction: column;
    align-items: flex-start;
  }
  .page-news-list-image {
    width: 100%;
    height: 200px;
    margin-right: 0;
    margin-bottom: 15px;
  }
}

@media (max-width: 768px) {
  .page-news-hero {
    padding: 60px 0;
  }
  .page-news-hero-title {
    font-size: 2.2em;
  }
  .page-news-hero-description {
    font-size: 1em;
  }
  .page-news-hero-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-news-section-title {
    font-size: 1.8em;
    padding-top: 30px;
  }
  .page-news-section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .page-news-articles-grid {
    grid-template-columns: 1fr;
  }
  .page-news-article-card {
    margin-bottom: 20px;
  }
  .page-news-article-image {
    height: 180px;
  }
  .page-news-article-title {
    font-size: 1.3em;
  }
  .page-news-list-item {
    padding: 15px;
  }
  .page-news-list-image {
    height: 150px;
  }
  .page-news-list-title {
    font-size: 1.2em;
  }
  .page-news-category-list {
    flex-direction: column;
    align-items: center;
  }
  .page-news-floating-buttons {
    bottom: 20px;
    right: 20px;
    gap: 10px;
  }
  .page-news-float-btn {
    width: 100px;
    height: 45px;
    font-size: 1em;
  }
  .faq-question {
    padding: 15px 20px;
  }
  .faq-question h3 {
    font-size: 1.1em;
  }
  .faq-answer {
    padding: 0 20px;
  }
  .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-news-hero-title {
    font-size: 1.8em;
  }
  .page-news-section-title {
    font-size: 1.5em;
  }
  .page-news-list-item {
    padding: 10px;
  }
  .page-news-list-image {
    height: 120px;
    margin-bottom: 10px;
  }
  .page-news-list-title {
    font-size: 1.1em;
  }
  .page-news-article-title {
    font-size: 1.1em;
  }
  .page-news-category-list li a {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-news-pagination-link {
    padding: 8px 14px;
  }
  .faq-question h3 {
    font-size: 1em;
  }
  .faq-toggle {
    font-size: 20px;
  }
}