.title {
    position: relative;
    padding-left: 13px;
    margin: 24px 0;
  }
  
  .title:before {
    content: "";
    background-color: #215bde;
    width: 6px;
    height: 22px;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -10px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
  }```
  .body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
      color: #333;
  }
  .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
  }
  h1, h2 {
      color: #000000;
  }
  .filters {
      margin-bottom: 20px;
  }
  .filters button {
      background: none;
      border: none;
      cursor: pointer;
      margin-right: 10px;
      padding: 5px 10px;
  }
  .filters button.active {
      border-bottom: 2px solid #084299;
  }
  .gallery {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 20px;
  }
  .gallery-item {
      position: relative;
      overflow: hidden;
      border-radius: 8px;
      box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }
  .gallery-item img {
      width: 100%;
      height: auto;
      transition: transform 0.3s ease;
  }
  .gallery-item:hover img {
      transform: scale(1.1);
  }
  .gallery-item-info {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: rgba(0,0,0,0.7);
      color: white;
      padding: 10px;
      transform: translateY(100%);
      transition: transform 0.3s ease;
  }
  .gallery-item:hover .gallery-item-info {
      transform: translateY(0);
  }
  .pagination {
      margin-top: 20px;
      text-align: center;
  }
  .pagination a {
      color: #084299;
      padding: 8px 16px;
      text-decoration: none;
  }
  .pagination a.active {
      background-color: #084299;
      color: white;
      border-radius: 5px;
  }
