.main-footer {
    background-color: #000000;
    color: #818181;
    padding: 30px 20px;
    font-family: 'Kodchasan', sans-serif;
    font-size: 12px;
    

  }
  
  .footer-content  {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
  }

  
  .footer-left a {
    color: #818181;
    text-decoration: none;
    font-size: 16px;
  }

  
  .footer-center {
    flex: 1;
    text-align: center;
  }
  
  .footer-right .social-links {
    display: flex;
    gap: 15px;
    padding: 0;
    margin: 0;
    list-style: none;
  }
  
  .footer-right .social-links li {
    display: inline;
  }
  .social-icon {
    width: 20px;
    height: 20px;
    filter: grayscale(100%) brightness(50%);
    transition: filter 0.3s ease;  /* Плавный переход */
  }
  
  .social-links a:hover .social-icon {
    filter: grayscale(0%) brightness(100%) hue-rotate(180deg);  /* Цвет меняется при наведении */
  }
  

  /* Мобильная адаптация */
  @media (max-width: 768px) {
    .footer-content {
      flex-direction: column;
      text-align: center;
      gap: 5px; /* уменьшаем расстояние между элементами */
    }
  
    .footer-left,
    .footer-center,
    .footer-right {
      margin: 5px 0; /* было 10px – делаем плотнее */
    }
  
    .footer-right .social-links {
      justify-content: center;
      gap: 12px; /* чуть плотнее иконки */
    }
  }
  
  