.footer {
    background-color: #E65923;
    color: #ffffff;
    padding: 40px 20px; /* Добавили боковой отступ */
    margin-top: 50px;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
  }
  
  .footer-logo {
    max-width: 200px;
  }
  
  .footer-logo img {
    border-radius: 50%;
    width: 100px;
    height: 100px;
    margin-bottom: 10px;
  }
  
  .footer-company-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 20px;
    margin-top: 15px;
  }
  
  .footer-copyright {
    font-size: 0.875rem;
    opacity: 0.8;
    margin-top: 10px;
  }
  
  .footer-address,
  .footer-nav,
  .footer-contacts {
    max-width: 300px;
    flex: 1 1 100%;
    text-align: center;
  }
  
  .footer-address h3,
  .footer-nav h3,
  .footer-contacts h3 {
    margin-bottom: 15px;
    font-size: 1.125rem;
    font-weight: 600;
  }
  
  .footer-address p,
  .footer-contacts p {
    line-height: 1.5;
    margin: 0 0 10px 0;
  }
  
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-nav li {
    margin-bottom: 10px;
  }
  
  .footer-nav a,
  .footer-contacts a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.2s;
  }
  
  .footer-nav a:hover,
  .footer-contacts a:hover {
    opacity: 0.8;
  }
  
  .footer-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
  }
  
  .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: background-color 0.2s;
  }
  
  .social-icon:hover {
    background-color: rgba(255, 255, 255, 0.2);
  }
  
  .social-icon svg {
    width: 20px;
    height: 20px;
    fill: #ffffff;
  }
  
  /* ==== Адаптивность ==== */
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      gap: 30px;
    }
  
    .footer-address,
    .footer-nav,
    .footer-contacts {
      text-align: center;
    }
  }
  