.site-footer {
    background-color: #0057b7;
    color: white;
    padding: 30px 20px;
    margin-top: 40px;
  }
  
  .footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .footer-left,
  .footer-center,
  .footer-right {
    flex: 1;
    min-width: 250px;
  }
  
  .footer-left p {
    font-size: 14px;
    line-height: 1.6;
  }
  
  .footer-center a img {
    height: 30px;
    margin-right: 10px;
    transition: transform 0.3s;
  }
  
  .footer-center a img:hover {
    transform: scale(1.1);
  }
  
  .footer-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
  }
  
  .footer-item img {
    height: 24px;
  }
  
  .footer-right span {
    font-size: 14px;
  }