.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-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  color: #ffffff;
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #FF4500, #007BFF);
}

.page-news .hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-news .hero-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  margin-bottom: 30px;
}

.page-news .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

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

.page-news .hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #eee;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-news .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #FF4500; /* Main brand color */
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: 2px solid #FF4500;
}

.page-news .cta-button:hover {
  background: #E63900; /* Darker shade for hover */
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-news .cta-button.large {
  padding: 18px 50px;
  font-size: 1.3em;
}

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

.page-news .news-feed {
  padding: 60px 0;
  background-color: #ffffff;
}

.page-news .news-categories {
  text-align: center;
  margin-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.page-news .category-button {
  display: inline-block;
  padding: 10px 25px;
  border: 1px solid #007BFF;
  border-radius: 25px;
  color: #007BFF;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  background-color: #fff;
}

.page-news .category-button:hover,
.page-news .category-button.active {
  background-color: #007BFF;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 123, 255, 0.4);
}

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

.page-news .news-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

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

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

.page-news .news-card-title {
  font-size: 1.5em;
  margin-bottom: 10px;
  font-weight: bold;
  color: #333;
}

.page-news .news-card-title a {
  text-decoration: none;
  color: #333;
  transition: color 0.3s ease;
}

.page-news .news-card-title a:hover {
  color: #FF4500; /* Main brand color */
}

.page-news .news-card-meta {
  font-size: 0.9em;
  color: #777;
  margin-bottom: 15px;
}

.page-news .news-card-excerpt {
  font-size: 1em;
  color: #555;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-news .read-more {
  display: inline-block;
  padding: 10px 20px;
  background-color: #007BFF; /* Auxiliary color */
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  align-self: flex-start;
}

.page-news .read-more:hover {
  background-color: #0056b3; /* Darker blue */
  transform: translateY(-2px);
}

.page-news .pagination {
  text-align: center;
  margin-top: 60px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.page-news .page-link {
  display: inline-block;
  padding: 12px 18px;
  border: 1px solid #ddd;
  border-radius: 8px;
  color: #555;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  min-width: 45px;
  box-sizing: border-box;
}

.page-news .page-link:hover,
.page-news .page-link.active {
  background-color: #FF4500; /* Main brand color */
  color: #ffffff;
  border-color: #FF4500;
  box-shadow: 0 4px 10px rgba(255, 69, 0, 0.3);
}

.page-news .cta-bottom-section {
  background: linear-gradient(45deg, #007BFF, #FF4500);
  padding: 80px 20px;
  text-align: center;
  color: #ffffff;
  border-radius: 12px;
  margin: 60px auto;
  max-width: 1000px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.page-news .cta-bottom-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-news .cta-bottom-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-news .hero-title {
    font-size: 2.8em;
  }
  .page-news .hero-description {
    font-size: 1.1em;
  }
  .page-news .section-title {
    font-size: 2.2em;
  }
  .page-news .news-card-title {
    font-size: 1.4em;
  }
  .page-news .cta-bottom-title {
    font-size: 2.4em;
  }
}

@media (max-width: 768px) {
  .page-news .hero-banner {
    padding: 40px 15px;
  }
  .page-news .hero-title {
    font-size: 2.2em;
  }
  .page-news .hero-description {
    font-size: 1em;
  }
  .page-news .cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-news .cta-button.large {
    padding: 15px 40px;
    font-size: 1.1em;
  }
  .page-news .news-feed {
    padding: 40px 0;
  }
  .page-news .section-title {
    font-size: 2em;
    margin-bottom: 30px;
  }
  .page-news .news-list {
    grid-template-columns: 1fr;
  }
  .page-news .news-card-image {
    height: 180px;
  }
  .page-news .news-card-title {
    font-size: 1.3em;
  }
  .page-news .cta-bottom-section {
    padding: 60px 15px;
    margin: 40px auto;
  }
  .page-news .cta-bottom-title {
    font-size: 2em;
  }
  .page-news .cta-bottom-description {
    font-size: 1em;
  }
  .page-news .pagination {
    margin-top: 40px;
  }
  .page-news .page-link {
    padding: 10px 15px;
  }
}

@media (max-width: 480px) {
  .page-news .hero-title {
    font-size: 1.8em;
  }
  .page-news .hero-description {
    font-size: 0.9em;
  }
  .page-news .section-title {
    font-size: 1.8em;
  }
  .page-news .news-card-title {
    font-size: 1.2em;
  }
  .page-news .cta-bottom-title {
    font-size: 1.8em;
  }
  .page-news .category-button {
    padding: 8px 18px;
    font-size: 0.9em;
  }
}