 body {
      font-family: Arial, sans-serif;
      background: #f7f7f7;
      color: #333;
    }
    .news-container {
      max-width: 1000px;
      margin: 60px auto;
      padding: 20px;
      background: #fff;
    }
.breadcrumb {
  font-size: 16px;
  margin: 20px 0;
}
.breadcrumb a {
  text-decoration: none;
  color: #007bff;
}
.breadcrumb a:hover {
  text-decoration: underline;
}
    .news-title {
      font-weight: bold;
      color: #007bff;
      margin-bottom: 10px;
      font-size: 26px;
    }
    .news-subtitle {
      font-size: 16px;
      margin-bottom: 30px;
      color: #666;
    }
    .news-item {
      display: flex;
      gap: 20px;
      margin-bottom: 30px;
      border-bottom: 1px solid #eee;
      padding-bottom: 20px;
    }
    .news-item img {
      width: 200px;
      height: auto;
      object-fit: cover;
    }
    .news-content h5 {
      color: #007bff;
      font-weight: bold;
    }
.pagination-container {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.pagination {
  display: inline-block;
  margin-top: 30px;
}

.pagination button {
  margin: 0 5px;
  padding: 6px 12px;
  border: 1px solid #ccc;
  background: #fff;
  cursor: pointer;
  border-radius: 4px;
}

.pagination button.active {
  background-color: #ff5656;
  color: white;
  font-weight: bold;
  border: none;
}

/* Responsive Design For Phone*/
@media (max-width: 768px) {
}