  /* Custom Styles */
  body {
  background: #E6EFF5 !important; 
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #2C3539;
  }

  /* Search Bar */
  .search-bar {
  background: linear-gradient(135deg, rgba(43, 76, 126, 0.9), rgba(43, 76, 126, 0.7)), url('https://www.mnthen.com/images/bg/bg_blog.jpg') center/cover no-repeat;
    padding: 20px 0;
  }

  .search-bar form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 30px;
    padding: 5px;
    border: 1px solid #ddd;
  }

  .search-bar input[type="search"] {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1rem;
    padding: 10px 15px;
    color: #002b49;
    background: transparent;
  }

  .search-bar input[type="search"]::placeholder {
    color: #86a1b5;
  }

  .search-bar button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    color: #002b49;
  }

  /* Search Summary */
  .search-summary {
    text-align: center;
    font-size: 1.2rem;
    color: #002b49;
    margin: 20px 0;
  }

  /* Article Cards */
  .article {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }

  .article-title {
    font-size: 1.5rem;
    color: #002b49;
    margin-bottom: 10px;
  }

  .article-title a {
    color: inherit;
    text-decoration: none;
  }

  .article-img {
    border-radius: 10px;
    object-fit: cover;
  }

  /* Pagination */
  .pagination {
    display: flex;
    justify-content: center;
    margin: 30px 0;
  }

  .pagination a {
    color: #002b49;
    padding: 10px 15px;
    margin: 0 5px;
    text-decoration: none;
    border-radius: 5px;
    border: 1px solid #ddd;
  }

  .pagination a.active {
    background: #002b49;
    color: #fff;
    border-color: #002b49;
  }

  /* Mobile Styles */
  @media (max-width: 768px) {
    .search-bar {
      padding: 10px 0;
    }

    .search-bar form {
      width: 90%;
    }
  }
