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

.page-news .highlight {
  color: #007bff;
  font-weight: bold;
}

.page-news__hero {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #fff;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.page-news__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.page-news__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.page-news__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

.page-news__cta-button {
  display: inline-block;
  background-color: #ffc107;
  color: #212529;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-news__cta-button:hover {
  background-color: #e0a800;
  transform: translateY(-3px);
}

.page-news__hero-image {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin-top: 40px;
}

.page-news__hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-news__section-title {
  font-size: 2.5em;
  color: #007bff;
  text-align: center;
  margin-bottom: 20px;
  padding-top: 60px;
}

.page-news__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
  color: #555;
}

.page-news__categories {
  padding: 60px 20px;
  background-color: #f8f9fa;
}

.page-news__category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-news__category-card {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-news__category-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
}

.page-news__card-title {
  font-size: 1.5em;
  color: #007bff;
  margin-bottom: 10px;
  padding: 0 20px;
}

.page-news__card-description {
  font-size: 0.95em;
  color: #666;
  padding: 0 20px 15px;
}

.page-news__read-more {
  display: inline-block;
  background-color: #007bff;
  color: #fff;
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9em;
  transition: background-color 0.3s ease;
}

.page-news__read-more:hover {
  background-color: #0056b3;
}

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

.page-news__article {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  margin-bottom: 40px;
  transition: box-shadow 0.3s ease;
}

.page-news__article:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-news__article-title {
  font-size: 2em;
  color: #007bff;
  margin-bottom: 20px;
}

.page-news__article-image {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-news__article p {
  margin-bottom: 15px;
  color: #444;
  font-size: 1.05em;
}

.page-news__article p strong {
  color: #007bff;
}

.page-news__cta-section {
  background: linear-gradient(90deg, #007bff, #0056b3);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.page-news__cta-content {
  max-width: 800px;
  position: relative;
  z-index: 2;
}

.page-news__cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

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

.page-news__cta-button--primary {
  background-color: #ffc107;
  color: #212529;
}

.page-news__cta-button--primary:hover {
  background-color: #e0a800;
}

.page-news__cta-button--secondary {
  background-color: transparent;
  border: 2px solid #ffc107;
  color: #ffc107;
}

.page-news__cta-button--secondary:hover {
  background-color: #ffc107;
  color: #212529;
}

.page-news__cta-image img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  margin-top: 40px;
}

@media (min-width: 768px) {
  .page-news__hero {
    flex-direction: row;
    text-align: left;
    justify-content: center;
    padding: 100px 40px;
  }

  .page-news__hero-content {
    flex: 1;
    padding-right: 40px;
  }

  .page-news__hero-image {
    flex: 1;
    text-align: right;
    margin-top: 0;
  }

  .page-news__hero-title {
    font-size: 4.5em;
  }

  .page-news__section-title {
    font-size: 3em;
  }

  .page-news__cta-section {
    flex-direction: row;
    text-align: left;
    justify-content: center;
    padding: 100px 40px;
  }

  .page-news__cta-content {
    flex: 1;
    padding-right: 40px;
  }

  .page-news__cta-image {
    flex: 1;
    text-align: right;
    margin-top: 0;
  }

  .page-news__cta-title {
    font-size: 3.5em;
  }
}

@media (max-width: 767px) {
  .page-news__hero-title {
    font-size: 2.5em;
  }

  .page-news__section-title {
    font-size: 2em;
  }

  .page-news__hero-description,
  .page-news__section-description,
  .page-news__article p,
  .page-news__cta-title,
  .page-news__cta-description {
    font-size: 1em;
  }

  .page-news__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-news__article-title {
    font-size: 1.5em;
  }

  .page-news__cta-buttons {
    flex-direction: column;
  }
}