  .site-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 50px 0 0;
    font-family: 'Onest', sans-serif;
  }

  .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
  }

  .footer-section {
    margin-bottom: 20px;
  }

  .footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
  }

  .footer-logo img {
    margin-right: 15px;
  }

  .company-name {
    font-weight: 700;
    font-size: 1.2rem;
  }

  .footer-description {
    line-height: 1.6;
    opacity: 0.8;
  }

  .footer-title {
    color: #f45d01;
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
  }

  .footer-title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: #f45d01;
  }

  .footer-contacts li, 
  .footer-links li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
  }

  .footer-contacts i, 
  .footer-links i {
    margin-right: 10px;
    color: #f45d01;
    width: 20px;
    text-align: center;
  }

  .footer-contacts a, 
  .footer-links a {
    color: #ecf0f1;
    transition: color 0.3s;
    text-decoration: none;
  }

  .footer-contacts a:hover, 
  .footer-links a:hover {
    color: #f45d01;
  }

  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }

  .copyright {
    font-size: 0.9rem;
    opacity: 0.7;
  }

  .footer-social {
    display: flex;
    gap: 15px;
  }

  .footer-social a {
    color: #ecf0f1;
    font-size: 1.2rem;
    transition: color 0.3s;
  }

  .footer-social a:hover {
    color: #f45d01;
  }

  @media (max-width: 768px) {
    .footer-content {
      grid-template-columns: 1fr;
    }
    
    .footer-bottom {
      flex-direction: column;
      text-align: center;
      gap: 15px;
    }
  }
